minor change
[catagits/Catalyst-Controller-WrapCGI.git] / t / cgibin.t
index 8340633..700d881 100644 (file)
@@ -6,14 +6,20 @@ use warnings;
 use FindBin '$Bin';
 use lib "$Bin/lib";
 
-use Test::More tests => 4;
+use Test::More;
+use HTTP::Request::Common;
+
+my %orig_sig;
+BEGIN { %orig_sig = %SIG; }
 
 use Catalyst::Test 'TestCGIBin';
-use HTTP::Request::Common;
 
 # this should be ignored
 $ENV{MOD_PERL} = "mod_perl/2.0";
 
+is_deeply \%SIG, \%orig_sig, '%SIG is preserved on compile';
+%SIG = %orig_sig;
+
 my $response = request POST '/my-bin/path/test.pl', [
     foo => 'bar',
     bar => 'baz'
@@ -21,13 +27,23 @@ my $response = request POST '/my-bin/path/test.pl', [
 
 is($response->content, 'foo:bar bar:baz', 'POST to Perl CGI File');
 
-$response = request POST '/cgihandler/dongs', [
-    foo => 'bar',
-    bar => 'baz'
-];
+$response = request '/my-bin/path/test.pl?foo=bar&bar=baz';
 
 is($response->content, 'foo:bar bar:baz',
-    'POST to Perl CGI File through a forward');
+    'Perl CGI File invoked with query params');
+
+$response = request POST '/my-bin/exit.pl', [
+    name => 'world',
+];
+
+is($response->content, 'hello world', 'POST to Perl CGI with exit()');
+
+$response = request POST '/my-bin/exit.pl', [
+    name => 'world',
+    exit => 17,
+];
+
+is($response->code, 500, 'POST to Perl CGI with nonzero exit()');
 
 $response = request POST '/cgihandler/mtfnpy', [
     foo => 'bar',
@@ -37,9 +53,26 @@ $response = request POST '/cgihandler/mtfnpy', [
 is($response->content, 'foo:bar bar:baz',
     'POST to Perl CGI File through a forward via cgi_action');
 
+$response = request '/my-bin/path/testdata.pl';
+is($response->content, "testing\n",
+    'scripts with __DATA__ sections work');
+
+$response = request '/my-bin/pathinfo.pl/path/info';
+is($response->content, '/path/info',
+    'PATH_INFO works');
+
+ok request '/my-bin/sigs.pl';
+
+is_deeply \%SIG, \%orig_sig, '%SIG is preserved';
+
 SKIP: {
     skip "Can't run shell scripts on non-*nix", 1
         if $^O eq 'MSWin32' || $^O eq 'VMS';
 
+# for some reason the +x is not preserved in the dist
+    system "chmod +x $Bin/lib/TestCGIBin/root/cgi-bin/test.sh";
+
     is(get('/my-bin/test.sh'), "Hello!\n", 'Non-Perl CGI File');
 }
+
+done_testing;