From be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 04:57:58 +0200 Subject: Adding upstream version 1.44.3. Signed-off-by: Daniel Baumann --- web/server/h2o/libh2o/t/50fastcgi-php.t | 54 +++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 web/server/h2o/libh2o/t/50fastcgi-php.t (limited to 'web/server/h2o/libh2o/t/50fastcgi-php.t') diff --git a/web/server/h2o/libh2o/t/50fastcgi-php.t b/web/server/h2o/libh2o/t/50fastcgi-php.t new file mode 100644 index 00000000..58678a93 --- /dev/null +++ b/web/server/h2o/libh2o/t/50fastcgi-php.t @@ -0,0 +1,54 @@ +# this test checks the behavior of `file.custom-handler` and `fastcgi.spawn` +use strict; +use warnings; +use Digest::MD5 qw(md5_hex); +use File::Temp qw(tempdir); +use Net::EmptyPort qw(check_port empty_port); +use Test::More; +use t::Util; + +plan skip_all => 'curl not found' + unless prog_exists('curl'); +plan skip_all => 'php-cgi not found' + unless prog_exists('php-cgi'); + +# spawn h2o +my $server = spawn_h2o(<< "EOT"); +file.custom-handler: + extension: .php + fastcgi.spawn: "exec php-cgi" +hosts: + default: + paths: + "/": + file.dir: @{[ DOC_ROOT ]} +EOT + +my $resp = `curl --silent http://127.0.0.1:$server->{port}/index.txt`; +is $resp, "hello\n", 'ordinary file'; + +$resp = `curl --silent http://127.0.0.1:$server->{port}/hello.php`; +is $resp, 'hello world', 'php'; + +subtest 'server-push' => sub { + plan skip_all => 'nghttp not found' + unless prog_exists('nghttp'); + my $doit = sub { + my ($proto, $port) = @_; + my $resp = `nghttp -n --stat '$proto://127.0.0.1:$port/hello.php?link=\%3b\%20rel=preload'`; + like $resp, qr{\nid\s*responseEnd\s.*\s/index\.js\n.*\s/hello\.php\?}is, $proto; + }; + $doit->('http', $server->{port}); + $doit->('https', $server->{tls_port}); +}; + +subtest 'huge-headers' => sub { + run_with_curl($server, sub { + my ($proto, $port, $curl) = @_; + my $resp = `$curl --silent --dump-header /dev/stderr --max-redirs 0 $proto://127.0.0.1:$port/issues/951.php 2>&1 > /dev/null`; + like $resp, qr{^HTTP/[^ ]* 302 ?}is; + like $resp, qr{^set-cookie: ?}im; + }); +}; + +done_testing(); -- cgit v1.2.3