Fixed http-server tests so it reads test results
[catagits/Catalyst-Runtime.git] / t / optional / http-server.t
CommitLineData
040850b3 1#!perl
2
3use strict;
4use warnings;
5
040850b3 6use File::Path;
7use FindBin;
896c9ed2 8use IO::Socket;
f0ee1a76 9use Test::More;
10eval "use File::Copy::Recursive";
11
f0ee1a76 12plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP};
ac93c094 13plan skip_all => 'File::Copy::Recursive required' if $@;
4678828c 14plan tests => 28;
040850b3 15
16# clean up
17rmtree "$FindBin::Bin/../../t/var" if -d "$FindBin::Bin/../../t/var";
18
19# create a TestApp and copy the test libs into it
20mkdir "$FindBin::Bin/../../t/var";
21chdir "$FindBin::Bin/../../t/var";
22system "$FindBin::Bin/../../script/catalyst.pl TestApp";
23chdir "$FindBin::Bin/../..";
24File::Copy::Recursive::dircopy( 't/live/lib', 't/var/TestApp/lib' );
25
26# spawn the standalone HTTP server
896c9ed2 27my $port = 30000 + int rand(1 + 10000);
28my $pid = open my $server,
29 "$FindBin::Bin/../../t/var/TestApp/script/testapp_server.pl -port $port 2>&1 |"
040850b3 30 or die "Unable to spawn standalone HTTP server: $!";
896c9ed2 31
040850b3 32# wait for it to start
896c9ed2 33print "Waiting for server to start...\n";
34while ( check_port( 'localhost', $port ) != 1 ) {
35 sleep 1;
36}
040850b3 37
38# run the testsuite against the HTTP server
896c9ed2 39$ENV{CATALYST_SERVER} = "http://localhost:$port";
4678828c 40my $output = `prove -r -Ilib/ t/live/`;
41
42foreach my $line ( split /\n/, $output ) {
43 if ( $line !~ /skipped|wallclock/ ) {
44 like( $line, qr/ok$/, 'test ok' );
45 }
46}
040850b3 47
48# shut it down
49kill 2, $pid;
896c9ed2 50close $server;
040850b3 51
52# clean up
53rmtree "$FindBin::Bin/../../t/var" if -d "$FindBin::Bin/../../t/var";
896c9ed2 54
55sub check_port {
56 my ( $host, $port ) = @_;
57
58 my $remote = IO::Socket::INET->new(
59 Proto => "tcp",
60 PeerAddr => $host,
61 PeerPort => $port
62 );
63 if ($remote) {
64 close $remote;
65 return 1;
66 }
67 else {
68 return 0;
69 }
70}