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