Re: [PATCH] ExtUtils-{ParseXS,CBuilder} into bleadperl (was: Re: [Module::Build]...
[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 => 41;
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 ], 0 ),
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( { BASEEXT => 'Foo' }, '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 # XXX this test is probably useless now that we can call individual
126 # init_* methods and check the keys in $mm_w32 directly
127 {
128     my $mm_w32 = bless {
129         NAME         => 'TestMM_Win32', 
130         VERSION      => '1.00',
131         PM           => { 'MM_Win32.pm' => 1 },
132     }, 'MM';
133
134     # XXX Hack until we have a proper init method.
135     # Flesh out some necessary keys in the MM object.
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
147     my $s_PM = join( " \\\n\t", sort keys %{$mm_w32->{PM}} );
148     my $k_PM = join( " \\\n\t", %{$mm_w32->{PM}} );
149
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     }
163 }
164
165 # path()
166 my $had_path = exists $ENV{PATH};
167 {
168     my @path_eg = ( qw( . .. ), 'C:\\Program Files' );
169     local $ENV{PATH} = join ';', @path_eg;
170     ok( eq_array( [ $MM->path() ], [ @path_eg ] ),
171         'path() [preset]' );
172 }
173 # Bug in Perl.  local $ENV{FOO} will not delete key afterwards.
174 delete $ENV{PATH} unless $had_path;
175
176 # static_lib() should look into that
177 # dynamic_bs() should look into that
178 # dynamic_lib() should look into that
179
180 # init_linker
181 {
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' );
191 }
192
193 # canonpath()
194 {
195     my $path = 'c:\\Program Files/SomeApp\\Progje.exe';
196     is( $MM->canonpath( $path ), File::Spec->canonpath( $path ),
197             'canonpath() eq File::Spec->canonpath' );
198 }
199
200 # perl_script()
201 my $script_ext  = '';
202 my $script_name = 'mm_w32tmp';
203 SKIP: {
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__
210 EOSCRIPT
211     skip( "Can't write to temp file: $!", 4 )
212         unless close SCRIPT;
213     # now start tests:
214     is( $MM->perl_script( $script_name ), 
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';
220     is( $MM->perl_script( $script_name ), 
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';
226     is( $MM->perl_script( $script_name ), 
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
233     isnt( $MM->perl_script( $script_name ),
234           "${script_name}$script_ext", 
235           "not a perl_script anymore ($script_ext)" );
236     is( $MM->perl_script( $script_name ), undef,
237         "perl_script ($script_ext) returns empty" );
238 }
239 unlink "${script_name}$script_ext" if -f "${script_name}$script_ext";
240
241
242 # xs_o() should look into that
243 # top_targets() should look into that
244
245 # dist_ci() should look into that
246 # dist_core() should look into that
247
248 # pasthru()
249 {
250     my $pastru = "PASTHRU = " . ($Config{make} =~ /^nmake/i ? "-nologo" : "");
251     is( $MM->pasthru(), $pastru, 'pasthru()' );
252 }
253
254 package FakeOut;
255
256 sub TIEHANDLE {
257         bless(\(my $scalar), $_[0]);
258 }
259
260 sub PRINT {
261         my $self = shift;
262         $$self .= shift;
263 }
264
265 __END__
266
267 =head1 NAME
268
269 MM_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
284 20011228 Abe Timmerman <abe@ztreet.demon.nl>
285
286 =cut