123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- #!/usr/bin/env perl
- BEGIN {
- # add current source dir to the include-path
- # we need this for make distcheck
- (my $srcdir = $0) =~ s,/[^/]+$,/,;
- unshift @INC, $srcdir;
- }
- use strict;
- use Test::More tests => 58;
- use LightyTest;
- my $tf = LightyTest->new();
- my $t;
- my $php_child = -1;
- my $phpbin = (defined $ENV{'PHP'} ? $ENV{'PHP'} : '/usr/bin/php-cgi');
- $ENV{'PHP'} = $phpbin;
- SKIP: {
- skip "PHP already running on port 1026", 1 if $tf->listening_on(1026);
- skip "no php binary found", 1 unless -x $phpbin;
- ok(-1 != ($php_child = $tf->spawnfcgi($phpbin, 1026)), "Spawning php");
- }
- SKIP: {
- skip "no PHP running on port 1026", 35 unless $tf->listening_on(1026);
- ok($tf->start_proc == 0, "Starting lighttpd") or goto cleanup;
- $t->{REQUEST} = ( <<EOF
- GET /phpinfo.php HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'valid request');
- $t->{REQUEST} = ( <<EOF
- GET /phpinfofoobar.php HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
- ok($tf->handle_http($t) == 0, 'file not found');
- $t->{REQUEST} = ( <<EOF
- GET /go/ HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'index-file handling');
- $t->{REQUEST} = ( <<EOF
- GET /redirect.php HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 302, 'Location' => 'http://www.example.org:2048/' } ];
- ok($tf->handle_http($t) == 0, 'Status + Location via FastCGI');
- $t->{REQUEST} = ( <<EOF
- GET /redirect.php/ HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 302, 'Location' => 'http://www.example.org:2048/' } ];
- ok($tf->handle_http($t) == 0, 'Trailing slash as path-info (#1989: workaround broken operating systems)');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=PHP_SELF HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, '$_SERVER["PHP_SELF"]');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php/foo?env=SCRIPT_NAME HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/get-server-env.php' } ];
- ok($tf->handle_http($t) == 0, '$_SERVER["SCRIPT_NAME"]');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php/foo?env=PATH_INFO HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/foo' } ];
- ok($tf->handle_http($t) == 0, '$_SERVER["PATH_INFO"]');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=SERVER_NAME HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'www.example.org' } ];
- ok($tf->handle_http($t) == 0, 'SERVER_NAME');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=SERVER_NAME HTTP/1.0
- Host: foo.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'www.example.org' } ];
- ok($tf->handle_http($t) == 0, 'SERVER_NAME');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=SERVER_NAME HTTP/1.0
- Host: vvv.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'www.example.org' } ];
- ok($tf->handle_http($t) == 0, 'SERVER_NAME');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=SERVER_NAME HTTP/1.0
- Host: zzz.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'www.example.org' } ];
- ok($tf->handle_http($t) == 0, 'SERVER_NAME');
- $t->{REQUEST} = ( <<EOF
- GET /cgi.php/abc HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'PATHINFO');
- $t->{REQUEST} = ( <<EOF
- GET /cgi.php%20%20%20 HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
- ok($tf->handle_http($t) == 0, 'No source retrieval');
- $t->{REQUEST} = ( <<EOF
- GET /www/abc/def HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
- ok($tf->handle_http($t) == 0, 'PATHINFO on a directory');
- $t->{REQUEST} = ( <<EOF
- GET /indexfile/ HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/indexfile/index.php' } ];
- ok($tf->handle_http($t) == 0, 'PHP_SELF + Indexfile, Bug #3');
- $t->{REQUEST} = ( <<EOF
- GET /prefix.fcgi?var=SCRIPT_NAME HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/prefix.fcgi' } ];
- ok($tf->handle_http($t) == 0, 'PATH_INFO, check-local off');
- $t->{REQUEST} = ( <<EOF
- GET /prefix.fcgi/foo/bar?var=SCRIPT_NAME HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/prefix.fcgi' } ];
- ok($tf->handle_http($t) == 0, 'PATH_INFO, check-local off');
- $t->{REQUEST} = ( <<EOF
- GET /prefix.fcgi/foo/bar?var=PATH_INFO HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/foo/bar' } ];
- ok($tf->handle_http($t) == 0, 'PATH_INFO, check-local off');
- $t->{REQUEST} = ( <<EOF
- GET /sendfile.php?range=0- HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'Content-Length' => 4348 } ];
- ok($tf->handle_http($t) == 0, 'X-Sendfile2');
- $t->{REQUEST} = ( <<EOF
- GET /sendfile.php?range=0-4&range2=5- HTTP/1.0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'Content-Length' => 4348 } ];
- ok($tf->handle_http($t) == 0, 'X-Sendfile2');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=REMOTE_USER HTTP/1.0
- Host: auth.example.org
- Authorization: Basic ZGVzOmRlcw==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'des' } ];
- ok($tf->handle_http($t) == 0, '$_SERVER["REMOTE_USER"]');
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=AUTH_TYPE HTTP/1.0
- Host: auth.example.org
- Authorization: Basic ZGVzOmRlcw==
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'Basic' } ];
- ok($tf->handle_http($t) == 0, '$_SERVER["AUTH_TYPE"]');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
- $tf->{CONFIGFILE} = 'fastcgi-10.conf';
- ok($tf->start_proc == 0, "Starting lighttpd with $tf->{CONFIGFILE}") or goto cleanup;
- $t->{REQUEST} = ( <<EOF
- GET /get-server-env.php?env=SERVER_NAME HTTP/1.0
- Host: zzz.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'zzz.example.org' } ];
- ok($tf->handle_http($t) == 0, 'FastCGI + Host');
- $t->{REQUEST} = ( <<EOF
- GET http://zzz.example.org/get-server-env.php?env=SERVER_NAME HTTP/1.0
- Host: aaa.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'zzz.example.org' } ];
- ok($tf->handle_http($t) == 0, 'SERVER_NAME (absolute url in request line)');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
-
- $tf->{CONFIGFILE} = 'bug-06.conf';
- ok($tf->start_proc == 0, "Starting lighttpd with $tf->{CONFIGFILE}") or goto cleanup;
- $t->{REQUEST} = ( <<EOF
- GET /indexfile/ HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/indexfile/index.php' } ];
- ok($tf->handle_http($t) == 0, 'Bug #6');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
- $tf->{CONFIGFILE} = 'bug-12.conf';
- ok($tf->start_proc == 0, "Starting lighttpd with bug-12.conf") or goto cleanup;
- $t->{REQUEST} = ( <<EOF
- POST /indexfile/abc HTTP/1.0
- Host: www.example.org
- Content-Length: 0
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404, 'HTTP-Content' => '/indexfile/return-404.php' } ];
- ok($tf->handle_http($t) == 0, 'Bug #12');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
- }
- SKIP: {
- skip "PHP not started, cannot stop it", 1 unless $php_child != -1;
- ok(0 == $tf->endspawnfcgi($php_child), "Stopping php");
- $php_child = -1;
- }
- SKIP: {
- skip "no fcgi-auth found", 5 unless -x $tf->{BASEDIR}."/tests/fcgi-auth" || -x $tf->{BASEDIR}."/tests/fcgi-auth.exe";
- $tf->{CONFIGFILE} = 'fastcgi-auth.conf';
- ok($tf->start_proc == 0, "Starting lighttpd with $tf->{CONFIGFILE}") or die();
- $t->{REQUEST} = ( <<EOF
- GET /index.html?ok HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'FastCGI - Auth');
- $t->{REQUEST} = ( <<EOF
- GET /index.html?fail HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
- ok($tf->handle_http($t) == 0, 'FastCGI - Auth');
- $t->{REQUEST} = ( <<EOF
- GET /expire/access.txt?ok HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'FastCGI - Auth in subdirectory');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
- }
- SKIP: {
- skip "no php found", 5 unless -x $phpbin;
- $tf->{CONFIGFILE} = 'fastcgi-13.conf';
- ok($tf->start_proc == 0, "Starting lighttpd with $tf->{CONFIGFILE}") or die();
- $t->{REQUEST} = ( <<EOF
- GET /indexfile/index.php HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
- ok($tf->handle_http($t) == 0, 'FastCGI + local spawning');
- $t->{REQUEST} = ( <<EOF
- HEAD /indexfile/index.php HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, '-Content-Length' => '0' } ];
- # Of course a valid content-length != 0 would be ok, but we assume for now that such one is not generated.
- ok($tf->handle_http($t) == 0, 'Check for buggy content length with HEAD');
- $t->{REQUEST} = ( <<EOF
- GET /get-env.php?env=MAIL HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 , 'HTTP-Content' => '' } ];
- ok($tf->handle_http($t) == 0, 'FastCGI + bin-copy-environment');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
- }
- SKIP: {
- skip "no fcgi-responder found", 11 unless -x $tf->{BASEDIR}."/tests/fcgi-responder" || -x $tf->{BASEDIR}."/tests/fcgi-responder.exe";
-
- $tf->{CONFIGFILE} = 'fastcgi-responder.conf';
- ok($tf->start_proc == 0, "Starting lighttpd with $tf->{CONFIGFILE}") or die();
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?lf HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'line-ending \n\n');
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?crlf HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'line-ending \r\n\r\n');
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?slow-lf HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'line-ending \n + \n');
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?slow-crlf HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'line-ending \r\n + \r\n');
- $t->{REQUEST} = ( <<EOF
- GET /abc/def/ghi?path_info HTTP/1.0
- Host: wsgi.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/abc/def/ghi' } ];
- ok($tf->handle_http($t) == 0, 'PATH_INFO (wsgi)');
- $t->{REQUEST} = ( <<EOF
- GET /abc/def/ghi?script_name HTTP/1.0
- Host: wsgi.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '' } ];
- ok($tf->handle_http($t) == 0, 'SCRIPT_NAME (wsgi)');
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?die-at-end HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'killing fastcgi and wait for restart');
- select(undef, undef, undef, .2);
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?die-at-end HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'killing fastcgi and wait for restart');
- select(undef, undef, undef, .2);
- $t->{REQUEST} = ( <<EOF
- GET /index.fcgi?crlf HTTP/1.0
- Host: www.example.org
- EOF
- );
- $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'test123' } ];
- ok($tf->handle_http($t) == 0, 'regular response of after restart');
- ok($tf->stop_proc == 0, "Stopping lighttpd");
- }
- exit 0;
- cleanup: ;
- $tf->endspawnfcgi($php_child) if $php_child != -1;
- die();
|