hv_fetchs() support
[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 {
167     ok( eq_array( [ $MM->path() ], [ File::Spec->path ] ),
168         'path() [preset]' );
169 }
170
171 # static_lib() should look into that
172 # dynamic_bs() should look into that
173 # dynamic_lib() should look into that
174
175 # init_linker
176 {
177     my $libperl = File::Spec->catfile('$(PERL_INC)', 
178                                       $Config{libperl} || 'libperl.a');
179     my $export  = '$(BASEEXT).def';
180     my $after   = '';
181     $MM->init_linker;
182
183     is( $MM->{PERL_ARCHIVE},        $libperl,   'PERL_ARCHIVE' );
184     is( $MM->{PERL_ARCHIVE_AFTER},  $after,     'PERL_ARCHIVE_AFTER' );
185     is( $MM->{EXPORT_LIST},         $export,    '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 # xs_o() should look into that
238 # top_targets() should look into that
239
240 # dist_ci() should look into that
241 # dist_core() should look into that
242
243 # pasthru()
244 {
245     my $pastru = "PASTHRU = " . ($Config{make} =~ /^nmake/i ? "-nologo" : "");
246     is( $MM->pasthru(), $pastru, 'pasthru()' );
247 }
248
249 package FakeOut;
250
251 sub TIEHANDLE {
252         bless(\(my $scalar), $_[0]);
253 }
254
255 sub PRINT {
256         my $self = shift;
257         $$self .= shift;
258 }
259
260 __END__
261
262 =head1 NAME
263
264 MM_Win32.t - Tests for ExtUtils::MM_Win32
265
266 =head1 TODO
267
268  - Methods to still be checked:
269  # static_lib() should look into that
270  # dynamic_bs() should look into that
271  # dynamic_lib() should look into that
272  # xs_o() should look into that
273  # top_targets() should look into that
274  # dist_ci() should look into that
275  # dist_core() should look into that
276
277 =head1 AUTHOR
278
279 20011228 Abe Timmerman <abe@ztreet.demon.nl>
280
281 =cut