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