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