b6f12b2da6b6dafe087ec5a41392d64c67ce513b
[catagits/Catalyst-Runtime.git] / t / start_dev_server.t
1 use Test::More tests => 1;
2 use strict;
3 use warnings;
4 use Catalyst::Engine::HTTP;
5 use File::Temp qw/ tempdir tmpnam /;
6 use FindBin qw/$Bin/;
7 use File::Spec;
8 use lib "$Bin/TestApp/lib";
9 use TestApp;
10 use Test::WWW::Mechanize;
11 BEGIN { 
12     $ENV{CATALYST_ENGINE} ||= 'HTTP';
13     $ENV{CATALYST_SCRIPT_GEN} = 31;
14     require Catalyst::Engine::HTTP;
15
16 my $dir = tempdir(); # CLEANUP => 1 );
17 my $devnull = File::Spec->devnull;
18
19 my $server_path   = File::Spec->catfile('script', 'testapp_server.pl');
20 my $port = int(rand(10000)) + 40000; # get random port between 40000-50000
21
22 my $childpid = fork();
23 die "fork() error, cannot continue" unless defined($childpid);
24
25 if ($childpid == 0) {
26   system("$^X $server_path -p $port > $devnull 2>&1");
27   exit; # just for sure; we should never got here
28 }
29
30 sleep 10; #wait for catalyst application to start
31 my $mech = Test::WWW::Mechanize->new;
32 $mech->get_ok( "http://localhost:" . $port );
33
34 kill 'KILL', $childpid;
35
36