2005-09-01 11:44:57 +00:00
|
|
|
#!/usr/bin/env perl
|
2005-06-26 10:27:41 +00:00
|
|
|
BEGIN {
|
2008-01-15 22:03:59 +00:00
|
|
|
# add current source dir to the include-path
|
|
|
|
# we need this for make distcheck
|
|
|
|
(my $srcdir = $0) =~ s,/[^/]+$,/,;
|
|
|
|
unshift @INC, $srcdir;
|
2005-06-26 10:27:41 +00:00
|
|
|
}
|
2005-03-02 11:27:02 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use IO::Socket;
|
2020-12-28 02:29:19 +00:00
|
|
|
use Test::More tests => 23;
|
2005-06-15 09:37:18 +00:00
|
|
|
use LightyTest;
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
my $tf = LightyTest->new();
|
|
|
|
my $t;
|
2006-10-05 00:09:51 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->start_proc == 0, "Starting lighttpd") or die();
|
2005-03-02 11:27:02 +00:00
|
|
|
|
|
|
|
# mod-cgi
|
|
|
|
#
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /cgi.pl HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'perl via cgi');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2020-12-23 05:38:43 +00:00
|
|
|
if ($^O ne "cygwin") {
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /cgi.pl%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');
|
|
|
|
} else {
|
|
|
|
ok(1, 'No source retrieval; skipped on cygwin; see response.c');
|
|
|
|
}
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl/foo?env=SCRIPT_NAME HTTP/1.0
|
2005-03-02 11:27:02 +00:00
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/cgi.pl' } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'perl via cgi + pathinfo');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2016-07-14 18:29:02 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /cgi.pl?internal-redir HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'perl via cgi and internal redirect from CGI');
|
|
|
|
|
2020-12-23 05:38:43 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /cgi.pl?xsendfile HTTP/1.0
|
|
|
|
Host: cgi.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'Content-Length' => 4348 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'X-Sendfile');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /cgi.pl?external-redir 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 /cgi.pl/?external-redir 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)');
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?nph=30 HTTP/1.0
|
2005-03-02 11:27:02 +00:00
|
|
|
EOF
|
|
|
|
);
|
2017-03-18 04:10:48 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 502 } ];
|
2007-08-18 11:35:27 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'NPH + perl, invalid status-code (#14)');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?nph=304 HTTP/1.0
|
2007-08-18 11:35:27 +00:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 304 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'NPH + perl, setting status-code (#1125)');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?nph=200 HTTP/1.0
|
2007-08-18 11:35:27 +00:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'NPH + perl, setting status-code');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-08-08 16:32:17 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?env=GATEWAY_INTERFACE HTTP/1.0
|
2005-08-08 16:32:17 +00:00
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'CGI/1.1' } ];
|
2005-08-08 16:32:17 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: GATEWAY_INTERFACE');
|
|
|
|
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?query_string HTTP/1.0
|
2005-08-31 12:55:44 +00:00
|
|
|
EOF
|
|
|
|
);
|
2020-12-28 02:29:19 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'query_string', 'Content-Type' => 'text/plain' } ];
|
2005-08-31 12:55:44 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: QUERY_STRING');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?env=SCRIPT_NAME HTTP/1.0
|
2005-08-31 12:55:44 +00:00
|
|
|
EOF
|
|
|
|
);
|
2020-12-28 02:29:19 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/cgi.pl' } ];
|
2020-12-23 05:38:43 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: SCRIPT_NAME');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl/path/info?env=SCRIPT_NAME HTTP/1.0
|
2020-12-23 05:38:43 +00:00
|
|
|
EOF
|
|
|
|
);
|
2020-12-28 02:29:19 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/cgi.pl' } ];
|
2020-12-23 05:38:43 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: SCRIPT_NAME w/ PATH_INFO');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl/path/info?env=PATH_INFO HTTP/1.0
|
2020-12-23 05:38:43 +00:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/path/info' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: PATH_INFO');
|
2005-08-31 12:55:44 +00:00
|
|
|
|
2005-08-08 16:32:17 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?env=HTTP_XX_YY123 HTTP/1.0
|
2005-08-08 16:32:17 +00:00
|
|
|
xx-yy123: foo
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'foo' } ];
|
2005-08-08 16:32:17 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: quoting headers with numbers');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?env=HTTP_HOST HTTP/1.0
|
2005-08-08 16:32:17 +00:00
|
|
|
Host: www.example.org
|
|
|
|
EOF
|
|
|
|
);
|
2020-12-28 02:29:19 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => 'www.example.org' } ];
|
2005-08-21 23:12:56 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: HTTP_HOST');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?env=HTTP_HOST HTTP/1.1
|
2005-08-21 23:12:56 +00:00
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, '+Content-Length' => '' } ];
|
2005-08-21 23:12:56 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'cgi-env: HTTP_HOST');
|
2007-08-17 21:04:20 +00:00
|
|
|
|
2007-08-12 17:52:03 +00:00
|
|
|
# broken header crash
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
2020-12-28 02:29:19 +00:00
|
|
|
GET /cgi.pl?crlfcrash HTTP/1.0
|
2007-08-12 17:52:03 +00:00
|
|
|
EOF
|
|
|
|
);
|
2007-08-17 21:04:20 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 302, 'Location' => 'http://www.example.org/' } ];
|
2007-08-12 17:52:03 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'broken header via perl cgi');
|
2005-08-08 16:32:17 +00:00
|
|
|
|
2020-12-23 05:38:43 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /indexfile/ HTTP/1.0
|
|
|
|
Host: cgi.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '/indexfile/index.pl' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'index-file handling, Bug #3, Bug #6');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /indexfile/abc HTTP/1.0
|
|
|
|
Host: cgi.example.org
|
|
|
|
Content-Length: 0
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404, 'HTTP-Content' => '/indexfile/index.pl' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'server.error-handler-404, Bug #12');
|
|
|
|
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->stop_proc == 0, "Stopping lighttpd");
|
2005-03-02 11:27:02 +00:00
|
|
|
|