Upgrade to ExtUtils::MakeMaker 6.37_02
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / basic.t
1 #!/usr/bin/perl -w
2
3 # This test puts MakeMaker through the paces of a basic perl module
4 # build, test and installation of the Big::Fat::Dummy module.
5
6 BEGIN {
7     if( $ENV{PERL_CORE} ) {
8         chdir 't' if -d 't';
9         @INC = ('../lib', 'lib');
10     }
11     else {
12         unshift @INC, 't/lib';
13     }
14 }
15
16 use strict;
17 use Config;
18 use ExtUtils::MakeMaker;
19
20 use Test::More tests => 83;
21 use MakeMaker::Test::Utils;
22 use MakeMaker::Test::Setup::BFD;
23 use File::Find;
24 use File::Spec;
25 use File::Path;
26
27 # 'make disttest' sets a bunch of environment variables which interfere
28 # with our testing.
29 delete @ENV{qw(PREFIX LIB MAKEFLAGS)};
30
31 my $perl = which_perl();
32 my $Is_VMS = $^O eq 'VMS';
33
34 # GNV logical interferes with testing
35 $ENV{'bin'} = '[.bin]' if $Is_VMS;
36
37 chdir 't';
38
39 perl_lib;
40
41 my $Touch_Time = calibrate_mtime();
42
43 $| = 1;
44
45 ok( setup_recurs(), 'setup' );
46 END {
47     ok( chdir File::Spec->updir );
48     ok( teardown_recurs(), 'teardown' );
49 }
50
51 ok( chdir('Big-Dummy'), "chdir'd to Big-Dummy" ) ||
52   diag("chdir failed: $!");
53
54 my @mpl_out = run(qq{$perl Makefile.PL "PREFIX=../dummy-install"});
55 END { rmtree '../dummy-install'; }
56
57 cmp_ok( $?, '==', 0, 'Makefile.PL exited with zero' ) ||
58   diag(@mpl_out);
59
60 my $makefile = makefile_name();
61 ok( grep(/^Writing $makefile for Big::Dummy/, 
62          @mpl_out) == 1,
63                                            'Makefile.PL output looks right');
64
65 ok( grep(/^Current package is: main$/,
66          @mpl_out) == 1,
67                                            'Makefile.PL run in package main');
68
69 ok( -e $makefile,       'Makefile exists' );
70
71 # -M is flakey on VMS
72 my $mtime = (stat($makefile))[9];
73 cmp_ok( $Touch_Time, '<=', $mtime,  '  its been touched' );
74
75 END { unlink makefile_name(), makefile_backup() }
76
77 my $make = make_run();
78
79 {
80     # Supress 'make manifest' noise
81     local $ENV{PERL_MM_MANIFEST_VERBOSE} = 0;
82     my $manifest_out = run("$make manifest");
83     ok( -e 'MANIFEST',      'make manifest created a MANIFEST' );
84     ok( -s 'MANIFEST',      '  its not empty' );
85 }
86
87 END { unlink 'MANIFEST'; }
88
89
90 my $ppd_out = run("$make ppd");
91 is( $?, 0,                      '  exited normally' ) || diag $ppd_out;
92 ok( open(PPD, 'Big-Dummy.ppd'), '  .ppd file generated' );
93 my $ppd_html;
94 { local $/; $ppd_html = <PPD> }
95 close PPD;
96 like( $ppd_html, qr{^<SOFTPKG NAME="Big-Dummy" VERSION="0,01,0,0">}m, 
97                                                            '  <SOFTPKG>' );
98 like( $ppd_html, qr{^\s*<TITLE>Big-Dummy</TITLE>}m,        '  <TITLE>'   );
99 like( $ppd_html, qr{^\s*<ABSTRACT>Try "our" hot dog's</ABSTRACT>}m,         
100                                                            '  <ABSTRACT>');
101 like( $ppd_html, 
102       qr{^\s*<AUTHOR>Michael G Schwern &lt;schwern\@pobox.com&gt;</AUTHOR>}m,
103                                                            '  <AUTHOR>'  );
104 like( $ppd_html, qr{^\s*<IMPLEMENTATION>}m,          '  <IMPLEMENTATION>');
105 like( $ppd_html, qr{^\s*<DEPENDENCY NAME="strict" VERSION="0,0,0,0" />}m,
106                                                            '  <DEPENDENCY>' );
107 like( $ppd_html, qr{^\s*<OS NAME="$Config{osname}" />}m,
108                                                            '  <OS>'      );
109 my $archname = $Config{archname};
110 $archname .= "-". substr($Config{version},0,3) if $] >= 5.008;
111 like( $ppd_html, qr{^\s*<ARCHITECTURE NAME="$archname" />}m,
112                                                            '  <ARCHITECTURE>');
113 like( $ppd_html, qr{^\s*<CODEBASE HREF="" />}m,            '  <CODEBASE>');
114 like( $ppd_html, qr{^\s*</IMPLEMENTATION>}m,           '  </IMPLEMENTATION>');
115 like( $ppd_html, qr{^\s*</SOFTPKG>}m,                      '  </SOFTPKG>');
116 END { unlink 'Big-Dummy.ppd' }
117
118
119 my $test_out = run("$make test");
120 like( $test_out, qr/All tests successful/, 'make test' );
121 is( $?, 0,                                 '  exited normally' ) || 
122     diag $test_out;
123
124 # Test 'make test TEST_VERBOSE=1'
125 my $make_test_verbose = make_macro($make, 'test', TEST_VERBOSE => 1);
126 $test_out = run("$make_test_verbose");
127 like( $test_out, qr/ok \d+ - TEST_VERBOSE/, 'TEST_VERBOSE' );
128 like( $test_out, qr/All tests successful/,  '  successful' );
129 is( $?, 0,                                  '  exited normally' ) ||
130     diag $test_out;
131
132
133 my $install_out = run("$make install");
134 is( $?, 0, 'install' ) || diag $install_out;
135 like( $install_out, qr/^Installing /m );
136 like( $install_out, qr/^Writing /m );
137
138 ok( -r '../dummy-install',     '  install dir created' );
139 my %files = ();
140 find( sub { 
141     # do it case-insensitive for non-case preserving OSs
142     my $file = lc $_;
143
144     # VMS likes to put dots on the end of things that don't have them.
145     $file =~ s/\.$// if $Is_VMS;
146
147     $files{$file} = $File::Find::name; 
148 }, '../dummy-install' );
149 ok( $files{'dummy.pm'},     '  Dummy.pm installed' );
150 ok( $files{'liar.pm'},      '  Liar.pm installed'  );
151 ok( $files{'program'},      '  program installed'  );
152 ok( $files{'.packlist'},    '  packlist created'   );
153 ok( $files{'perllocal.pod'},'  perllocal.pod created' );
154
155
156 SKIP: {
157     skip 'VMS install targets do not preserve $(PREFIX)', 9 if $Is_VMS;
158
159     $install_out = run("$make install PREFIX=elsewhere");
160     is( $?, 0, 'install with PREFIX override' ) || diag $install_out;
161     like( $install_out, qr/^Installing /m );
162     like( $install_out, qr/^Writing /m );
163
164     ok( -r 'elsewhere',     '  install dir created' );
165     %files = ();
166     find( sub { $files{$_} = $File::Find::name; }, 'elsewhere' );
167     ok( $files{'Dummy.pm'},     '  Dummy.pm installed' );
168     ok( $files{'Liar.pm'},      '  Liar.pm installed'  );
169     ok( $files{'program'},      '  program installed'  );
170     ok( $files{'.packlist'},    '  packlist created'   );
171     ok( $files{'perllocal.pod'},'  perllocal.pod created' );
172     rmtree('elsewhere');
173 }
174
175
176 SKIP: {
177     skip 'VMS install targets do not preserve $(DESTDIR)', 11 if $Is_VMS;
178
179     $install_out = run("$make install PREFIX= DESTDIR=other");
180     is( $?, 0, 'install with DESTDIR' ) || 
181         diag $install_out;
182     like( $install_out, qr/^Installing /m );
183     like( $install_out, qr/^Writing /m );
184
185     ok( -d 'other',  '  destdir created' );
186     %files = ();
187     my $perllocal;
188     find( sub { 
189         $files{$_} = $File::Find::name;
190     }, 'other' );
191     ok( $files{'Dummy.pm'},     '  Dummy.pm installed' );
192     ok( $files{'Liar.pm'},      '  Liar.pm installed'  );
193     ok( $files{'program'},      '  program installed'  );
194     ok( $files{'.packlist'},    '  packlist created'   );
195     ok( $files{'perllocal.pod'},'  perllocal.pod created' );
196
197     ok( open(PERLLOCAL, $files{'perllocal.pod'} ) ) || 
198         diag("Can't open $files{'perllocal.pod'}: $!");
199     { local $/;
200       unlike(<PERLLOCAL>, qr/other/, 'DESTDIR should not appear in perllocal');
201     }
202     close PERLLOCAL;
203
204 # TODO not available in the min version of Test::Harness we require
205 #    ok( open(PACKLIST, $files{'.packlist'} ) ) || 
206 #        diag("Can't open $files{'.packlist'}: $!");
207 #    { local $/;
208 #      local $TODO = 'DESTDIR still in .packlist';
209 #      unlike(<PACKLIST>, qr/other/, 'DESTDIR should not appear in .packlist');
210 #    }
211 #    close PACKLIST;
212
213     rmtree('other');
214 }
215
216
217 SKIP: {
218     skip 'VMS install targets do not preserve $(PREFIX)', 10 if $Is_VMS;
219
220     $install_out = run("$make install PREFIX=elsewhere DESTDIR=other/");
221     is( $?, 0, 'install with PREFIX override and DESTDIR' ) || 
222         diag $install_out;
223     like( $install_out, qr/^Installing /m );
224     like( $install_out, qr/^Writing /m );
225
226     ok( !-d 'elsewhere',       '  install dir not created' );
227     ok( -d 'other/elsewhere',  '  destdir created' );
228     %files = ();
229     find( sub { $files{$_} = $File::Find::name; }, 'other/elsewhere' );
230     ok( $files{'Dummy.pm'},     '  Dummy.pm installed' );
231     ok( $files{'Liar.pm'},      '  Liar.pm installed'  );
232     ok( $files{'program'},      '  program installed'  );
233     ok( $files{'.packlist'},    '  packlist created'   );
234     ok( $files{'perllocal.pod'},'  perllocal.pod created' );
235     rmtree('other');
236 }
237
238
239 my $dist_test_out = run("$make disttest");
240 is( $?, 0, 'disttest' ) || diag($dist_test_out);
241
242 # Test META.yml generation
243 use ExtUtils::Manifest qw(maniread);
244
245 my $distdir  = 'Big-Dummy-0.01';
246 $distdir =~ s/\./_/g if $Is_VMS;
247 my $meta_yml = "$distdir/META.yml";
248
249 ok( !-f 'META.yml',  'META.yml not written to source dir' );
250 ok( -f $meta_yml,    'META.yml written to dist dir' );
251 ok( !-e "META_new.yml", 'temp META.yml file not left around' );
252
253 ok open META, $meta_yml or diag $!;
254 my $meta = join '', <META>;
255 ok close META;
256
257 is $meta, <<"END";
258 --- #YAML:1.0
259 name:                Big-Dummy
260 version:             0.01
261 abstract:            Try "our" hot dog's
262 license:             ~
263 author:              
264     - Michael G Schwern <schwern\@pobox.com>
265 generated_by:        ExtUtils::MakeMaker version $ExtUtils::MakeMaker::VERSION
266 distribution_type:   module
267 requires:     
268     strict:                        0
269 meta-spec:
270     url:     http://module-build.sourceforge.net/META-spec-v1.3.html
271     version: 1.3
272 END
273
274 my $manifest = maniread("$distdir/MANIFEST");
275 # VMS is non-case preserving, so we can't know what the MANIFEST will
276 # look like. :(
277 _normalize($manifest);
278 is( $manifest->{'meta.yml'}, 'Module meta-data (added by MakeMaker)' );
279
280
281 # Test NO_META META.yml suppression
282 unlink $meta_yml;
283 ok( !-f $meta_yml,   'META.yml deleted' );
284 @mpl_out = run(qq{$perl Makefile.PL "NO_META=1"});
285 cmp_ok( $?, '==', 0, 'Makefile.PL exited with zero' ) || diag(@mpl_out);
286 my $distdir_out = run("$make distdir");
287 is( $?, 0, 'distdir' ) || diag($distdir_out);
288 ok( !-f $meta_yml,   'META.yml generation suppressed by NO_META' );
289
290
291 # Make sure init_dirscan doesn't go into the distdir
292 @mpl_out = run(qq{$perl Makefile.PL "PREFIX=../dummy-install"});
293
294 cmp_ok( $?, '==', 0, 'Makefile.PL exited with zero' ) || diag(@mpl_out);
295
296 ok( grep(/^Writing $makefile for Big::Dummy/, @mpl_out) == 1,
297                                 'init_dirscan skipped distdir') || 
298   diag(@mpl_out);
299
300 # I know we'll get ignored errors from make here, that's ok.
301 # Send STDERR off to oblivion.
302 open(SAVERR, ">&STDERR") or die $!;
303 open(STDERR, ">".File::Spec->devnull) or die $!;
304
305 my $realclean_out = run("$make realclean");
306 is( $?, 0, 'realclean' ) || diag($realclean_out);
307
308 open(STDERR, ">&SAVERR") or die $!;
309 close SAVERR;
310
311
312 sub _normalize {
313     my $hash = shift;
314
315     while(my($k,$v) = each %$hash) {
316         delete $hash->{$k};
317         $hash->{lc $k} = $v;
318     }
319 }