Message-ID: <bmar2u8jdib45442jh1ht3e3i1qhlaek59@4ax.com>
Abe Timmerman [Sat, 29 Dec 2001 12:51:36 +0000 (13:51 +0100)]
p4raw-id: //depot/perl@13924

MANIFEST
lib/ExtUtils/t/MM_Win32.t [new file with mode: 0644]

index f7ca02c..3f21578 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -953,6 +953,7 @@ lib/ExtUtils/t/MM_Cygwin.t  See if ExtUtils::MM_Cygwin works
 lib/ExtUtils/t/MM_OS2.t                See if ExtUtils::MM_OS2 works
 lib/ExtUtils/t/MM_Unix.t       See if ExtUtils::MM_UNIX works
 lib/ExtUtils/t/MM_VMS.t                See if ExtUtils::MM_VMS works
+lib/ExtUtils/t/MM_Win32.t      See if ExtUtils::MM_Win32 works
 lib/ExtUtils/t/Packlist.t      See if Packlist works
 lib/ExtUtils/t/testlib.t       Fixes up @INC to use just-built extension
 lib/ExtUtils/testlib.pm                Fixes up @INC to use just-built extension
diff --git a/lib/ExtUtils/t/MM_Win32.t b/lib/ExtUtils/t/MM_Win32.t
new file mode 100644 (file)
index 0000000..400efbd
--- /dev/null
@@ -0,0 +1,339 @@
+#!perl
+
+BEGIN {
+       chdir 't' if -d 't';
+#      @INC = '../lib';
+push @INC, '../lib';
+}
+
+use Test::More;
+
+BEGIN {
+       if ($^O =~ /MSWin32/i) {
+               plan tests => 44;
+       } else {
+               plan skip_all => 'Test irrelevant outside of MSWin32';
+       }
+}
+
+use Config;
+use File::Spec;
+use File::Basename;
+
+# Does this mimic ExtUtils::MakeMaker ok?
+{
+    @MM::ISA = qw(
+        ExtUtils::MM_Unix 
+        ExtUtils::Liblist::Kid 
+        ExtUtils::MakeMaker
+    );
+    # MM package faked up by messy MI entanglement
+    package MM;
+    sub DESTROY {}
+}
+
+require_ok( 'ExtUtils::MM_Win32' );
+
+# test import of $Verbose and &neatvalue
+can_ok( 'MM', 'neatvalue' );
+is( $ExtUtils::MM_Win32::Verbose, $ExtUtils::MakeMaker::Verbose, 
+       'ExtUtils::MM_Win32 should import $Verbose from ExtUtils::MakeMaker' );
+
+
+##### Start new tests at the top of MM_Win32
+
+# replace_manpage_separator() => tr|/|.|s ?
+{
+    my $man = 'a/path/to//something';
+    ( my $replaced = $man ) =~ tr|/|.|s;
+    is( MM->replace_manpage_separator( $man ),
+        $replaced, 'replace_manpage_separator()' );
+}
+
+# maybe_command()
+SKIP: {
+    skip( '$ENV{COMSPEC} not set', 2 )
+        unless $ENV{COMSPEC} =~ m!((?:[a-z]:)?[^|<>]+)!i;
+    my $comspec = $1;
+    is( MM->maybe_command( $comspec ), 
+        $comspec, 'COMSPEC is a maybe_command()' );
+    ( my $comspec2 = $comspec ) =~ s|\..{3}$||;
+    like( MM->maybe_command( $comspec2 ), 
+          qr/\Q$comspec/i, 
+          'maybe_command() without extension' );
+}
+{
+    local $ENV{PATHEXT} = '.exe';
+    ok( ! MM->maybe_command( 'not_a_command.com' ), 
+        'not a maybe_command()' );
+}
+
+# file_name_is_absolute() [Does not support UNC-paths]
+{
+    ok( MM->file_name_is_absolute( 'C:/' ), 
+        'file_name_is_absolute()' );
+    ok( ! MM->file_name_is_absolute( 'some/path/' ),
+        'not file_name_is_absolute()' );
+
+}
+
+# find_perl() 
+# Should be able to find running perl... $^X is OK on Win32
+{
+    my $my_perl = $1 if $^X  =~ /(.*)/; # are we in -T or -t?
+    my( $perl, $path ) = fileparse( $my_perl );
+    like( MM->find_perl( $], [ $perl ], [ $path ] ), 
+          qr/^\Q$my_perl\E$/i, 'find_perl() finds this perl' );
+}
+
+# catdir() (calls MM_Win32->canonpath)
+{
+    my @path_eg = qw( c: trick dir/now_OK );
+
+    is( MM->catdir( @path_eg ), 
+         'C:\\trick\\dir\\now_OK', 'catdir()' );
+    is( MM->catdir( @path_eg ), 
+        File::Spec->catdir( @path_eg ), 
+        'catdir() eq File::Spec->catdir()' );
+
+# catfile() (calls MM_Win32->catdir)
+    push @path_eg, 'file.ext';
+
+    is( MM->catfile( @path_eg ),
+        'C:\\trick\\dir\\now_OK\\file.ext', 'catfile()' );
+
+    is( MM->catfile( @path_eg ), 
+        File::Spec->catfile( @path_eg ), 
+        'catfile() eq File::Spec->catfile()' );
+}
+
+# init_others(): check if all keys are created and set?
+# qw( TOUCH CHMOD CP RM_F RM_RF MV NOOP TEST_F LD AR LDLOADLIBS DEV_NUL )
+{
+    my $mm_w32 = bless( {}, 'MM' );
+    $mm_w32->init_others();
+    my @keys = qw( TOUCH CHMOD CP RM_F RM_RF MV NOOP 
+                   TEST_F LD AR LDLOADLIBS DEV_NULL );
+    for my $key ( @keys ) {
+        ok( $mm_w32->{ $key }, "init_others: $key" );
+    }
+}
+
+# constants()
+{
+    my $mm_w32 = bless {
+        NAME         => 'TestMM_Win32', 
+        VERSION      => '1.00',
+        VERSION_FROM => 'TestMM_Win32',
+        PM           => { 'MM_Win32.pm' => 1 },
+    }, 'MM';
+    my $s_PM = join( " \\\n\t", sort keys %{$mm_w32->{PM}} );
+    my $k_PM = join( " \\\n\t", %{$mm_w32->{PM}} );
+
+    like( $mm_w32->constants(),
+          qr/^NAME\ =\ TestMM_Win32\s+VERSION\ =\ 1\.00.+
+             MAKEMAKER\ =\ $INC{'ExtUtils\MakeMaker.pm'}\s+
+             MM_VERSION\ =\ $ExtUtils::MakeMaker::VERSION.+
+             VERSION_FROM\ =\ TestMM_Win32.+
+             TO_INST_PM\ =\ \Q$s_PM\E\s+
+             PM_TO_BLIB\ =\ \Q$k_PM\E
+          /xs, 'constants()' );
+
+}
+
+# path()
+{
+    my @path_eg = ( qw( . .. ), 'C:\\Program Files' );
+    local $ENV{PATH} = join ';', @path_eg;
+    ok( eq_array( [ MM->path() ], [ @path_eg ] ),
+        'path() [preset]' );
+}
+
+# static_lib() should look into that
+# dynamic_bs() should look into that
+# dynamic_lib() should look into that
+
+# clean()
+{
+    my $clean = $Config{cc} =~ /^gcc/i ? 'dll.base dll.exp' : '*.pdb';
+    like( MM->clean(), qr/^clean ::\s+\Q-$(RM_F) $clean\E\s+$/m,
+          'clean() Makefile target' );
+}
+
+# perl_archive()
+{
+    my $libperl = $Config{libperl} || 'libperl.a';
+    is( MM->perl_archive(), File::Spec->catfile('$(PERL_INC)', $libperl ),
+           'perl_archive() should respect libperl setting' );
+}
+
+# export_list
+{
+    my $mm_w32 = bless { BASEEXT => 'someext' }, 'ExtUtils::MM_Win32';
+    is( $mm_w32->export_list(), 'someext.def', 'export_list()' );
+}
+
+# canonpath()
+{
+    my $path = 'c:\\Program Files/SomeApp\\Progje.exe';
+    is( MM->canonpath( $path ), File::Spec->canonpath( $path ),
+           'canonpath() eq File::Spec->canonpath' );
+}
+
+# perl_script()
+my $script_ext  = '';
+my $script_name = 'mm_w32tmp';
+SKIP: {
+    local *SCRIPT;
+    skip( "Can't create temp file: $!", 4 )
+        unless open SCRIPT, "> $script_name";
+    print SCRIPT <<'EOSCRIPT';
+#! perl
+__END__
+EOSCRIPT
+    skip( "Can't write to temp file: $!", 4 )
+        unless close SCRIPT;
+    # now start tests:
+    is( MM->perl_script( $script_name ), 
+        "${script_name}$script_ext", "perl_script ($script_ext)" );
+
+    skip( "Can't rename temp file: $!", 3 )
+        unless rename $script_name, "${script_name}.pl";
+    $script_ext = '.pl';
+    is( MM->perl_script( $script_name ), 
+        "${script_name}$script_ext", "perl_script ($script_ext)" );
+
+    skip( "Can't rename temp file: $!", 2 )
+        unless rename "${script_name}$script_ext", "${script_name}.bat";
+    $script_ext = '.bat';
+    is( MM->perl_script( $script_name ), 
+        "${script_name}$script_ext", "perl_script ($script_ext)" );
+
+    skip( "Can't rename temp file: $!", 1 )
+        unless rename "${script_name}$script_ext", "${script_name}.noscript";
+    $script_ext = '.noscript';
+
+    isnt( MM->perl_script( $script_name ),
+          "${script_name}$script_ext", 
+          "not a perl_script anymore ($script_ext)" );
+    is( MM->perl_script( $script_name ), '',
+        "perl_script ($script_ext) returns empty" );
+}
+unlink "${script_name}$script_ext" if -f "${script_name}$script_ext";
+
+
+# pm_to_blib()
+{
+    like( MM->pm_to_blib(),
+          qr/^pm_to_blib: \Q$(TO_INST_PM)\E.+\Q$(TOUCH) \E\$@\s+$/ms,
+          'pm_to_blib' );
+}
+
+# test_via_harness()
+{
+    like( MM->test_via_harness( $^X, 'MM_Win32.t' ),
+          qr/^\t\Q$^X\E \-Mblib.+"use Test::Harness.+MM_Win32.t\n$/,
+          'test_via_harness()' );
+}
+
+# tool_autosplit()
+{
+    my %attribs = ( MAXLEN => 255 );
+    like( MM->tool_autosplit( %attribs ),
+          qr/^\#\ Usage:\ \$\(AUTOSPLITFILE\)
+             \ FileToSplit\ AutoDirToSplitInto.+
+             AUTOSPLITFILE\ =\ \$\(PERL\)\ 
+             "\-I\$\(PERL_ARCHLIB\)"\ "\-I\$\(PERL_LIB\)".+
+             \$AutoSplit::Maxlen=$attribs{MAXLEN};
+          /xms,
+          'tool_autosplit()' );
+}
+
+# tools_other()
+{
+    ( my $mm_w32 = bless { }, 'MM' )->init_others();
+        
+    my $bin_sh = ( $Config{make} =~ /^dmake/i 
+               ? "" : ($Config{sh} || 'cmd /c') . "\n" );
+
+    my $tools = join "\n", map "$_ = $mm_w32->{ $_ }"
+       => qw(CHMOD CP LD MV NOOP RM_F RM_RF TEST_F TOUCH UMASK_NULL DEV_NULL);
+
+    like( $mm_w32->tools_other(),
+          qr/^SHELL = \Q$bin_sh$tools/m,
+          'tools_other()' );
+};
+
+# xs_o() should look into that
+# top_targets() should look into that
+
+# htmlify_pods()
+{
+    my $mm_w32 = bless {
+        HTMLLIBPODS    => { 'MM_Win32.pm' => 1 },
+        HTMLSCRIPTPODS => { 'MM_Win32.t'  => 1 },
+        PERL_SRC       => undef,
+    }, 'MM';
+    my $pods = join " \\\n\t", keys %{$mm_w32->{HTMLLIBPODS}}, 
+                               keys %{$mm_w32->{HTMLSCRIPTPODS}};
+    my $pod2html_exe = $mm_w32->catfile($Config{scriptdirexp},'pod2html');
+    $pod2html_exe = $mm_w32->perl_script( $pod2html_exe );
+
+    like( $mm_w32->htmlifypods(),
+          qr/^POD2HTML_EXE\ =\ \Q$pod2html_exe\E\n
+             POD2HTML\ =.+\n
+             htmlifypods\ :\ pure_all\ \Q$pods\E
+          /xs,
+          'htmlifypods() Makefile target' );
+}
+
+# manifypods()
+{
+    my $mm_w32 = bless { NOECHO    => '' }, 'MM';
+    like( $mm_w32->manifypods(),
+          qr/^\nmanifypods :\n\t\$\Q(NOOP)\E\n$/,
+          'manifypods() Makefile target' );
+}
+
+# dist_ci() should look into that
+# dist_core() should look into that
+
+# pasthru()
+{
+    my $pastru = "PASTHRU = " . ($Config{make} =~ /^nmake/i ? "-nologo" : "");
+    is( MM->pasthru(), $pastru, 'pasthru()' );
+}
+
+package FakeOut;
+
+sub TIEHANDLE {
+       bless(\(my $scalar), $_[0]);
+}
+
+sub PRINT {
+       my $self = shift;
+       $$self .= shift;
+}
+
+__END__
+
+=head1 NAME
+
+MM_Win32.t - Tests for ExtUtils::MM_Win32
+
+=head1 TODO
+
+ - Methods to still be checked:
+ # static_lib() should look into that
+ # dynamic_bs() should look into that
+ # dynamic_lib() should look into that
+ # xs_o() should look into that
+ # top_targets() should look into that
+ # dist_ci() should look into that
+ # dist_core() should look into that
+
+=head1 AUTHOR
+
+20011228 Abe Timmerman <abe@ztreet.demon.nl>
+
+=cut