From 79886610900e95efcbea3ee73f9f612c7788bbca Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Wed, 31 Aug 2005 12:55:44 +0000 Subject: added tests for keep-alive and setenv and passed a ARRAY ref instead of a HASH ref git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@654 152afb58-edef-0310-8abb-c4023f1b3aa9 --- tests/mod-redirect.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/mod-redirect.t') diff --git a/tests/mod-redirect.t b/tests/mod-redirect.t index 690acdd0..99f95967 100755 --- a/tests/mod-redirect.t +++ b/tests/mod-redirect.t @@ -21,7 +21,7 @@ GET /redirect/ HTTP/1.0 Host: vvv.example.org EOF ); -$t->{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/' } ); +$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/' } ]; ok($tf->handle_http($t) == 0, 'external redirect'); $t->{REQUEST} = ( <{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/zzz' } ); +$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/zzz' } ]; ok($tf->handle_http($t) == 0, 'external redirect with cond regsub'); $t->{REQUEST} = ( <{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/127.0.0.1' } ); +$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/127.0.0.1' } ]; ok($tf->handle_http($t) == 0, 'external redirect with cond regsub on remoteip'); $t->{REQUEST} = ( <{RESPONSE} = ( { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/remoteip2' } ); +$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 301, 'Location' => 'http://localhost:2048/remoteip2' } ]; ok($tf->handle_http($t) == 0, 'external redirect with cond regsub on remoteip2'); ok($tf->stop_proc == 0, "Stopping lighttpd"); -- cgit v1.2.1