whitespace and style cleanup
[p5sagit/App-FatPacker.git] / t / pack.t
CommitLineData
edff3fdc 1#!perl
2use strict;
3use warnings FATAL => 'all';
4use Test::More qw(no_plan);
5use File::Basename;
6use File::Copy;
7use File::Path;
55044309 8use File::Temp qw/tempdir/;
2cf9fee2 9use File::Spec;
8a3a89c9 10use Cwd;
edff3fdc 11
12BEGIN { use_ok "App::FatPacker", "" }
13
55044309 14my $keep = $ENV{'FATPACKER_KEEP_TESTDIR'};
15my $tempdir = tempdir($keep ? (CLEANUP => 0) : (CLEANUP => 1));
edff3fdc 16mkpath([<$tempdir/{lib,fatlib}/t/mod>]);
17
18for(<t/mod/*.pm>) {
19 copy $_, "$tempdir/lib/$_" or die "copy failed: $!";
20}
21
8a3a89c9 22my $cwd = getcwd;
edff3fdc 23chdir $tempdir;
24
25my $fp = App::FatPacker->new;
26my $temp_fh = File::Temp->new;
27select $temp_fh;
28$fp->script_command_file;
29print "1;\n";
30select STDOUT;
31close $temp_fh;
32
2cf9fee2 33# make sure we don't pick up things from our created dir
34chdir File::Spec->tmpdir;
35
edff3fdc 36# Packed, now try using it:
37require $temp_fh;
38
39{
40 require t::mod::a;
41 no warnings 'once';
2cf9fee2 42 ok $t::mod::a::foo eq 'bar', "packed script works";
edff3fdc 43}
8a3a89c9 44
5a64a6aa 45{
46
47 ok ref $INC[0], "\$INC[0] is a reference";
48 ok $INC[0]->can( "files" ), "\$INC[0] has a files method";
49
50 my @files = sort $INC[0]->files;
51
15bd679e 52 is_deeply( \@files, [
53 't/mod/a.pm',
54 't/mod/b.pm',
55 't/mod/c.pm',
56 't/mod/cond.pm',
57 ], "\$INC[0]->files returned the files" );
5a64a6aa 58
59}
60
61
2cf9fee2 62if (my $testwith = $ENV{'FATPACKER_TESTWITH'}) {
63 for my $perl (split ' ', $testwith) {
64 my $out = system $perl, '-e',
65 q{alarm 5; require $ARGV[0]; require t::mod::a; exit($t::mod::a::foo eq 'bar' ? 0 : 1)}, $temp_fh;
66 ok !$out, "packed script works with $perl";
5a64a6aa 67
68 $out = system $perl, '-e',
69 q{alarm 5; require $ARGV[0]; exit( (sort $INC[0]->files)[0] eq 't/mod/a.pm' ? 0 : 1 )}, $temp_fh;
70 ok !$out, "\$INC[0]->files works with $perl";
71
2cf9fee2 72 }
73}
55044309 74