Merge changes from CPAN's EU:MM 6.30_01.
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / MM_Win32.t
CommitLineData
39234879 1#!/usr/bin/perl
a9200272 2
3BEGIN {
39234879 4 if( $ENV{PERL_CORE} ) {
5 chdir 't' if -d 't';
6 @INC = '../lib';
7 }
f6d6199c 8 else {
9 unshift @INC, 't/lib';
10 }
a9200272 11}
39234879 12chdir 't';
a9200272 13
f6d6199c 14use strict;
a9200272 15use Test::More;
16
17BEGIN {
18 if ($^O =~ /MSWin32/i) {
7292dc67 19 plan tests => 41;
a9200272 20 } else {
f49b7d07 21 plan skip_all => 'This is not Win32';
a9200272 22 }
23}
24
25use Config;
26use File::Spec;
27use File::Basename;
f6d6199c 28use ExtUtils::MM;
a9200272 29
30require_ok( 'ExtUtils::MM_Win32' );
31
f6d6199c 32# Dummy MM object until we have a real MM init method.
33my $MM = bless {
34 DIR => [],
35 NOECHO => '@',
e0678a30 36 XS => {},
f6d6199c 37 MAKEFILE => 'Makefile',
38 RM_RF => 'rm -rf',
39 MV => 'mv',
40 }, 'MM';
a9200272 41
a9200272 42
43# replace_manpage_separator() => tr|/|.|s ?
44{
45 my $man = 'a/path/to//something';
46 ( my $replaced = $man ) =~ tr|/|.|s;
f6d6199c 47 is( $MM->replace_manpage_separator( $man ),
a9200272 48 $replaced, 'replace_manpage_separator()' );
49}
50
51# maybe_command()
52SKIP: {
53 skip( '$ENV{COMSPEC} not set', 2 )
54 unless $ENV{COMSPEC} =~ m!((?:[a-z]:)?[^|<>]+)!i;
55 my $comspec = $1;
f6d6199c 56 is( $MM->maybe_command( $comspec ),
a9200272 57 $comspec, 'COMSPEC is a maybe_command()' );
58 ( my $comspec2 = $comspec ) =~ s|\..{3}$||;
f6d6199c 59 like( $MM->maybe_command( $comspec2 ),
a9200272 60 qr/\Q$comspec/i,
61 'maybe_command() without extension' );
62}
f6d6199c 63
64my $had_pathext = exists $ENV{PATHEXT};
a9200272 65{
66 local $ENV{PATHEXT} = '.exe';
f6d6199c 67 ok( ! $MM->maybe_command( 'not_a_command.com' ),
a9200272 68 'not a maybe_command()' );
69}
f6d6199c 70# Bug in Perl. local $ENV{FOO} won't delete the key afterward.
71delete $ENV{PATHEXT} unless $had_pathext;
a9200272 72
73# file_name_is_absolute() [Does not support UNC-paths]
74{
f6d6199c 75 ok( $MM->file_name_is_absolute( 'C:/' ),
a9200272 76 'file_name_is_absolute()' );
f6d6199c 77 ok( ! $MM->file_name_is_absolute( 'some/path/' ),
a9200272 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 );
5dca256e 87 like( $MM->find_perl( $], [ $perl ], [ $path ], 0 ),
a9200272 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
f6d6199c 95 is( $MM->catdir( @path_eg ),
a9200272 96 'C:\\trick\\dir\\now_OK', 'catdir()' );
f6d6199c 97 is( $MM->catdir( @path_eg ),
a9200272 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
f6d6199c 104 is( $MM->catfile( @path_eg ),
a9200272 105 'C:\\trick\\dir\\now_OK\\file.ext', 'catfile()' );
106
f6d6199c 107 is( $MM->catfile( @path_eg ),
a9200272 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?
60537fc0 113# qw( TOUCH CHMOD CP RM_F RM_RF MV NOOP TEST_F LD AR LDLOADLIBS DEV_NUL )
a9200272 114{
30361541 115 my $mm_w32 = bless( { BASEEXT => 'Foo' }, 'MM' );
a9200272 116 $mm_w32->init_others();
117 my @keys = qw( TOUCH CHMOD CP RM_F RM_RF MV NOOP
60537fc0 118 TEST_F LD AR LDLOADLIBS DEV_NULL );
a9200272 119 for my $key ( @keys ) {
120 ok( $mm_w32->{ $key }, "init_others: $key" );
121 }
122}
123
124# constants()
479d2113 125# XXX this test is probably useless now that we can call individual
126# init_* methods and check the keys in $mm_w32 directly
a9200272 127{
128 my $mm_w32 = bless {
129 NAME => 'TestMM_Win32',
130 VERSION => '1.00',
a9200272 131 PM => { 'MM_Win32.pm' => 1 },
132 }, 'MM';
39234879 133
134 # XXX Hack until we have a proper init method.
135 # Flesh out some necessary keys in the MM object.
479d2113 136 @{$mm_w32}{qw(XS MAN1PODS MAN3PODS)} = ({}) x 3;
137 @{$mm_w32}{qw(C O_FILES H)} = ([]) x 3;
138 @{$mm_w32}{qw(PARENT_NAME)} = ('') x 3;
139 $mm_w32->{FULLEXT} = 'TestMM_Win32';
140 $mm_w32->{BASEEXT} = 'TestMM_Win32';
141
142 $mm_w32->init_VERSION;
143 $mm_w32->init_linker;
144 $mm_w32->init_INST;
145 $mm_w32->init_xs;
146
a9200272 147 my $s_PM = join( " \\\n\t", sort keys %{$mm_w32->{PM}} );
148 my $k_PM = join( " \\\n\t", %{$mm_w32->{PM}} );
149
479d2113 150 my $constants = $mm_w32->constants;
151
152 foreach my $regex (
153 qr|^NAME \s* = \s* TestMM_Win32 \s* $|xms,
154 qr|^VERSION \s* = \s* 1\.00 \s* $|xms,
155 qr|^MAKEMAKER \s* = \s* \Q$INC{'ExtUtils/MakeMaker.pm'}\E \s* $|xms,
156 qr|^MM_VERSION \s* = \s* \Q$ExtUtils::MakeMaker::VERSION\E \s* $|xms,
157 qr|^TO_INST_PM \s* = \s* \Q$s_PM\E \s* $|xms,
158 qr|^PM_TO_BLIB \s* = \s* \Q$k_PM\E \s* $|xms,
159 )
160 {
161 like( $constants, $regex, 'constants() check' );
162 }
a9200272 163}
164
165# path()
2977d345 166my $had_path = exists $ENV{PATH};
a9200272 167{
2977d345 168 my @path_eg = ( qw( . .. ), 'C:\\Program Files' );
169 local $ENV{PATH} = join ';', @path_eg;
170 ok( eq_array( [ $MM->path() ], [ @path_eg ] ),
a9200272 171 'path() [preset]' );
172}
2977d345 173# Bug in Perl. local $ENV{FOO} will not delete key afterwards.
174delete $ENV{PATH} unless $had_path;
a9200272 175
176# static_lib() should look into that
177# dynamic_bs() should look into that
178# dynamic_lib() should look into that
179
479d2113 180# init_linker
a9200272 181{
479d2113 182 my $libperl = File::Spec->catfile('$(PERL_INC)',
183 $Config{libperl} || 'libperl.a');
184 my $export = '$(BASEEXT).def';
185 my $after = '';
186 $MM->init_linker;
187
188 is( $MM->{PERL_ARCHIVE}, $libperl, 'PERL_ARCHIVE' );
189 is( $MM->{PERL_ARCHIVE_AFTER}, $after, 'PERL_ARCHIVE_AFTER' );
190 is( $MM->{EXPORT_LIST}, $export, 'EXPORT_LIST' );
a9200272 191}
192
193# canonpath()
194{
195 my $path = 'c:\\Program Files/SomeApp\\Progje.exe';
f6d6199c 196 is( $MM->canonpath( $path ), File::Spec->canonpath( $path ),
a9200272 197 'canonpath() eq File::Spec->canonpath' );
198}
199
200# perl_script()
201my $script_ext = '';
202my $script_name = 'mm_w32tmp';
203SKIP: {
204 local *SCRIPT;
205 skip( "Can't create temp file: $!", 4 )
206 unless open SCRIPT, "> $script_name";
207 print SCRIPT <<'EOSCRIPT';
208#! perl
209__END__
210EOSCRIPT
211 skip( "Can't write to temp file: $!", 4 )
212 unless close SCRIPT;
213 # now start tests:
f6d6199c 214 is( $MM->perl_script( $script_name ),
a9200272 215 "${script_name}$script_ext", "perl_script ($script_ext)" );
216
217 skip( "Can't rename temp file: $!", 3 )
218 unless rename $script_name, "${script_name}.pl";
219 $script_ext = '.pl';
f6d6199c 220 is( $MM->perl_script( $script_name ),
a9200272 221 "${script_name}$script_ext", "perl_script ($script_ext)" );
222
223 skip( "Can't rename temp file: $!", 2 )
224 unless rename "${script_name}$script_ext", "${script_name}.bat";
225 $script_ext = '.bat';
f6d6199c 226 is( $MM->perl_script( $script_name ),
a9200272 227 "${script_name}$script_ext", "perl_script ($script_ext)" );
228
229 skip( "Can't rename temp file: $!", 1 )
230 unless rename "${script_name}$script_ext", "${script_name}.noscript";
231 $script_ext = '.noscript';
232
f6d6199c 233 isnt( $MM->perl_script( $script_name ),
a9200272 234 "${script_name}$script_ext",
235 "not a perl_script anymore ($script_ext)" );
f6d6199c 236 is( $MM->perl_script( $script_name ), undef,
a9200272 237 "perl_script ($script_ext) returns empty" );
238}
239unlink "${script_name}$script_ext" if -f "${script_name}$script_ext";
240
241
a9200272 242# xs_o() should look into that
243# top_targets() should look into that
244
a9200272 245# dist_ci() should look into that
246# dist_core() should look into that
247
248# pasthru()
249{
071e6b84 250 my $pastru = "PASTHRU = " . ($Config{make} =~ /^nmake/i ? "-nologo" : "");
251 is( $MM->pasthru(), $pastru, 'pasthru()' );
a9200272 252}
253
254package FakeOut;
255
256sub TIEHANDLE {
257 bless(\(my $scalar), $_[0]);
258}
259
260sub PRINT {
261 my $self = shift;
262 $$self .= shift;
263}
264
265__END__
266
267=head1 NAME
268
269MM_Win32.t - Tests for ExtUtils::MM_Win32
270
271=head1 TODO
272
273 - Methods to still be checked:
274 # static_lib() should look into that
275 # dynamic_bs() should look into that
276 # dynamic_lib() should look into that
277 # xs_o() should look into that
278 # top_targets() should look into that
279 # dist_ci() should look into that
280 # dist_core() should look into that
281
282=head1 AUTHOR
283
28420011228 Abe Timmerman <abe@ztreet.demon.nl>
285
286=cut