Integrate mainline
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / MM_Cygwin.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 Test::More;
15
16 BEGIN {
17         if ($^O =~ /cygwin/i) {
18                 plan tests => 15;
19         } else {
20                 plan skip_all => "This is not cygwin";
21         }
22 }
23
24 use Config;
25 use File::Spec;
26 use ExtUtils::MM;
27
28 use_ok( 'ExtUtils::MM_Cygwin' );
29
30 # test canonpath
31 my $path = File::Spec->canonpath('/a/../../c');
32 is( MM->canonpath('/a/../../c'), $path,
33         'canonpath() method should work just like the one in File::Spec' );
34
35 # test cflags, with the fake package below
36 my $args = bless({
37         CFLAGS  => 'fakeflags',
38         CCFLAGS => '',
39 }, MM);
40
41 # with CFLAGS set, it should be returned
42 is( $args->cflags(), 'fakeflags',
43         'cflags() should return CFLAGS member data, if set' );
44
45 delete $args->{CFLAGS};
46
47 # ExtUtils::MM_Cygwin::cflags() calls this, fake the output
48 {
49     no warnings 'redefine';
50     sub ExtUtils::MM_Unix::cflags { return $_[1] };
51 }
52
53 # respects the config setting, should ignore whitespace around equal sign
54 my $ccflags = $Config{useshrplib} eq 'true' ? ' -DUSEIMPORTLIB' : '';
55 {
56     local $args->{NEEDS_LINKING} = 1;
57     $args->cflags(<<FLAGS);
58 OPTIMIZE = opt
59 PERLTYPE  =pt
60 LARGE= lg
61 SPLIT=split
62 FLAGS
63 }
64
65 like( $args->{CFLAGS}, qr/OPTIMIZE = opt/, '... should set OPTIMIZE' );
66 like( $args->{CFLAGS}, qr/PERLTYPE = pt/, '... should set PERLTYPE' );
67 like( $args->{CFLAGS}, qr/LARGE = lg/, '... should set LARGE' );
68 like( $args->{CFLAGS}, qr/SPLIT = split/, '... should set SPLIT' );
69 like( $args->{CFLAGS}, qr/CCFLAGS = $ccflags/, '... should set CCFLAGS' );
70
71 # test manifypods
72 $args = bless({
73         NOECHO => 'noecho',
74         MAN3PODS => {},
75         MAN1PODS => {},
76     MAKEFILE => 'Makefile',
77 }, 'MM');
78 like( $args->manifypods(), qr/pure_all\n\tnoecho/,
79         'manifypods() should return without PODS values set' );
80
81 $args->{MAN3PODS} = { foo => 1 };
82 my $out = tie *STDOUT, 'FakeOut';
83 {
84     no warnings 'once';
85     local *MM::perl_script = sub { return };
86     my $res = $args->manifypods();
87     like( $$out, qr/could not locate your pod2man/,
88           '... should warn if pod2man cannot be located' );
89     like( $res, qr/POD2MAN_EXE = -S pod2man/,
90           '... should use default pod2man target' );
91     like( $res, qr/pure_all.+foo/, '... should add MAN3PODS targets' );
92 }
93
94 SKIP: {
95     skip "Only relevent in the core", 2 unless $ENV{PERL_CORE};
96     $args->{PERL_SRC} = File::Spec->updir;
97     $args->{MAN1PODS} = { bar => 1 };
98     $$out = '';
99     $res = $args->manifypods();
100     is( $$out, '', '... should not warn if PERL_SRC provided' );
101     like( $res, qr/bar \\\n\t1 \\\n\tfoo/,
102           '... should join MAN1PODS and MAN3PODS');
103 }
104
105 # test perl_archive
106 my $libperl = $Config{libperl} || 'libperl.a';
107 $libperl =~ s/\.a/.dll.a/;
108 is( $args->perl_archive(), "\$(PERL_INC)/$libperl",
109         'perl_archive() should respect libperl setting' );
110
111
112 package FakeOut;
113
114 sub TIEHANDLE {
115         bless(\(my $scalar), $_[0]);
116 }
117
118 sub PRINT {
119         my $self = shift;
120         $$self .= shift;
121 }