Actually switch the create script to new script style. Testing I did yesterday obviou...
[catagits/Catalyst-Devel.git] / t / generated_app.t
CommitLineData
ad9d93fc 1use strict;
2use warnings;
3
99618c49 4use File::Temp qw/ tempdir tmpnam /;
0f89baa1 5use File::Spec;
99618c49 6use Test::WWW::Mechanize;
3d3e34a0 7use Catalyst::Devel;
99618c49 8
3d3e34a0 9my $dir = tempdir( CLEANUP => 1 );
165233a4 10my $devnull = File::Spec->devnull;
ad9d93fc 11
12use Test::More;
13{
14 # Check exit status here
165233a4 15 if ($^O eq 'MSWin32') {
16 system("cd $dir & catalyst TestApp > $devnull 2>&1");
17 }
18 else {
19 system("cd $dir; catalyst.pl TestApp > $devnull 2>&1");
20 }
ad9d93fc 21}
22# Fix paths / nl work on win32
23chdir("$dir/TestApp/");
ad9d93fc 24
25# Ok, this is lame.. Also, check +x permissions?
26my @files = qw|
27 Makefile.PL
2cb998f9 28 testapp.conf
29lib/TestApp.pm
30lib/TestApp/Controller/Root.pm
31README
32Changes
33t/01app.t
34t/02pod.t
35t/03podcoverage.t
36root/static/images/catalyst_logo.png
37root/static/images/btn_120x50_built.png
38root/static/images/btn_120x50_built_shadow.png
39root/static/images/btn_120x50_powered.png
40root/static/images/btn_120x50_powered_shadow.png
41root/static/images/btn_88x31_built.png
42root/static/images/btn_88x31_built_shadow.png
43root/static/images/btn_88x31_powered.png
44root/static/images/btn_88x31_powered_shadow.png
45root/favicon.ico
46Makefile.PL
47script/testapp_cgi.pl
48script/testapp_fastcgi.pl
49script/testapp_server.pl
50script/testapp_test.pl
51script/testapp_create.pl
ad9d93fc 52|;
53
ad9d93fc 54foreach my $fn (@files) {
55 ok -r $fn, "Have $fn in generated app";
3d3e34a0 56 if ($fn =~ /script/) {
57 ok -x $fn, "$fn is executable";
58 }
ad9d93fc 59}
60
20859489 61## Makefile stuff
62my $makefile_status = `$^X Makefile.PL`;
63ok $makefile_status, "Makefile ran okay";
64ok -e "Makefile", "Makefile exists";
3d3e34a0 65my $newapp_test_status = system("make", "test");
66ok !$newapp_test_status, "Tests ran okay";
20859489 67
99618c49 68## Moosey server tests - kmx++
0f89baa1 69my $server_path = File::Spec->catfile('script', 'testapp_server.pl');
165233a4 70my $port = int(rand(10000)) + 40000; # get random port between 40000-50000
99618c49 71
165233a4 72my $childpid = fork();
73die "fork() error, cannot continue" unless defined($childpid);
99618c49 74
75if ($childpid == 0) {
165233a4 76 system("$^X $server_path -p $port > $devnull 2>&1");
77 exit; # just for sure; we should never got here
99618c49 78}
79
80sleep 10; #wait for catalyst application to start
81my $mech = Test::WWW::Mechanize->new;
82$mech->get_ok( "http://localhost:" . $port );
83
84kill 'KILL', $childpid;
165233a4 85
3d3e34a0 86my $server_script = do {
87 open(my $fh, '<', 'script/testapp_server.pl') or die $!;
88 local $/;
89 <$fh>;
90};
91
92ok $server_script =~ qr/CATALYST_SCRIPT_GEN}\s+=\s+(\d+)/,
93 'SCRIPT_GEN found in generated output';
94is $1, $Catalyst::Devel::CATALYST_SCRIPT_GEN, 'Script gen correct';
95
96done_testing;
0f89baa1 97