- added testcase for #948

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@1901 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.17
Marcus Rückert 16 years ago
parent dac6d449dd
commit 2573648c4b

@ -44,6 +44,6 @@ cgi.assign = (".pl" => "/usr/bin/perl" )
$HTTP["url"] =~ "^/static/" {
server.error-handler-404 = "/404.html"
}
else $HTTP["url"] =~ "^/dynamic/" {
else $HTTP["url"] =~ "." {
server.error-handler-404 = "/404.pl"
}

@ -7,6 +7,7 @@
# returning 200
# returning 302 + Location
# returning 404
# returning no status -> 200
#
BEGIN {
# add current source dir to the include-path
@ -17,7 +18,7 @@ BEGIN {
use strict;
use IO::Socket;
use Test::More tests => 6;
use Test::More tests => 8;
use LightyTest;
my $tf = LightyTest->new();
@ -57,5 +58,19 @@ EOF
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404, 'HTTP-Content' => "Not found here\n" } ];
ok($tf->handle_http($t) == 0, '404 handler => dynamic(404)');
$t->{REQUEST} = ( <<EOF
GET /dynamic/nostatus/notfound HTTP/1.0
EOF
);
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200, 'HTTP-Content' => "found here\n" } ];
ok($tf->handle_http($t) == 0, '404 handler => dynamic(nostatus)');
$t->{REQUEST} = ( <<EOF
GET /send404.pl HTTP/1.0
EOF
);
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
ok($tf->handle_http($t) == 0, '404 generated by CGI should stay 404');
ok($tf->stop_proc == 0, "Stopping lighttpd");

@ -3,6 +3,7 @@ use CGI qw/:standard/;
my $cgi = new CGI;
my $request_uri = $ENV{'REQUEST_URI'};
print (STDERR "REQUEST_URI: $request_uri\n");
if ($request_uri =~ m/^\/dynamic\/200\// ) {
print header ( -status => 200,
-type => 'text/plain' );
@ -17,8 +18,16 @@ elsif ($request_uri =~ m/^\/dynamic\/404\// ) {
-type => 'text/plain' );
print ("Not found here\n");
}
elsif ($request_uri =~ m/^\/send404\.pl/ ) {
print header ( -status => 404
-type => 'text/plain' );
print ("Not found here (send404)\n");
}
elsif ($request_uri =~ m/^\/dynamic\/nostatus\// ) {
print ("found here\n");
}
else {
print header ( -status => 404,
print header ( -status => 500,
-type => 'text/plain');
print ("huh\n");
};

@ -0,0 +1,5 @@
#!/usr/bin/perl
use CGI qw/:standard/;
print header ( -status => 404
-type => 'text/plain' );
print ("send404\n");
Loading…
Cancel
Save