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