X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fgenerated_app.t;h=871abb2f17dcde75fdbef9294f401f319dff1e4f;hb=3cd69ff24eb4967ad0d5a856c379a825cf20d39b;hp=3083eaff4fb5b1e427743d91e72fb088bcacdbcc;hpb=20859489a4776c7dec22fe308860d5b4bb0583c2;p=catagits%2FCatalyst-Devel.git diff --git a/t/generated_app.t b/t/generated_app.t index 3083eaf..871abb2 100644 --- a/t/generated_app.t +++ b/t/generated_app.t @@ -1,14 +1,22 @@ use strict; use warnings; -use File::Temp qw/ tempdir /; +use File::Temp qw/ tempdir tmpnam /; +use File::Spec; +use Test::WWW::Mechanize; my $dir = tempdir(); # CLEANUP => 1 ); +my $devnull = File::Spec->devnull; use Test::More; { # Check exit status here - system("cd $dir; catalyst.pl TestApp"); + if ($^O eq 'MSWin32') { + system("cd $dir & catalyst TestApp > $devnull 2>&1"); + } + else { + system("cd $dir; catalyst.pl TestApp > $devnull 2>&1"); + } } # Fix paths / nl work on win32 chdir("$dir/TestApp/"); @@ -41,9 +49,10 @@ script/testapp_fastcgi.pl script/testapp_server.pl script/testapp_test.pl script/testapp_create.pl +script/testapp_deploy_schema.pl |; -plan 'tests' => scalar @files + 3; +plan 'tests' => scalar @files + 4; foreach my $fn (@files) { ok -r $fn, "Have $fn in generated app"; @@ -53,7 +62,26 @@ foreach my $fn (@files) { my $makefile_status = `$^X Makefile.PL`; ok $makefile_status, "Makefile ran okay"; ok -e "Makefile", "Makefile exists"; -my $newapp_test_status = `prove -l t/`; +my $newapp_test_status = `prove -l t/ 2> $devnull`; ok $newapp_test_status, "Tests ran okay"; #is $newapp_test_status, ; +## Moosey server tests - kmx++ +my $server_path = File::Spec->catfile('script', 'testapp_server.pl'); +my $port = int(rand(10000)) + 40000; # get random port between 40000-50000 + +my $childpid = fork(); +die "fork() error, cannot continue" unless defined($childpid); + +if ($childpid == 0) { + system("$^X $server_path -p $port > $devnull 2>&1"); + exit; # just for sure; we should never got here +} + +sleep 10; #wait for catalyst application to start +my $mech = Test::WWW::Mechanize->new; +$mech->get_ok( "http://localhost:" . $port ); + +kill 'KILL', $childpid; + +