Fix bug with generated component classes and an issue with the test
[catagits/Catalyst-Devel.git] / t / generated_app.t
1 use strict;
2 use warnings;
3 use lib ();
4 use File::Temp qw/ tempdir tmpnam /;
5 use File::Spec;
6 use FindBin qw/$Bin/;
7 use Catalyst::Devel;
8
9 my $dir = tempdir(CLEANUP => 1);
10 my $devnull = File::Spec->devnull;
11
12 use Test::More;
13
14 diag "Generated app is in $dir";
15
16 {
17     my $exit;
18     if ($^O eq 'MSWin32') {
19       $exit = system("cd $dir & catalyst TestApp > $devnull 2>&1");
20     }
21     else {
22       $exit = system("cd $dir; catalyst.pl TestApp > $devnull 2>&1");
23     }
24     is $exit, 0, 'Exit status ok';
25 }
26
27 chdir(File::Spec->catdir($dir, 'TestApp'));
28 lib->import(File::Spec->catdir($dir, 'TestApp', 'lib'));
29
30 my @files = qw|
31     Makefile.PL
32     testapp.conf
33     lib/TestApp.pm
34     lib/TestApp/Controller/Root.pm
35     README
36     Changes
37     t/01app.t
38     t/02pod.t
39     t/03podcoverage.t
40     root/static/images/catalyst_logo.png
41     root/static/images/btn_120x50_built.png
42     root/static/images/btn_120x50_built_shadow.png
43     root/static/images/btn_120x50_powered.png
44     root/static/images/btn_120x50_powered_shadow.png
45     root/static/images/btn_88x31_built.png
46     root/static/images/btn_88x31_built_shadow.png
47     root/static/images/btn_88x31_powered.png
48     root/static/images/btn_88x31_powered_shadow.png
49     root/favicon.ico
50     Makefile.PL
51     script/testapp_cgi.pl
52     script/testapp_fastcgi.pl
53     script/testapp_server.pl
54     script/testapp_test.pl
55     script/testapp_create.pl
56 |;
57
58 foreach my $fn (map { File::Spec->catdir(@$_) } map { [ split /\// ] } @files) {
59     test_fn($fn);
60 }
61 create_ok($_, 'My' . $_) for qw/Model View Controller/;
62
63 is system($^X, 'Makefile.PL'), 0, 'Ran Makefile.PL';
64 ok -e "Makefile", "Makefile generated";
65 is system("make"), 0, 'Run make';
66
67 run_generated_component_tests();
68
69 my $server_script = do {
70     open(my $fh, '<', File::Spec->catdir(qw/script testapp_server.pl/)) or fail $!;
71     local $/;
72     <$fh>;
73 };
74
75 ok $server_script;
76 ok $server_script =~ qr/CATALYST_SCRIPT_GEN}\s+=\s+(\d+)/,
77     'SCRIPT_GEN found in generated output';
78 is $1, $Catalyst::Devel::CATALYST_SCRIPT_GEN, 'Script gen correct';
79
80 chdir('/');
81 done_testing;
82
83 sub runperl {
84     my $comment = pop @_;
85     is system($^X, '-I', File::Spec->catdir($Bin, '..', 'lib'), @_), 0, $comment;
86 }
87
88 my @generated_component_tests;
89
90 sub test_fn {
91     local $ENV{TEST_POD} = 1;
92     local $ENV{CATALYST_DEBUG} = 0;
93
94     my $fn = shift;
95     ok -r $fn, "Have $fn in generated app";
96     if ($fn =~ /script/) {
97         ok -x $fn, "$fn is executable";
98     }
99     if ($fn =~ /\.p[ml]$/) {
100         runperl( '-c', $fn, "$fn compiles" );
101     }
102     # Save these till later as Catalyst::Test will only be loaded once :-/
103     push @generated_component_tests, $fn
104         if $fn =~ /\.t$/;
105 }
106
107 sub run_generated_component_tests {
108     foreach my $fn (@generated_component_tests) {
109         subtest "Generated app test: $fn", sub {
110             require $fn;
111         };
112     }
113 }
114
115 sub create_ok {
116     my ($type, $name) = @_;
117     runperl( File::Spec->catdir('script', 'testapp_create.pl'), $type, $name,
118         "'script/testapp_create.pl $type $name' ok");
119     test_fn(File::Spec->catdir('t', sprintf("%s_%s.t", $type, $name)));
120 }