X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Foptional_http-server.t;h=60f925936c37ddba966d4286447be879ba71cbdc;hp=5516b6647fcb6dc47a041f369aa28a28c163821e;hb=4ac0b9cb8e9043db8a95f44af685c782bf9426e7;hpb=5c9c810dc09594a364ea85a023e8803bbbd11853 diff --git a/t/optional_http-server.t b/t/optional_http-server.t index 5516b66..60f9259 100644 --- a/t/optional_http-server.t +++ b/t/optional_http-server.t @@ -1,27 +1,34 @@ -#!perl - use strict; use warnings; +use Test::More; +BEGIN { + plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP}; +} + use File::Path; use FindBin; +use IPC::Open3; use IO::Socket; -use Test::More; -plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP}; eval "use Catalyst::Devel 1.0"; plan skip_all => 'Catalyst::Devel required' if $@; +eval "use File::Copy::Recursive"; +plan skip_all => 'File::Copy::Recursive required' if $@; plan tests => 1; -use File::Copy::Recursive; +# Run a single test by providing it as the first arg +my $single_test = shift; + +my $tmpdir = "$FindBin::Bin/../t/tmp"; # clean up -rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp"; +rmtree $tmpdir if -d $tmpdir; # create a TestApp and copy the test libs into it -mkdir "$FindBin::Bin/../t/tmp"; -chdir "$FindBin::Bin/../t/tmp"; -system "perl -I$FindBin::Bin/../lib $FindBin::Bin/../script/catalyst.pl TestApp"; +mkdir $tmpdir; +chdir $tmpdir; +system( $^X, "-I$FindBin::Bin/../lib", "$FindBin::Bin/../script/catalyst.pl", 'TestApp' ); chdir "$FindBin::Bin/.."; File::Copy::Recursive::dircopy( 't/lib', 't/tmp/TestApp/lib' ); @@ -30,8 +37,9 @@ rmtree 't/tmp/TestApp/t'; # spawn the standalone HTTP server my $port = 30000 + int rand(1 + 10000); -my $pid = open my $server, - "perl -I$FindBin::Bin/../lib $FindBin::Bin/../t/tmp/TestApp/script/testapp_server.pl -port $port 2>&1 |" +my $pid = open3( undef, my $server, undef, + $^X, "-I$FindBin::Bin/../lib", + "$FindBin::Bin/../t/tmp/TestApp/script/testapp_server.pl", '-port', $port ) or die "Unable to spawn standalone HTTP server: $!"; # wait for it to start @@ -42,7 +50,14 @@ while ( check_port( 'localhost', $port ) != 1 ) { # run the testsuite against the HTTP server $ENV{CATALYST_SERVER} = "http://localhost:$port"; -system( 'prove -r -Ilib/ t/live_*' ); + +my $return; +if ( $single_test ) { + $return = system( "$^X -Ilib/ $single_test" ); +} +else { + $return = prove( '-r', '-Ilib/', glob('t/aggregate/live_*.t') ); +} # shut it down kill 'INT', $pid; @@ -51,7 +66,7 @@ close $server; # clean up rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp"; -ok( 'done' ); +is( $return, 0, 'live tests' ); sub check_port { my ( $host, $port ) = @_; @@ -69,3 +84,15 @@ sub check_port { return 0; } } + +sub prove { + if (!(my $pid = fork)) { + require App::Prove; + my $prove = App::Prove->new; + $prove->process_args(@_); + exit( $prove->run ? 0 : 1 ); + } else { + waitpid $pid, 0; + return $?; + } +}