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;
|
2019-09-28 23:21:56 +00:00
|
|
|
use Test::More tests => 51;
|
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
|
|
|
|
|
|
|
## Basic Request-Handling
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /foobar HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'file not found');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /foobar?foobar HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'file not found + querystring');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain' } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, content == 12345, mimetype text/plain');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.html HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/html' } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, content == 12345, mimetype text/html');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /dummyfile.bla HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'application/octet-stream' } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, content == 12345, mimetype application/octet-stream');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
POST / HTTP/1.0
|
|
|
|
Content-type: application/x-www-form-urlencoded
|
|
|
|
Content-length: 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, 'POST request, empty request-body');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
HEAD / HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, '-HTTP-Content' => ''} ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'HEAD request, no content');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
HEAD /12345.html HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, '-HTTP-Content' => '', 'Content-Type' => 'text/html', 'Content-Length' => '6'} ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'HEAD request, mimetype text/html, content-length');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2011-04-04 22:39:48 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
HEAD http://123.example.org/12345.html HTTP/1.1
|
|
|
|
Connection: close
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, '-HTTP-Content' => '', 'Content-Type' => 'text/html', 'Content-Length' => '6'} ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Hostname in first line, HTTP/1.1');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
HEAD https://123.example.org/12345.html HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, '-HTTP-Content' => '', 'Content-Type' => 'text/html', 'Content-Length' => '6'} ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Hostname in first line as https url');
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
HEAD /foobar?foobar HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404, '-HTTP-Content' => '' } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'HEAD request, file-not-found, query-string');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2016-12-24 12:35:29 +00:00
|
|
|
# (expect 200 OK instead of 100 Continue since request body sent with request)
|
|
|
|
# (if we waited to send request body, would expect 100 Continue, first)
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2016-12-24 12:35:29 +00:00
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
2005-03-02 11:27:02 +00:00
|
|
|
Connection: close
|
2016-12-24 12:35:29 +00:00
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Content-Length: 4
|
2005-03-02 11:27:02 +00:00
|
|
|
Expect: 100-continue
|
2016-12-24 12:35:29 +00:00
|
|
|
|
|
|
|
123
|
2005-03-02 11:27:02 +00:00
|
|
|
EOF
|
|
|
|
);
|
2016-12-24 12:35:29 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200 } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'Continue, Expect');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2016-12-16 16:06:29 +00:00
|
|
|
# note Transfer-Encoding: chunked tests will fail with 411 Length Required if
|
|
|
|
# server.stream-request-body != 0 in lighttpd.conf
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
|
|
|
a
|
|
|
|
0123456789
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked, lc hex');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
|
|
|
A
|
|
|
|
0123456789
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked, uc hex');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
2018-01-12 06:43:38 +00:00
|
|
|
10
|
|
|
|
0123456789abcdef
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked, two hex');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
2016-12-16 16:06:29 +00:00
|
|
|
a
|
|
|
|
0123456789
|
|
|
|
0
|
|
|
|
Test-Trailer: testing
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked, with trailer');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
|
|
|
a; comment
|
|
|
|
0123456789
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked, chunked header comment');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
|
|
|
az
|
|
|
|
0123456789
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 400 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked; bad chunked header');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
|
|
|
a
|
|
|
|
0123456789xxxxxxxx
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 400 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked; mismatch chunked header size and chunked data size');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
POST /get-post-len.pl HTTP/1.1
|
|
|
|
Host: www.example.org
|
|
|
|
Connection: close
|
|
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
|
|
|
a ; xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
0123456789
|
|
|
|
0
|
|
|
|
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 400 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'POST via Transfer-Encoding: chunked; chunked header too long');
|
|
|
|
|
2005-03-02 11:27:02 +00:00
|
|
|
## ranges
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=0-3
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 206, 'HTTP-Content' => '1234' } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range 0-3');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=-3
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 206, 'HTTP-Content' => '45'."\n" } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range -3');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=3-
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 206, 'HTTP-Content' => '45'."\n" } ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range 3-');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=0-1,3-4
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 206, 'HTTP-Content' => <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
\r
|
|
|
|
--fkj49sn38dcn3\r
|
|
|
|
Content-Range: bytes 0-1/6\r
|
|
|
|
Content-Type: text/plain\r
|
|
|
|
\r
|
|
|
|
12\r
|
|
|
|
--fkj49sn38dcn3\r
|
|
|
|
Content-Range: bytes 3-4/6\r
|
|
|
|
Content-Type: text/plain\r
|
|
|
|
\r
|
|
|
|
45\r
|
|
|
|
--fkj49sn38dcn3--\r
|
|
|
|
EOF
|
2005-08-31 12:55:44 +00:00
|
|
|
} ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range 0-1,3-4');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=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, 'GET, Range 0--');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=-2-3
|
|
|
|
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, 'GET, Range -2-3');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=-0
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 416, 'HTTP-Content' => <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
|
<head>
|
2018-09-23 22:36:58 +00:00
|
|
|
<title>416 Requested Range Not Satisfiable</title>
|
2005-03-02 11:27:02 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-09-23 22:36:58 +00:00
|
|
|
<h1>416 Requested Range Not Satisfiable</h1>
|
2005-03-02 11:27:02 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
EOF
|
2005-08-31 12:55:44 +00:00
|
|
|
} ];
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range -0');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=25-
|
|
|
|
EOF
|
|
|
|
);
|
2005-08-31 12:55:44 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 416, 'HTTP-Content' => <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
|
<head>
|
2018-09-23 22:36:58 +00:00
|
|
|
<title>416 Requested Range Not Satisfiable</title>
|
2005-03-02 11:27:02 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-09-23 22:36:58 +00:00
|
|
|
<h1>416 Requested Range Not Satisfiable</h1>
|
2005-03-02 11:27:02 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
EOF
|
2005-08-31 12:55:44 +00:00
|
|
|
} ];
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range start out of range');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2005-03-02 11:27:02 +00:00
|
|
|
GET / HTTP/1.0
|
|
|
|
Hsgfsdjf: asdfhdf
|
|
|
|
hdhd: shdfhfdasd
|
|
|
|
hfhr: jfghsdfg
|
|
|
|
jfuuehdmn: sfdgjfdg
|
|
|
|
jvcbzufdg: sgfdfg
|
|
|
|
hrnvcnd: jfjdfg
|
|
|
|
jfusfdngmd: gfjgfdusdfg
|
|
|
|
nfj: jgfdjdfg
|
|
|
|
jfue: jfdfdg
|
|
|
|
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, 'larger headers');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
|
|
|
|
2005-10-05 10:40:00 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /range.pdf HTTP/1.0
|
|
|
|
Range: bytes=0-
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range with range-requests-disabled');
|
|
|
|
|
2018-07-24 02:25:23 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: 0
|
|
|
|
Range: bytes=0-3
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => "12345\n" } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range invalid range-unit (first)');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
Range: bytes=0-3
|
|
|
|
Range: 0
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 206 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'GET, Range ignore invalid range (second)');
|
|
|
|
|
2006-01-03 13:59:46 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
OPTIONS / HTTP/1.0
|
|
|
|
Content-Length: 4
|
|
|
|
|
|
|
|
1234
|
|
|
|
EOF
|
|
|
|
);
|
2006-03-04 17:10:13 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
2006-01-03 13:59:46 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'OPTIONS with Content-Length');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2006-02-01 11:35:08 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
OPTIONS rtsp://221.192.134.146:80 RTSP/1.1
|
|
|
|
Host: 221.192.134.146:80
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 400 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'OPTIONS for RTSP');
|
|
|
|
|
2006-01-03 13:59:46 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
2007-08-18 11:14:12 +00:00
|
|
|
GET /index.html HTTP/1.0
|
2007-08-21 15:05:50 +00:00
|
|
|
If-Modified-Since: Sun, 01 Jan 2036 00:00:02 GMT
|
|
|
|
If-Modified-Since: Sun, 01 Jan 2036 00:00:02 GMT
|
2006-01-03 13:59:46 +00:00
|
|
|
EOF
|
|
|
|
);
|
2007-08-18 11:14:12 +00:00
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 304 } ];
|
2006-01-03 13:59:46 +00:00
|
|
|
ok($tf->handle_http($t) == 0, 'Duplicate If-Mod-Since, with equal timestamps');
|
2005-03-02 11:27:02 +00:00
|
|
|
|
2007-08-17 21:50:05 +00:00
|
|
|
$t->{REQUEST} = ( "GET / HTTP/1.0\r\nIf-Modified-Since: \r\n\r\n" );
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'empty If-Modified-Since');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( "GET / HTTP/1.0\r\nIf-Modified-Since: foobar\r\n\r\n" );
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'broken If-Modified-Since');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( "GET / HTTP/1.0\r\nIf-Modified-Since: this string is too long to be a valid timestamp\r\n\r\n" );
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'broken If-Modified-Since');
|
|
|
|
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /index.html HTTP/1.0
|
2007-08-21 15:05:50 +00:00
|
|
|
If-Modified-Since2: Sun, 01 Jan 2036 00:00:03 GMT
|
|
|
|
If-Modified-Since: Sun, 01 Jan 2036 00:00:02 GMT
|
2007-08-17 21:50:05 +00:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 304 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Similar Headers (bug #1287)');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /index.html HTTP/1.0
|
2007-08-21 15:05:50 +00:00
|
|
|
If-Modified-Since: Sun, 01 Jan 2036 00:00:02 GMT
|
2007-08-17 21:50:05 +00:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 304, 'Content-Type' => 'text/html' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'If-Modified-Since');
|
|
|
|
|
2007-08-18 10:40:20 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /index.html HTTP/1.0
|
2007-08-21 15:05:50 +00:00
|
|
|
If-Modified-Since: Sun, 01 Jan 2036 00:00:02 GMT
|
2007-08-18 10:40:20 +00:00
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 304, '-Content-Length' => '' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Status 304 has no Content-Length (#1002)');
|
|
|
|
|
2009-11-29 14:13:13 +00:00
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.0
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain' } ];
|
|
|
|
$t->{SLOWREQUEST} = 1;
|
|
|
|
ok($tf->handle_http($t) == 0, 'GET, slow \\r\\n\\r\\n (#2105)');
|
2014-01-10 12:05:12 +00:00
|
|
|
undef $t->{SLOWREQUEST};
|
2009-11-29 14:13:13 +00:00
|
|
|
|
2011-08-30 22:13:59 +00:00
|
|
|
print "\nPathinfo for static files\n";
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /image.jpg/index.php HTTP/1.0
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'Content-Type' => 'image/jpeg' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'static file accepting pathinfo by default');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /image.jpg/index.php HTTP/1.0
|
|
|
|
Host: zzz.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 403 } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'static file with forbidden pathinfo');
|
|
|
|
|
2012-11-21 12:01:42 +00:00
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.1
|
|
|
|
Connection: ,close
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain', 'Connection' => 'close' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Connection-header, leading comma');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.1
|
|
|
|
Connection: close,,TE
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain', 'Connection' => 'close' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Connection-header, no value between two commas');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.1
|
|
|
|
Connection: close, ,TE
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain', 'Connection' => 'close' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Connection-header, space between two commas');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.1
|
|
|
|
Connection: close,
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain', 'Connection' => 'close' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Connection-header, comma after value');
|
|
|
|
|
|
|
|
$t->{REQUEST} = ( <<EOF
|
|
|
|
GET /12345.txt HTTP/1.1
|
|
|
|
Connection: close,
|
|
|
|
Host: 123.example.org
|
|
|
|
EOF
|
|
|
|
);
|
|
|
|
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.1', 'HTTP-Status' => 200, 'HTTP-Content' => '12345'."\n", 'Content-Type' => 'text/plain', 'Connection' => 'close' } ];
|
|
|
|
ok($tf->handle_http($t) == 0, 'Connection-header, comma and space after value');
|
|
|
|
|
2005-06-15 09:37:18 +00:00
|
|
|
ok($tf->stop_proc == 0, "Stopping lighttpd");
|
2005-03-02 11:27:02 +00:00
|
|
|
|