X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Fpsgi_file.t;h=1f8f0c5aa443102e410ff35002ca3bd7f818c007;hp=5b62cf2139f0569a06f5bd3d641ef6025d13775b;hb=e60dd0d7930fa5ee5edc23e6548da816f400f6d5;hpb=8f076801b5c41543fdc20859452ed2cea1e1f82f diff --git a/t/aggregate/psgi_file.t b/t/aggregate/psgi_file.t index 5b62cf2..1f8f0c5 100644 --- a/t/aggregate/psgi_file.t +++ b/t/aggregate/psgi_file.t @@ -6,6 +6,8 @@ use lib "$FindBin::Bin/../lib"; use File::Temp qw/ tempdir /; use TestApp; use File::Spec; +use Carp qw/croak/; +use IPC::Open3 qw(open3); my $home = tempdir( CLEANUP => 1 ); my $path = File::Spec->catfile($home, 'testapp.psgi'); @@ -19,16 +21,21 @@ use TestApp; TestApp->psgi_app; }; close($psgi); -# Check we wrote out something that compiles -system($^X, '-I', "$FindBin::Bin/../lib", '-c', $path) - ? fail('.psgi does not compile') - : pass('.psgi compiles'); + +my @command = ($^X, '-I', "$FindBin::Bin/../lib", '-I', "$FindBin::Bin/../../lib", '-c', $path); +open my $stdin, '<', File::Spec->devnull; +my $pid = open3 $stdin, my $stdout, undef, @command; +my $output = do { local $/; <$stdout> }; +waitpid $pid, 0; + +ok $? == 0, '.psgi compiles' + or diag $output; # 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;