[perl #15184] ExtUtils/t/Embed.t fails with -Duseshrplib -Dlibperl=...
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / Installed.t
CommitLineData
39234879 1#!/usr/bin/perl -w
2
3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 chdir 't' if -d 't';
6 @INC = '../lib';
7 }
f6d6199c 8 else {
9 unshift @INC, 't/lib/';
10 }
39234879 11}
12chdir 't';
13
f411ddcc 14
15use strict;
f411ddcc 16
f411ddcc 17use Config;
f411ddcc 18use Cwd;
19use File::Path;
f411ddcc 20use File::Basename;
f6d6199c 21use File::Spec;
f411ddcc 22
d5d4ec93 23use Test::More tests => 46;
f411ddcc 24
39234879 25BEGIN { use_ok( 'ExtUtils::Installed' ) }
f411ddcc 26
34dcf69d 27my $mandirs = !!$Config{man1direxp} + !!$Config{man3direxp};
64f50df3 28
f411ddcc 29# saves having to qualify package name for class methods
30my $ei = bless( {}, 'ExtUtils::Installed' );
31
32# _is_prefix
f6d6199c 33ok( $ei->_is_prefix('foo/bar', 'foo'),
f411ddcc 34 '_is_prefix() should match valid path prefix' );
f6d6199c 35ok( !$ei->_is_prefix('\foo\bar', '\bar'),
f411ddcc 36 '... should not match wrong prefix' );
37
38# _is_type
f6d6199c 39ok( $ei->_is_type(0, 'all'), '_is_type() should be true for type of "all"' );
f411ddcc 40
34dcf69d 41foreach my $path (qw( man1dir man3dir )) {
42SKIP: {
43 my $dir = $Config{$path.'exp'};
44 skip("no man directory $path on this system", 2 ) unless $dir;
45
46 my $file = $dir . '/foo';
f6d6199c 47 ok( $ei->_is_type($file, 'doc'), "... should find doc file in $path" );
48 ok( !$ei->_is_type($file, 'prog'), "... but not prog file in $path" );
34dcf69d 49 }
f411ddcc 50}
51
f6d6199c 52# VMS 5.6.1 doesn't seem to have $Config{prefixexp}
53my $prefix = $Config{prefix} || $Config{prefixexp};
54
55# You can concatenate /foo but not foo:, which defaults in the current
56# directory
57$prefix = VMS::Filespec::unixify($prefix) if $^O eq 'VMS';
58
59# ActivePerl 5.6.1/631 has $Config{prefixexp} as 'p:' for some reason
60$prefix = $Config{prefix} if $prefix eq 'p:' && $^O eq 'MSWin32';
61
62ok( $ei->_is_type( File::Spec->catfile($prefix, 'bar'), 'prog'),
63 "... should find prog file under $prefix" );
64f50df3 64
65SKIP: {
34dcf69d 66 skip('no man directories on this system', 1) unless $mandirs;
64f50df3 67 is( $ei->_is_type('bar', 'doc'), 0,
68 '... should not find doc file outside path' );
69}
70
f6d6199c 71ok( !$ei->_is_type('bar', 'prog'),
f411ddcc 72 '... nor prog file outside path' );
f6d6199c 73ok( !$ei->_is_type('whocares', 'someother'), '... nor other type anywhere' );
f411ddcc 74
75# _is_under
76ok( $ei->_is_under('foo'), '_is_under() should return true with no dirs' );
77
78my @under = qw( boo bar baz );
f6d6199c 79ok( !$ei->_is_under('foo', @under), '... should find no file not under dirs');
80ok( $ei->_is_under('baz', @under), '... should find file under dir' );
f411ddcc 81
f411ddcc 82
d5d4ec93 83rmtree 'auto/FakeMod';
84ok( mkpath('auto/FakeMod') );
b5f5ff40 85END { rmtree 'auto' }
57b1a898 86
87ok(open(PACKLIST, '>auto/FakeMod/.packlist'));
88print PACKLIST 'list';
89close PACKLIST;
90
91ok(open(FAKEMOD, '>auto/FakeMod/FakeMod.pm'));
92
93print FAKEMOD <<'FAKE';
f411ddcc 94package FakeMod;
95use vars qw( $VERSION );
96$VERSION = '1.1.1';
971;
98FAKE
99
57b1a898 100close FAKEMOD;
f411ddcc 101
57b1a898 102{
103 # avoid warning and death by localizing glob
104 local *ExtUtils::Installed::Config;
105 my $fake_mod_dir = File::Spec->catdir(cwd(), 'auto', 'FakeMod');
106 %ExtUtils::Installed::Config = (
107 %Config,
108 archlibexp => cwd(),
109 sitearchexp => $fake_mod_dir,
110 );
f411ddcc 111
112 # necessary to fool new()
19e86e2f 113 push @INC, $fake_mod_dir;
f411ddcc 114
115 my $realei = ExtUtils::Installed->new();
57b1a898 116 isa_ok( $realei, 'ExtUtils::Installed' );
117 isa_ok( $realei->{Perl}{packlist}, 'ExtUtils::Packlist' );
118 is( $realei->{Perl}{version}, $Config{version},
119 'new() should set Perl version from %Config' );
120
f411ddcc 121 ok( exists $realei->{FakeMod}, 'new() should find modules with .packlists');
122 isa_ok( $realei->{FakeMod}{packlist}, 'ExtUtils::Packlist' );
123 is( $realei->{FakeMod}{version}, '1.1.1',
124 '... should find version in modules' );
125}
126
127# modules
128$ei->{$_} = 1 for qw( abc def ghi );
129is( join(' ', $ei->modules()), 'abc def ghi',
130 'modules() should return sorted keys' );
131
d5d4ec93 132# This didn't work for a long time due to a sort in scalar context oddity.
133is( $ei->modules, 3, 'modules() in scalar context' );
134
f411ddcc 135# files
136$ei->{goodmod} = {
137 packlist => {
34dcf69d 138 ($Config{man1direxp} ?
139 (File::Spec->catdir($Config{man1direxp}, 'foo') => 1) :
140 ()),
141 ($Config{man3direxp} ?
142 (File::Spec->catdir($Config{man3direxp}, 'bar') => 1) :
143 ()),
f6d6199c 144 File::Spec->catdir($prefix, 'foobar') => 1,
f411ddcc 145 foobaz => 1,
146 },
147};
148
149eval { $ei->files('badmod') };
150like( $@, qr/badmod is not installed/,'files() should croak given bad modname');
151eval { $ei->files('goodmod', 'badtype' ) };
152like( $@, qr/type must be/,'files() should croak given bad type' );
64f50df3 153
154my @files;
155SKIP: {
f6d6199c 156 skip('no man directory man1dir on this system', 2)
157 unless $Config{man1direxp};
34dcf69d 158 @files = $ei->files('goodmod', 'doc', $Config{man1direxp});
159 is( scalar @files, 1, '... should find doc file under given dir' );
57b1a898 160 is( (grep { /foo$/ } @files), 1, '... checking file name' );
34dcf69d 161}
162SKIP: {
163 skip('no man directories on this system', 1) unless $mandirs;
164 @files = $ei->files('goodmod', 'doc');
165 is( scalar @files, $mandirs, '... should find all doc files with no dir' );
64f50df3 166}
167
f411ddcc 168@files = $ei->files('goodmod', 'prog', 'fake', 'fake2');
169is( scalar @files, 0, '... should find no doc files given wrong dirs' );
170@files = $ei->files('goodmod', 'prog');
171is( scalar @files, 1, '... should find doc file in correct dir' );
b4558e59 172like( $files[0], qr/foobar[>\]]?$/, '... checking file name' );
f411ddcc 173@files = $ei->files('goodmod');
34dcf69d 174is( scalar @files, 2 + $mandirs, '... should find all files with no type specified' );
62bfa7e0 175my %dirnames = map { lc($_) => dirname($_) } @files;
f411ddcc 176
177# directories
178my @dirs = $ei->directories('goodmod', 'prog', 'fake');
179is( scalar @dirs, 0, 'directories() should return no dirs if no files found' );
64f50df3 180
181SKIP: {
34dcf69d 182 skip('no man directories on this system', 1) unless $mandirs;
183 @dirs = $ei->directories('goodmod', 'doc');
184 is( scalar @dirs, $mandirs, '... should find all files files() would' );
185}
186@dirs = $ei->directories('goodmod');
187is( scalar @dirs, 2 + $mandirs, '... should find all files files() would, again' );
188@files = sort map { exists $dirnames{lc($_)} ? $dirnames{lc($_)} : '' } @files;
189is( join(' ', @files), join(' ', @dirs), '... should sort output' );
190
191# directory_tree
192my $expectdirs =
193 ($mandirs == 2) &&
194 (dirname($Config{man1direxp}) eq dirname($Config{man3direxp}))
195 ? 3 : 2;
196
197SKIP: {
198 skip('no man directories on this system', 1) unless $mandirs;
199 @dirs = $ei->directory_tree('goodmod', 'doc', $Config{man1direxp} ?
200 dirname($Config{man1direxp}) : dirname($Config{man3direxp}));
201 is( scalar @dirs, $expectdirs,
202 'directory_tree() should report intermediate dirs to those requested' );
64f50df3 203}
f411ddcc 204
205my $fakepak = Fakepak->new(102);
206
207$ei->{yesmod} = {
208 version => 101,
209 packlist => $fakepak,
210};
211
212# these should all croak
213foreach my $sub (qw( validate packlist version )) {
214 eval { $ei->$sub('nomod') };
215 like( $@, qr/nomod is not installed/,
216 "$sub() should croak when asked about uninstalled module" );
217}
218
219# validate
220is( $ei->validate('yesmod'), 'validated',
221 'validate() should return results of packlist validate() call' );
222
223# packlist
224is( ${ $ei->packlist('yesmod') }, 102,
225 'packlist() should report installed mod packlist' );
226
227# version
228is( $ei->version('yesmod'), 101,
229 'version() should report installed mod version' );
230
f411ddcc 231
232package Fakepak;
233
234sub new {
235 my $class = shift;
236 bless(\(my $scalar = shift), $class);
237}
238
239sub validate {
240 'validated'
241}