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