MakeMaker sync 5.48_03 -> 5.53_01
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / MM_Win32.t
1 #!/usr/bin/perl
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't' if -d 't';
6         @INC = '../lib';
7     }
8     else {
9         unshift @INC, 't/lib';
10     }
11 }
12 chdir 't';
13
14 use strict;
15 use Test::More;
16
17 BEGIN {
18         if ($^O =~ /MSWin32/i) {
19                 plan tests => 40;
20         } else {
21                 plan skip_all => 'This is not Win32';
22         }
23 }
24
25 use Config;
26 use File::Spec;
27 use File::Basename;
28 use ExtUtils::MM;
29
30 require_ok( 'ExtUtils::MM_Win32' );
31
32 # Dummy MM object until we have a real MM init method.
33 my $MM = bless {
34                 DIR     => [],
35                 NOECHO  => '@',
36                 XS      => '',
37                 MAKEFILE => 'Makefile',
38                 RM_RF   => 'rm -rf',
39                 MV      => 'mv',
40                }, 'MM';
41
42
43 # replace_manpage_separator() => tr|/|.|s ?
44 {
45     my $man = 'a/path/to//something';
46     ( my $replaced = $man ) =~ tr|/|.|s;
47     is( $MM->replace_manpage_separator( $man ),
48         $replaced, 'replace_manpage_separator()' );
49 }
50
51 # maybe_command()
52 SKIP: {
53     skip( '$ENV{COMSPEC} not set', 2 )
54         unless $ENV{COMSPEC} =~ m!((?:[a-z]:)?[^|<>]+)!i;
55     my $comspec = $1;
56     is( $MM->maybe_command( $comspec ), 
57         $comspec, 'COMSPEC is a maybe_command()' );
58     ( my $comspec2 = $comspec ) =~ s|\..{3}$||;
59     like( $MM->maybe_command( $comspec2 ), 
60           qr/\Q$comspec/i, 
61           'maybe_command() without extension' );
62 }
63
64 my $had_pathext = exists $ENV{PATHEXT};
65 {
66     local $ENV{PATHEXT} = '.exe';
67     ok( ! $MM->maybe_command( 'not_a_command.com' ), 
68         'not a maybe_command()' );
69 }
70 # Bug in Perl.  local $ENV{FOO} won't delete the key afterward.
71 delete $ENV{PATHEXT} unless $had_pathext;
72
73 # file_name_is_absolute() [Does not support UNC-paths]
74 {
75     ok( $MM->file_name_is_absolute( 'C:/' ), 
76         'file_name_is_absolute()' );
77     ok( ! $MM->file_name_is_absolute( 'some/path/' ),
78         'not file_name_is_absolute()' );
79
80 }
81
82 # find_perl() 
83 # Should be able to find running perl... $^X is OK on Win32
84 {
85     my $my_perl = $1 if $^X  =~ /(.*)/; # are we in -T or -t?
86     my( $perl, $path ) = fileparse( $my_perl );
87     like( $MM->find_perl( $], [ $perl ], [ $path ] ), 
88           qr/^\Q$my_perl\E$/i, 'find_perl() finds this perl' );
89 }
90
91 # catdir() (calls MM_Win32->canonpath)
92 {
93     my @path_eg = qw( c: trick dir/now_OK );
94
95     is( $MM->catdir( @path_eg ), 
96          'C:\\trick\\dir\\now_OK', 'catdir()' );
97     is( $MM->catdir( @path_eg ), 
98         File::Spec->catdir( @path_eg ), 
99         'catdir() eq File::Spec->catdir()' );
100
101 # catfile() (calls MM_Win32->catdir)
102     push @path_eg, 'file.ext';
103
104     is( $MM->catfile( @path_eg ),
105         'C:\\trick\\dir\\now_OK\\file.ext', 'catfile()' );
106
107     is( $MM->catfile( @path_eg ), 
108         File::Spec->catfile( @path_eg ), 
109         'catfile() eq File::Spec->catfile()' );
110 }
111
112 # init_others(): check if all keys are created and set?
113 # qw( TOUCH CHMOD CP RM_F RM_RF MV NOOP TEST_F LD AR LDLOADLIBS DEV_NUL )
114 {
115     my $mm_w32 = bless( {}, 'MM' );
116     $mm_w32->init_others();
117     my @keys = qw( TOUCH CHMOD CP RM_F RM_RF MV NOOP 
118                    TEST_F LD AR LDLOADLIBS DEV_NULL );
119     for my $key ( @keys ) {
120         ok( $mm_w32->{ $key }, "init_others: $key" );
121     }
122 }
123
124 # constants()
125 {
126     my $mm_w32 = bless {
127         NAME         => 'TestMM_Win32', 
128         VERSION      => '1.00',
129         VERSION_FROM => 'TestMM_Win32',
130         PM           => { 'MM_Win32.pm' => 1 },
131     }, 'MM';
132
133     # XXX Hack until we have a proper init method.
134     # Flesh out some necessary keys in the MM object.
135     foreach my $key (qw(XS C O_FILES H HTMLLIBPODS HTMLSCRIPTPODS
136                         MAN1PODS MAN3PODS PARENT_NAME)) {
137         $mm_w32->{$key} = '';
138     }
139     my $s_PM = join( " \\\n\t", sort keys %{$mm_w32->{PM}} );
140     my $k_PM = join( " \\\n\t", %{$mm_w32->{PM}} );
141
142     like( $mm_w32->constants(),
143           qr|^NAME\ =\ TestMM_Win32\s+VERSION\ =\ 1\.00.+
144              MAKEMAKER\ =\ \Q$INC{'ExtUtils/MakeMaker.pm'}\E\s+
145              MM_VERSION\ =\ \Q$ExtUtils::MakeMaker::VERSION\E.+
146              VERSION_FROM\ =\ TestMM_Win32.+
147              TO_INST_PM\ =\ \Q$s_PM\E\s+
148              PM_TO_BLIB\ =\ \Q$k_PM\E
149           |xs, 'constants()' );
150
151 }
152
153 # path()
154 my $had_path = exists $ENV{PATH};
155 {
156     my @path_eg = ( qw( . .. ), 'C:\\Program Files' );
157     local $ENV{PATH} = join ';', @path_eg;
158     ok( eq_array( [ $MM->path() ], [ @path_eg ] ),
159         'path() [preset]' );
160 }
161 # Bug in Perl.  local $ENV{FOO} will not delete key afterwards.
162 delete $ENV{PATH} unless $had_path;
163
164 # static_lib() should look into that
165 # dynamic_bs() should look into that
166 # dynamic_lib() should look into that
167
168 # clean()
169 {
170     my $clean = $Config{cc} =~ /^gcc/i ? 'dll.base dll.exp' : '*.pdb';
171     like( $MM->clean(), qr/^clean ::\s+\Q-$(RM_F) $clean\E\s+$/m,
172           'clean() Makefile target' );
173 }
174
175 # perl_archive()
176 {
177     my $libperl = $Config{libperl} || 'libperl.a';
178     is( $MM->perl_archive(), File::Spec->catfile('$(PERL_INC)', $libperl ),
179             'perl_archive() should respect libperl setting' );
180 }
181
182 # export_list
183 {
184     my $mm_w32 = bless { BASEEXT => 'someext' }, 'MM';
185     is( $mm_w32->export_list(), 'someext.def', 'export_list()' );
186 }
187
188 # canonpath()
189 {
190     my $path = 'c:\\Program Files/SomeApp\\Progje.exe';
191     is( $MM->canonpath( $path ), File::Spec->canonpath( $path ),
192             'canonpath() eq File::Spec->canonpath' );
193 }
194
195 # perl_script()
196 my $script_ext  = '';
197 my $script_name = 'mm_w32tmp';
198 SKIP: {
199     local *SCRIPT;
200     skip( "Can't create temp file: $!", 4 )
201         unless open SCRIPT, "> $script_name";
202     print SCRIPT <<'EOSCRIPT';
203 #! perl
204 __END__
205 EOSCRIPT
206     skip( "Can't write to temp file: $!", 4 )
207         unless close SCRIPT;
208     # now start tests:
209     is( $MM->perl_script( $script_name ), 
210         "${script_name}$script_ext", "perl_script ($script_ext)" );
211
212     skip( "Can't rename temp file: $!", 3 )
213         unless rename $script_name, "${script_name}.pl";
214     $script_ext = '.pl';
215     is( $MM->perl_script( $script_name ), 
216         "${script_name}$script_ext", "perl_script ($script_ext)" );
217
218     skip( "Can't rename temp file: $!", 2 )
219         unless rename "${script_name}$script_ext", "${script_name}.bat";
220     $script_ext = '.bat';
221     is( $MM->perl_script( $script_name ), 
222         "${script_name}$script_ext", "perl_script ($script_ext)" );
223
224     skip( "Can't rename temp file: $!", 1 )
225         unless rename "${script_name}$script_ext", "${script_name}.noscript";
226     $script_ext = '.noscript';
227
228     isnt( $MM->perl_script( $script_name ),
229           "${script_name}$script_ext", 
230           "not a perl_script anymore ($script_ext)" );
231     is( $MM->perl_script( $script_name ), undef,
232         "perl_script ($script_ext) returns empty" );
233 }
234 unlink "${script_name}$script_ext" if -f "${script_name}$script_ext";
235
236
237 # pm_to_blib()
238 {
239     like( $MM->pm_to_blib(),
240           qr/^pm_to_blib: \Q$(TO_INST_PM)\E.+\Q$(TOUCH) \E\$@\s+$/ms,
241           'pm_to_blib' );
242 }
243
244 # tool_autosplit()
245 {
246     my %attribs = ( MAXLEN => 255 );
247     like( $MM->tool_autosplit( %attribs ),
248           qr/^\#\ Usage:\ \$\(AUTOSPLITFILE\)
249              \ FileToSplit\ AutoDirToSplitInto.+
250              AUTOSPLITFILE\ =\ \$\(PERLRUN\)\ .+
251              \$AutoSplit::Maxlen=$attribs{MAXLEN};
252           /xms,
253           'tool_autosplit()' );
254 }
255
256 # tools_other()
257 {
258     ( my $mm_w32 = bless { }, 'MM' )->init_others();
259         
260     my $bin_sh = ( $Config{make} =~ /^dmake/i 
261                ? "" : ($Config{sh} || 'cmd /c') . "\n" );
262     $bin_sh = "SHELL = $bin_sh" if $bin_sh;
263
264     my $tools = join "\n", map "$_ = $mm_w32->{ $_ }"
265         => qw(CHMOD CP LD MV NOOP RM_F RM_RF TEST_F TOUCH UMASK_NULL DEV_NULL);
266
267     like( $mm_w32->tools_other(),
268           qr/^\Q$bin_sh$tools/m,
269           'tools_other()' );
270 };
271
272 # xs_o() should look into that
273 # top_targets() should look into that
274
275 # manifypods()
276 {
277     my $mm_w32 = bless { NOECHO    => '' }, 'MM';
278     like( $mm_w32->manifypods(),
279           qr/^\nmanifypods :\n\t\$\Q(NOOP)\E\n$/,
280           'manifypods() Makefile target' );
281 }
282
283 # dist_ci() should look into that
284 # dist_core() should look into that
285
286 # pasthru()
287 {
288     my $pastru = "PASTHRU = " . ($Config{make} =~ /^nmake/i ? "-nologo" : "");
289     is( $MM->pasthru(), $pastru, 'pasthru()' );
290 }
291
292 package FakeOut;
293
294 sub TIEHANDLE {
295         bless(\(my $scalar), $_[0]);
296 }
297
298 sub PRINT {
299         my $self = shift;
300         $$self .= shift;
301 }
302
303 __END__
304
305 =head1 NAME
306
307 MM_Win32.t - Tests for ExtUtils::MM_Win32
308
309 =head1 TODO
310
311  - Methods to still be checked:
312  # static_lib() should look into that
313  # dynamic_bs() should look into that
314  # dynamic_lib() should look into that
315  # xs_o() should look into that
316  # top_targets() should look into that
317  # dist_ci() should look into that
318  # dist_core() should look into that
319
320 =head1 AUTHOR
321
322 20011228 Abe Timmerman <abe@ztreet.demon.nl>
323
324 =cut