d83032e0d63bb394232572c2ecdea6cac76b6737
[catagits/Catalyst-Devel.git] / t / generated_app.t
1 use strict;
2 use warnings;
3 use lib ();
4 use Cwd qw( abs_path );
5 use File::Spec::Functions qw( devnull catdir catfile updir rel2abs );
6 use File::Temp qw( tempdir );
7 use File::Basename qw( dirname );
8 use Catalyst::Helper;
9 use Test::More;
10 use Config;
11
12 eval "use IPC::Run3";
13 plan skip_all => 'These tests require IPC::Run3' if $@;
14
15 my $helper_lib = abs_path(catdir(dirname($INC{'Catalyst/Helper.pm'}), updir));
16
17 my $share_dir = abs_path('share');
18 plan skip_all => "No share dir at $share_dir!"
19     unless -d $share_dir;
20
21 $ENV{CATALYST_DEVEL_SHAREDIR} = $share_dir;
22 my $instdir = tempdir(CLEANUP => 1);
23
24 my $MAKE = $Config{make} || 'make';
25
26 $ENV{PERL_MM_OPT} = "INSTALL_BASE=$instdir";
27 $ENV{INSTALL_BASE} = $instdir;
28 if ($ENV{MAKEFLAGS}) {
29     $ENV{MAKEFLAGS} =~ s/PREFIX=[^\s]+//;
30     $ENV{MAKEFLAGS} =~ s/INSTALL_BASE=[^\s]+//;
31 }
32
33 my $dir = tempdir(CLEANUP => 1);
34 my $devnull = devnull;
35
36 diag "Generated app is in $dir";
37
38 chdir $dir or die "Cannot chdir to $dir: $!";
39
40 {
41     open my $fh, '>', $devnull or die "Cannot write to $devnull: $!";
42
43     local *STDOUT = $fh;
44
45     my $helper = Catalyst::Helper->new(
46         {
47             name => 'TestApp',
48         }
49     );
50
51     $helper->mk_app('TestApp');
52 }
53
54 my $app_dir = catdir($dir, 'TestApp');
55 chdir($app_dir) or die "Cannot chdir to $app_dir: $!";
56 lib->import(catdir($dir, 'TestApp', 'lib'));
57
58 my @files = qw|
59     Makefile.PL
60     testapp.conf
61     testapp.psgi
62     lib/TestApp.pm
63     lib/TestApp/Controller/Root.pm
64     README
65     Changes
66     t/01app.t
67     t/02pod.t
68     t/03podcoverage.t
69     root/static/images/catalyst_logo.png
70     root/static/images/btn_120x50_built.png
71     root/static/images/btn_120x50_built_shadow.png
72     root/static/images/btn_120x50_powered.png
73     root/static/images/btn_120x50_powered_shadow.png
74     root/static/images/btn_88x31_built.png
75     root/static/images/btn_88x31_built_shadow.png
76     root/static/images/btn_88x31_powered.png
77     root/static/images/btn_88x31_powered_shadow.png
78     root/favicon.ico
79     Makefile.PL
80     script/testapp_cgi.pl
81     script/testapp_fastcgi.pl
82     script/testapp_server.pl
83     script/testapp_test.pl
84     script/testapp_create.pl
85 |;
86
87 foreach my $fn (map { catdir(@$_) } map { [ split qr{/}, $_ ] } @files) {
88     test_fn($fn);
89 }
90 create_ok($_, 'My' . $_) for qw/Model View Controller/;
91
92 command_ok( [ $^X, 'Makefile.PL' ] );
93 ok -e "Makefile", "Makefile generated";
94 command_ok( [ $MAKE ] );
95
96 run_generated_component_tests();
97
98 my $server_script_file = catdir(qw/script testapp_server.pl/);
99 my $server_script = do {
100     open(my $fh, '<', $server_script_file) or fail $!;
101     local $/;
102     <$fh>;
103 };
104
105 ok $server_script;
106 ok $server_script =~ qr/CATALYST_SCRIPT_GEN}\s+=\s+(\d+)/,
107     'SCRIPT_GEN found in generated output';
108 is $1, $Catalyst::Devel::CATALYST_SCRIPT_GEN, 'Script gen correct';
109
110 {
111     open(my $fh, '>', $server_script_file) or fail $!;
112     print $fh "MOO\n";
113 }
114 my $helper = Catalyst::Helper->new(
115     {
116         '.newfiles' => 0,
117         'makefile'  => 0,
118         'scripts'   => 1,
119         name => '.',
120     }
121 );
122 $helper->mk_app( '.' ) or fail;
123
124 my $server_script_new = do {
125     open(my $fh, '<', $server_script_file) or fail $!;
126     local $/;
127     <$fh>;
128 };
129
130 is $server_script, $server_script_new;
131
132 diag "Installed app is in $instdir";
133 command_ok( [ $MAKE, 'install' ] );
134
135 my $inst_app_dir = catdir($instdir);
136 chdir($inst_app_dir) or die "Cannot chdir to $inst_app_dir: $!";
137 lib->import(catdir($instdir, 'lib', 'perl5'));
138
139 my @installed_files = qw|
140     lib/perl5/TestApp.pm
141     lib/perl5/TestApp/testapp.conf
142     lib/perl5/TestApp/Controller/Root.pm
143     lib/perl5/TestApp/root/static/images/catalyst_logo.png
144     lib/perl5/TestApp/root/static/images/btn_120x50_built.png
145     lib/perl5/TestApp/root/static/images/btn_120x50_built_shadow.png
146     lib/perl5/TestApp/root/static/images/btn_120x50_powered.png
147     lib/perl5/TestApp/root/static/images/btn_120x50_powered_shadow.png
148     lib/perl5/TestApp/root/static/images/btn_88x31_built.png
149     lib/perl5/TestApp/root/static/images/btn_88x31_built_shadow.png
150     lib/perl5/TestApp/root/static/images/btn_88x31_powered.png
151     lib/perl5/TestApp/root/static/images/btn_88x31_powered_shadow.png
152     lib/perl5/TestApp/root/favicon.ico
153     bin/testapp_cgi.pl
154     bin/testapp_fastcgi.pl
155     bin/testapp_server.pl
156     bin/testapp_test.pl
157     bin/testapp_create.pl
158 |;
159
160 foreach my $fn (map { catdir(@$_) } map { [ split qr{/}, $_ ] } @installed_files) {
161     my $ffn = catfile($inst_app_dir, $fn);
162     ok -r $ffn, "'$fn' installed in correct location";
163 }
164
165 chdir('/');
166 done_testing;
167
168 sub command_ok {
169     my $cmd = shift;
170     my $desc = shift;
171
172     my $stdout;
173     my $stderr;
174     run3( $cmd, \undef, \$stdout, \$stderr );
175
176     $desc ||= "Exit status ok for '@{$cmd}'";
177     unless ( is $? >> 8, 0, $desc ) {
178         diag "STDOUT:\n$stdout" if defined $stdout;
179         diag "STDERR:\n$stderr" if defined $stderr;
180     }
181 }
182
183 sub runperl {
184     my $comment = pop @_;
185     command_ok( [ $^X, '-I', $helper_lib, @_ ], $comment );
186 }
187
188 my @generated_component_tests;
189
190 sub test_fn {
191     my $fn = shift;
192     ok -r $fn, "Have $fn in generated app";
193     if ($fn =~ /script/) {
194         SKIP: {
195             skip 'Executable file flag test does not make sense on Win32', 1 if ($^O eq 'MSWin32');
196             ok -x $fn, "$fn is executable";
197        }
198     }
199     if ($fn =~ /\.p[ml]$/) {
200         runperl( '-c', $fn, "$fn compiles" );
201     }
202     # Save these till later as Catalyst::Test will only be loaded once :-/
203     push @generated_component_tests, $fn
204         if $fn =~ /\.t$/;
205 }
206
207 sub run_generated_component_tests {
208     local $ENV{TEST_POD} = 1;
209     local $ENV{CATALYST_DEBUG} = 0;
210     foreach my $fn (@generated_component_tests) {
211         my $full_name = rel2abs($fn);
212         subtest "Generated app test: $fn", sub {
213             do $full_name;
214         };
215     }
216 }
217
218 sub create_ok {
219     my ($type, $name) = @_;
220     runperl( catdir('script', 'testapp_create.pl'), $type, $name,
221         "'script/testapp_create.pl $type $name' ok");
222     test_fn( catdir('t', sprintf("%s_%s.t", lc $type, $name)));
223 }