X-Git-Url: http://git.shiar.net/perl/plp/.git/blobdiff_plain/51d3d67a18705467fa51bb66805456a2502505f1..9038784fd549da6452ab9491eae5d3fd5dd9fa42:/t/50-cgi.t diff --git a/t/50-cgi.t b/t/50-cgi.t index d29fcd0..d6c2856 100644 --- a/t/50-cgi.t +++ b/t/50-cgi.t @@ -5,6 +5,20 @@ use Cwd; use File::Spec; use Test::More; +eval { + require Test::LongString; + Test::LongString->import(max => 128); + + no warnings 'redefine'; # override module to not escape newlines + my $formatter = *Test::LongString::_display; + my $parent = \&{$formatter}; + *{$formatter} = sub { + my $s = &{$parent}; + $s =~ s/\Q\x{0a}/\n /g; # revert newline quoting + return $s; + }; +} or *is_string = \&is; # fallback to ugly unformatted is() + eval { require PerlIO::scalar }; plan skip_all => "PerlIO required (perl 5.8) to test PLP" if $@; @@ -23,10 +37,25 @@ not -f "$base/$testfile" or BAIL_OUT("$testfile exists"); open ORGOUT, '>&', *STDOUT; sub plp_is { - my ($test, $plp, $expect) = @_; + my ($test, $plp, $expect, $env) = @_; chomp $expect; local $Test::Builder::Level = $Test::Builder::Level + 1; + %ENV = ( + REQUEST_METHOD => 'GET', + REQUEST_URI => "/$testfile/test/123", + QUERY_STRING => 'test=1&test=2', + GATEWAY_INTERFACE => 'CGI/1.1', + + SCRIPT_NAME => '/plp.cgi', + SCRIPT_FILENAME => "$base/plp.cgi", + PATH_INFO => "/$testfile/test/123", + PATH_TRANSLATED => "$base/$testfile/test/123", + DOCUMENT_ROOT => $base, + + $env ? %{$env} : (), + ); # Apache/2.2.4 CGI environment + if (defined $plp) { eval { open my $testfh, '>', "$base/$testfile" or die $!; @@ -40,14 +69,24 @@ sub plp_is { open STDOUT, '>', \my $output; # STDOUT buffered to scalar select STDOUT; # output before start() (which selects PLPOUT) eval { - local $SIG{__WARN__} = sub { print $_[0] }; # enables warnings + local $SIG{__WARN__} = sub { + # include warnings in stdout (but modified to distinguish) + my $msg = shift; + my $eol = $msg =~ s/(\s*\z)// && $1; + print "$msg$eol" + }; PLP::everything(); }; + my $failure = $@; select ORGOUT; # return to original STDOUT - not $@ or fail($test), diag(" Error: $@"), return; + if ($failure) { + fail($test); + diag(" Error: $failure"); + return; + } $output =~ s{((?:.+\n)*)}{ join "", sort split /(?<=\n)/, $1 }e; # order headers - is($output, $expect, $test); + is_string($output, $expect, $test); } sub getwarning { @@ -57,22 +96,11 @@ sub getwarning { local $SIG{__WARN__} = sub { die @_ }; # warnings module runs at BEGIN, so we need to use icky expression evals eval qq(# line $line "$file"\n$code; return); - return $@; + my $res = $@; + chomp $res; + return $res; }; -%ENV = ( - REQUEST_METHOD => 'GET', - REQUEST_URI => "/$testfile/test/123", - QUERY_STRING => 'test=1&test=2', - GATEWAY_INTERFACE => 'CGI/1.1', - - SCRIPT_NAME => '/plp.cgi', - SCRIPT_FILENAME => "$base/plp.cgi", - PATH_INFO => "/$testfile/test/123", - PATH_TRANSLATED => "$base/$testfile/test/123", - DOCUMENT_ROOT => $base, -); # Apache/2.2.4 CGI environment - my $HEAD = <\nruntime", <Debug information:
$SYNTAXERR +
Debug information:
$SYNTAXERR +
TEST SKIP: { @@ -140,9 +169,10 @@ plp_is('warnings', split /\n\n/, <${VOIDWARN} +1 2 -3warning at $testfile line 3. +3warning at $testfile line 3. 4
Debug information:
$INCWARN at $testfile line 4.
@@ -179,8 +209,8 @@ plp_is('%ENV (on apache)', @envtest); SKIP: { chmod 0244, $testfile or skip("changed permissions", 1); plp_is('permission denied', undef, <PLP: Can't read: $base/$testfile (/$testfile/test/123) Content-Type: text/html -PLP: Can't read: $base/$testfile (/$testfile/test/123) Status: 403 @@ -195,10 +225,10 @@ TEST chmod 0644, $testfile; } -$ENV{PATH_TRANSLATED} = "$base/missinginclude/test/123"; -plp_is('not found', undef, < "$base/missinginclude/test/123"); +plp_is('not found', undef, <PLP: Not found: $base/missinginclude/test/123 (/$testfile/test/123) Content-Type: text/html -PLP: Not found: $base/missinginclude/test/123 (/$testfile/test/123) Status: 404 @@ -211,7 +241,8 @@ The requested URL /$testfile/test/123 was not found on this server.

TEST -%ENV = ( +plp_is('%ENV on lighttpd', @envtest, { + # lighttpd/1.4.7 CGI environment REQUEST_METHOD => 'GET', REQUEST_URI => "/$testfile/test/123", QUERY_STRING => 'test=1&test=2', @@ -220,9 +251,9 @@ TEST SCRIPT_NAME => "/$testfile", #XXX: .plp? SCRIPT_FILENAME => "$base/$testfile", PATH_INFO => '/test/123', -); # lighttpd/1.4.7 CGI environment - -plp_is('%ENV on lighttpd', @envtest); + PATH_TRANSLATED => undef, + DOCUMENT_ROOT => undef, +}); unlink "$base/$testfile";