X-Git-Url: http://git.shiar.net/perl/plp/.git/blobdiff_plain/e11a488e0909da46fd76f05a6aef47305055e43f..9038784fd549da6452ab9491eae5d3fd5dd9fa42:/t/50-cgi.t diff --git a/t/50-cgi.t b/t/50-cgi.t index cd10ee4..d6c2856 100644 --- a/t/50-cgi.t +++ b/t/50-cgi.t @@ -1,62 +1,105 @@ use strict; use warnings; -use Cwd qw(cwd); +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 $@; -plan tests => 18; +plan tests => 20; require_ok('PLP::Backend::CGI') or BAIL_OUT(); $PLP::use_cache = 0 if $PLP::use_cache; #TODO: caching on (change file names) -my $base = -w '/tmp' ? '/tmp' : cwd(); +my $base = Cwd::abs_path(File::Spec->tmpdir || File::Spec->curdir); +-w $base or BAIL_OUT("$base not writable"); my $testfile = 'testfile.plp'; not -f "$base/$testfile" or BAIL_OUT("$testfile exists"); -open ORGOUT, '>&', STDOUT; +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; - eval { - open my $testfh, '>', "$base/$testfile" or die $!; - print {$testfh} $plp or die $!; - close $testfh or die $!; - }; - not $@ or fail("write $testfile"), diag(" Error: $@"), return; + %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 $!; + print {$testfh} $plp or die $!; + close $testfh or die $!; + }; + not $@ or fail("write $testfile"), diag(" Error: $@"), return; + } close STDOUT; 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); } -%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 +sub getwarning { + # captures the first warning produced by the given code string + my ($code, $line, $file) = @_; + + 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); + my $res = $@; + chomp $res; + return $res; +}; my $HEAD = < <: include '$testfile.inc'", "$HEAD\nok ok"); unlink "$base/$testfile.inc"; +my $SYNTAXERR = getwarning("q\cq\n\cq; syntax(error", 1, $testfile); plp_is('fatal error', "runtime\n<: syntax(error :>\nruntime", <Debug information:
syntax error at $testfile line 2, at EOF - (Might be a runaway multi-line \cq\cq string starting on line 1) +
Debug information:
$SYNTAXERR
TEST +SKIP: { + +my $INCFILE = File::Spec->rel2abs("$base/missinginclude"); +if (open my $dummy, "<", $INCFILE) { # like PLP::source will + fail("file missinginclude shouldn't exist"); + skip("missinginclude tests", 2); +} +my $INCWARN = qq{Can't open "$INCFILE" ($!)}; + +my $VOIDWARN = getwarning('42', 2, $testfile); + plp_is('warnings', split /\n\n/, < -2 -<: 42 :> -3 -<: warn "warning" :> -4 -<: include "missinginclude" :> -5 -<(missinginclude)> +1<: use warnings :> +2<: 42 :> +3<: warn "warning" :> +4<: include "missinginclude" :> +5<(missinginclude)> 6 $HEAD -Useless use of a constant in void context at $testfile line 4. +${VOIDWARN} 1 - 2 +3warning at $testfile line 3. -3 -warning at $testfile line 6. - -4 -
Debug information:
Can't open "$base/missinginclude" (No such file or directory) at $testfile line 8. +4
Debug information:
$INCWARN at $testfile line 4.
-5 -
Debug information:
Can't open "$base/missinginclude" (No such file or directory) at $testfile line 10. +5
Debug information:
$INCWARN at $testfile line 5.
TEST plp_is('$PLP::ERROR', '<: $PLP::ERROR = sub {print "Oh no: $_[0]"} :> <(missinginclude)>.', - qq{$HEAD\n Oh no: Can't open "$base/missinginclude" (No such file or directory) at $testfile line 1.\n\n} + qq{$HEAD\n Oh no: $INCWARN at $testfile line 1.\n\n} ); -#TODO: 404 -#TODO: 403 - plp_is('$PLP::DEBUG', '<: $PLP::DEBUG = 2; delete $header{x_plp_version} :>1<(missinginclude)>2', "Content-Type: text/plain\n\nContent-Type: text/html\n\n1" ); +} + plp_is('utf8', '<: use open qw/:std :utf8/; print chr 191', <PLP: Can't read: $base/$testfile (/$testfile/test/123) +Content-Type: text/html +Status: 403 + + + +403 Forbidden + +

Forbidden

+You don't have permission to access /$testfile/test/123 on this server.

+


+ +TEST +chmod 0644, $testfile; +} + +my %nf = (PATH_TRANSLATED => "$base/missinginclude/test/123"); +plp_is('not found', undef, <PLP: Not found: $base/missinginclude/test/123 (/$testfile/test/123) +Content-Type: text/html +Status: 404 + + + +404 Not Found + +

Not Found

+The requested URL /$testfile/test/123 was not found on this server.

+


+ +TEST + +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', @@ -172,9 +251,9 @@ plp_is('%ENV (on apache)', @envtest); 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";