fix perl 5.6 syntax error in t/50-cgi.t
[perl/plp/.git] / t / 50-cgi.t
index cd10ee47381c916c4f7cf9fced66c13b0ca7d7ed..57e766b116a8ba066693db9eedd21aada93b357d 100644 (file)
@@ -7,7 +7,7 @@ use Test::More;
 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();
 
@@ -18,19 +18,21 @@ my $base = -w '/tmp' ? '/tmp' : cwd();
 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) = @_;
        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;
+       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
@@ -106,6 +108,15 @@ $HEAD
 </td></tr></table>
 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" ($!)};
+
 plp_is('warnings', split /\n\n/, <<TEST, 2);
 1
 <: use warnings :>
@@ -129,26 +140,25 @@ Useless use of a constant in void context at $testfile line 4.
 warning at $testfile line 6.
 
 4
-<table border=1 class="PLPerror"><tr><td><b>Debug information:</b><br>Can't open "$base/missinginclude" (No such file or directory) at $testfile line 8.
+<table border=1 class="PLPerror"><tr><td><b>Debug information:</b><br>$INCWARN at $testfile line 8.
 </td></tr></table>
 5
-<table border=1 class="PLPerror"><tr><td><b>Debug information:</b><br>Can't open "$base/missinginclude" (No such file or directory) at $testfile line 10.
+<table border=1 class="PLPerror"><tr><td><b>Debug information:</b><br>$INCWARN at $testfile line 10.
 </td></tr></table>
 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', <<TEST);
 Content-Type: text/html; charset=utf-8
 X-PLP-Version: $PLP::VERSION
@@ -163,6 +173,39 @@ my @envtest = (
 
 plp_is('%ENV (on apache)', @envtest);
 
+SKIP: {
+chmod 0244, $testfile or skip("changed permissions", 1);
+plp_is('permission denied', undef, <<TEST);
+Content-Type: text/html
+Status: 403
+
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
+<html><head>
+<title>403 Forbidden</title>
+</head></body>
+<h1>Forbidden</h1>
+You don't have permission to access /$testfile/test/123 on this server.<p>
+<hr>
+</body></html>
+TEST
+chmod 0644, $testfile;
+}
+
+$ENV{PATH_TRANSLATED} = "$base/missinginclude/test/123";
+plp_is('not found', undef, <<TEST);
+Content-Type: text/html
+Status: 404
+
+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
+<html><head>
+<title>404 Not Found</title>
+</head></body>
+<h1>Not Found</h1>
+The requested URL /$testfile/test/123 was not found on this server.<p>
+<hr>
+</body></html>
+TEST
+
 %ENV = (
        REQUEST_METHOD => 'GET',
        REQUEST_URI => "/$testfile/test/123",