X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Fpsgi_file.t;h=0e07d21f796e131fa49219bdb0674296dee88947;hb=a0b5065e3dd43fea2ca17f4f2ae7cbe1958057d4;hp=5b62cf2139f0569a06f5bd3d641ef6025d13775b;hpb=8f076801b5c41543fdc20859452ed2cea1e1f82f;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/psgi_file.t b/t/aggregate/psgi_file.t index 5b62cf2..0e07d21 100644 --- a/t/aggregate/psgi_file.t +++ b/t/aggregate/psgi_file.t @@ -6,6 +6,7 @@ use lib "$FindBin::Bin/../lib"; use File::Temp qw/ tempdir /; use TestApp; use File::Spec; +use Carp qw/croak/; my $home = tempdir( CLEANUP => 1 ); my $path = File::Spec->catfile($home, 'testapp.psgi'); @@ -19,16 +20,31 @@ use TestApp; TestApp->psgi_app; }; close($psgi); + +my ($saved_stdout, $saved_stderr); +my $stdout = !open( $saved_stdout, '>&'. STDOUT->fileno ); +my $stderr = !open( $saved_stderr, '>&'. STDERR->fileno ); +open( STDOUT, '+>', undef ) + or croak("Can't reopen stdout to /dev/null"); +open( STDERR, '+>', undef ) + or croak("Can't reopen stdout to /dev/null"); # Check we wrote out something that compiles system($^X, '-I', "$FindBin::Bin/../lib", '-c', $path) ? fail('.psgi does not compile') : pass('.psgi compiles'); +if ($stdout) { + open( STDOUT, '>&'. fileno($saved_stdout) ); +} +if ($stderr) { + open( STDERR, '>&'. fileno($saved_stderr) ); +} + # NOTE - YOU *CANNOT* do something like: #my $psgi_ref = require $path; # otherwise this test passes! # I don't exactly know why that is yet, however, to be safe for future, that -# is why this test writes out it's own .psgi file in a temp directory - so that that +# is why this test writes out its own .psgi file in a temp directory - so that that # path has never been require'd before, and will never be require'd again.. local TestApp->config->{home} = $home;