X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Foptional_http-server.t;h=8219f3f78435e26292777cbbaafa604aa4f424dd;hb=a1a8d97d78aa20cea4fd5b7ffb22e5255f817e0c;hp=a518df05a584c596a9a432c210a3e54b533cd251;hpb=66741f94ac93b7ba0989db3556d0e3fe36c1be87;p=catagits%2FCatalyst-Runtime.git diff --git a/t/optional_http-server.t b/t/optional_http-server.t index a518df0..8219f3f 100644 --- a/t/optional_http-server.t +++ b/t/optional_http-server.t @@ -14,14 +14,14 @@ plan skip_all => 'File::Copy::Recursive required' if $@; plan tests => 1; # clean up -rmtree "$FindBin::Bin/../../t/tmp" if -d "$FindBin::Bin/../../t/tmp"; +rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp"; # 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"; -chdir "$FindBin::Bin/../.."; -File::Copy::Recursive::dircopy( 't/live/lib', 't/tmp/TestApp/lib' ); +mkdir "$FindBin::Bin/../t/tmp"; +chdir "$FindBin::Bin/../t/tmp"; +system "perl -I$FindBin::Bin/../lib $FindBin::Bin/../script/catalyst.pl TestApp"; +chdir "$FindBin::Bin/.."; +File::Copy::Recursive::dircopy( 't/lib', 't/tmp/TestApp/lib' ); # remove TestApp's tests rmtree 't/tmp/TestApp/t'; @@ -29,7 +29,7 @@ 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 |" + "perl -I$FindBin::Bin/../lib $FindBin::Bin/../t/tmp/TestApp/script/testapp_server.pl -port $port 2>&1 |" or die "Unable to spawn standalone HTTP server: $!"; # wait for it to start @@ -40,14 +40,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/' ); +system( 'prove -r -Ilib/ t/live_*' ); # shut it down kill 'INT', $pid; close $server; # clean up -rmtree "$FindBin::Bin/../../t/tmp" if -d "$FindBin::Bin/../../t/tmp"; +rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp"; ok( 'done' );