X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Foptional%2Fhttp-server.t;h=a518df05a584c596a9a432c210a3e54b533cd251;hb=587b0f5882d4f5e128ae082758da37b065a3efde;hp=44340e2bf95ee08ef449baf3ac8c5e20f209c55c;hpb=4678828c308a9cabca4727a7dd08855a9e8e8473;p=catagits%2FCatalyst-Runtime.git diff --git a/t/optional/http-server.t b/t/optional/http-server.t index 44340e2..a518df0 100644 --- a/t/optional/http-server.t +++ b/t/optional/http-server.t @@ -11,22 +11,25 @@ eval "use File::Copy::Recursive"; plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP}; plan skip_all => 'File::Copy::Recursive required' if $@; -plan tests => 28; +plan tests => 1; # clean up -rmtree "$FindBin::Bin/../../t/var" if -d "$FindBin::Bin/../../t/var"; +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/var"; -chdir "$FindBin::Bin/../../t/var"; -system "$FindBin::Bin/../../script/catalyst.pl TestApp"; +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/var/TestApp/lib' ); +File::Copy::Recursive::dircopy( 't/live/lib', 't/tmp/TestApp/lib' ); + +# remove TestApp's tests +rmtree 't/tmp/TestApp/t'; # spawn the standalone HTTP server my $port = 30000 + int rand(1 + 10000); my $pid = open my $server, - "$FindBin::Bin/../../t/var/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 @@ -34,23 +37,19 @@ print "Waiting for server to start...\n"; while ( check_port( 'localhost', $port ) != 1 ) { sleep 1; } - + # run the testsuite against the HTTP server $ENV{CATALYST_SERVER} = "http://localhost:$port"; -my $output = `prove -r -Ilib/ t/live/`; - -foreach my $line ( split /\n/, $output ) { - if ( $line !~ /skipped|wallclock/ ) { - like( $line, qr/ok$/, 'test ok' ); - } -} +system( 'prove -r -Ilib/ t/live/' ); # shut it down -kill 2, $pid; +kill 'INT', $pid; close $server; # clean up -rmtree "$FindBin::Bin/../../t/var" if -d "$FindBin::Bin/../../t/var"; +rmtree "$FindBin::Bin/../../t/tmp" if -d "$FindBin::Bin/../../t/tmp"; + +ok( 'done' ); sub check_port { my ( $host, $port ) = @_;