Win32 compatibility fix:
[catagits/Catalyst-Devel.git] / t / generated_app.t
CommitLineData
ad9d93fc 1use strict;
2use warnings;
0d4859fc 3use lib ();
4c709311 4use Cwd qw( abs_path );
5use File::Temp qw/ tempdir /;
0f89baa1 6use File::Spec;
a73b3971 7use FindBin qw/$Bin/;
3d3e34a0 8use Catalyst::Devel;
4c709311 9use Catalyst::Helper;
10use Test::More;
29ac6b9f 11use Config;
4c709311 12
13eval "use IPC::Run3";
14plan skip_all => 'These tests require IPC::Run3' if $@;
15
16my $share_dir = abs_path('share');
17plan skip_all => "No share dir at $share_dir!"
18 unless -d $share_dir;
19
20$ENV{CATALYST_DEVEL_SHAREDIR} = $share_dir;
99618c49 21
0d4859fc 22my $dir = tempdir(CLEANUP => 1);
165233a4 23my $devnull = File::Spec->devnull;
ad9d93fc 24
15f460a5 25diag "Generated app is in $dir";
91497b69 26
4c709311 27chdir $dir or die "Cannot chdir to $dir: $!";
28
ad9d93fc 29{
4c709311 30 open my $fh, '>', $devnull or die "Cannot write to $devnull: $!";
31
32 local *STDOUT = $fh;
33
34 my $helper = Catalyst::Helper->new(
35 {
36 name => 'TestApp',
37 }
38 );
39
40 $helper->mk_app('TestApp');
ad9d93fc 41}
0d4859fc 42
4c709311 43my $app_dir = File::Spec->catdir($dir, 'TestApp');
44chdir($app_dir) or die "Cannot chdir to $app_dir: $!";
0d4859fc 45lib->import(File::Spec->catdir($dir, 'TestApp', 'lib'));
ad9d93fc 46
ad9d93fc 47my @files = qw|
48 Makefile.PL
2cb998f9 49 testapp.conf
91497b69 50 lib/TestApp.pm
51 lib/TestApp/Controller/Root.pm
52 README
53 Changes
54 t/01app.t
55 t/02pod.t
56 t/03podcoverage.t
57 root/static/images/catalyst_logo.png
58 root/static/images/btn_120x50_built.png
59 root/static/images/btn_120x50_built_shadow.png
60 root/static/images/btn_120x50_powered.png
61 root/static/images/btn_120x50_powered_shadow.png
62 root/static/images/btn_88x31_built.png
63 root/static/images/btn_88x31_built_shadow.png
64 root/static/images/btn_88x31_powered.png
65 root/static/images/btn_88x31_powered_shadow.png
66 root/favicon.ico
67 Makefile.PL
68 script/testapp_cgi.pl
69 script/testapp_fastcgi.pl
70 script/testapp_server.pl
71 script/testapp_test.pl
72 script/testapp_create.pl
ad9d93fc 73|;
74
a73b3971 75foreach my $fn (map { File::Spec->catdir(@$_) } map { [ split /\// ] } @files) {
76 test_fn($fn);
ad9d93fc 77}
a73b3971 78create_ok($_, 'My' . $_) for qw/Model View Controller/;
ad9d93fc 79
4c709311 80command_ok( [ $^X, 'Makefile.PL' ] );
15f460a5 81ok -e "Makefile", "Makefile generated";
29ac6b9f 82#NOTE: do not assume that 'make' is always 'make' as e.g. Win32/strawberry perl uses 'dmake'
83command_ok( [ ($Config{make} || 'make') ] );
91497b69 84
41cebeb1 85run_generated_component_tests();
86
3d3e34a0 87my $server_script = do {
15f460a5 88 open(my $fh, '<', File::Spec->catdir(qw/script testapp_server.pl/)) or fail $!;
3d3e34a0 89 local $/;
90 <$fh>;
91};
92
15f460a5 93ok $server_script;
3d3e34a0 94ok $server_script =~ qr/CATALYST_SCRIPT_GEN}\s+=\s+(\d+)/,
95 'SCRIPT_GEN found in generated output';
96is $1, $Catalyst::Devel::CATALYST_SCRIPT_GEN, 'Script gen correct';
97
91497b69 98chdir('/');
3d3e34a0 99done_testing;
a73b3971 100
4c709311 101sub command_ok {
102 my $cmd = shift;
103 my $desc = shift;
104
105 my $stdout;
106 my $stderr;
107 run3( $cmd, \undef, \$stdout, \$stderr );
108
109 $desc ||= "Exit status ok for '@{$cmd}'";
110 unless ( is $? >> 8, 0, $desc ) {
111 diag "STDOUT:\n$stdout" if defined $stdout;
112 diag "STDERR:\n$stderr" if defined $stderr;
113 }
114}
115
a73b3971 116sub runperl {
117 my $comment = pop @_;
4c709311 118 command_ok( [ $^X, '-I', File::Spec->catdir($Bin, '..', 'lib'), @_ ], $comment );
a73b3971 119}
120
41cebeb1 121my @generated_component_tests;
122
a73b3971 123sub test_fn {
a73b3971 124 my $fn = shift;
125 ok -r $fn, "Have $fn in generated app";
126 if ($fn =~ /script/) {
29ac6b9f 127 SKIP: {
128 skip 'Executable file flag test does not make sense on Win32', 1 if ($^O eq 'MSWin32');
129 ok -x $fn, "$fn is executable";
130 }
a73b3971 131 }
132 if ($fn =~ /\.p[ml]$/) {
133 runperl( '-c', $fn, "$fn compiles" );
134 }
41cebeb1 135 # Save these till later as Catalyst::Test will only be loaded once :-/
136 push @generated_component_tests, $fn
137 if $fn =~ /\.t$/;
138}
139
140sub run_generated_component_tests {
e3eb9f88 141 local $ENV{TEST_POD} = 1;
142 local $ENV{CATALYST_DEBUG} = 0;
41cebeb1 143 foreach my $fn (@generated_component_tests) {
a73b3971 144 subtest "Generated app test: $fn", sub {
145 require $fn;
146 };
147 }
148}
149
150sub create_ok {
151 my ($type, $name) = @_;
152 runperl( File::Spec->catdir('script', 'testapp_create.pl'), $type, $name,
153 "'script/testapp_create.pl $type $name' ok");
4c709311 154 test_fn(File::Spec->catdir('t', sprintf("%s_%s.t", lc $type, $name)));
a73b3971 155}