added dev_server test, poked Catalyst::Script::Create
Devin Austin [Thu, 25 Jun 2009 01:10:57 +0000 (01:10 +0000)]
lib/Catalyst/Script/Create.pm
t/start_dev_server.t [new file with mode: 0644]

index d90af85..5676e1f 100644 (file)
@@ -1,3 +1,3 @@
 package Catalyst::Script::Create;
-
+use Moose;
 1;
diff --git a/t/start_dev_server.t b/t/start_dev_server.t
new file mode 100644 (file)
index 0000000..31fc26f
--- /dev/null
@@ -0,0 +1,32 @@
+use Test::More tests => 1;
+use strict;
+use warnings;
+use Catalyst::Engine::HTTP;
+use File::Temp qw/ tempdir tmpnam /;
+use FindBin qw/$Bin/;
+use File::Spec;
+use lib "$Bin/TestApp/lib";
+use TestApp;
+use Test::WWW::Mechanize;
+
+my $dir = tempdir(); # CLEANUP => 1 );
+my $devnull = File::Spec->devnull;
+
+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;
+
+