Re: [ID 20010911.001] Not OK: perl v5.7.2 +DEVEL11978 on
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / Manifest.t
CommitLineData
0300da75 1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 unshift @INC, '../lib';
6}
7
8# these files help the test run
9use Test::More tests => 31;
10use Cwd;
11
12# these files are needed for the module itself
13use File::Spec;
14use File::Path;
15use Carp::Heavy;
16
17# keep track of everything added so it can all be deleted
18my @files;
19sub add_file {
20 my ($file, $data) = @_;
21 $data ||= 'foo';
020b036f 22 open( my $T, '>', $file) or return;
0300da75 23 print $T $data;
24 push @files, $file;
25}
26
27sub read_manifest {
28 open( my $M, 'MANIFEST' ) or return;
29 chomp( my @files = <$M> );
30 return @files;
31}
32
33sub catch_warning {
34 my $warn;
35 local $SIG{__WARN__} = sub { $warn .= $_[0] };
36 return join('', $_[0]->() ), $warn;
37}
38
39sub remove_dir {
40 ok( rmdir( $_ ), "remove $_ directory" ) for @_;
41}
42
43# use module, import functions
44use_ok( 'ExtUtils::Manifest',
45 qw( mkmanifest manicheck filecheck fullcheck maniread manicopy) );
46
47my $cwd = Cwd::getcwd();
48
49# Just in case any old files were lying around.
50rmtree('mantest');
51
52ok( mkdir( 'mantest', 0777 ), 'make mantest directory' );
53ok( chdir( 'mantest' ), 'chdir() to mantest' );
54ok( add_file('foo'), 'add a temporary file' );
55
56# there shouldn't be a MANIFEST there
57my ($res, $warn) = catch_warning( \&mkmanifest );
58is( $warn, <<ADDING, "mkmanifest() displayed it's additions" );
59Added to MANIFEST: MANIFEST
60Added to MANIFEST: foo
61ADDING
62
63# and now you see it
64ok( -e 'MANIFEST', 'create MANIFEST file' );
65
66my @list = read_manifest();
67is( @list, 2, 'check files in MANIFEST' );
68ok( ! ExtUtils::Manifest::filecheck(), 'no additional files in directory' );
69
70# after adding bar, the MANIFEST is out of date
71ok( add_file( 'bar' ), 'add another file' );
72ok( ! manicheck(), 'MANIFEST now out of sync' );
73
74# it reports that bar has been added and throws a warning
75($res, $warn) = catch_warning( \&filecheck );
76
77like( $warn, qr/^Not in MANIFEST: bar/, 'warning that bar has been added' );
78is( $res, 'bar', 'bar reported as new' );
79
80# now quiet the warning that bar was added and test again
81use vars qw($ExtUtils::Manifest::Quiet);
82$ExtUtils::Manifest::Quiet = 1;
83($res, $warn) = catch_warning( \&ExtUtils::Manifest::skipcheck );
84is( $warn, '', 'disabled warnings' );
85
86# add a skip file with a rule to skip itself
87add_file( 'MANIFEST.SKIP', "baz\n.SKIP" );
88
89# this'll skip the new file
90($res, $warn) = catch_warning( \&ExtUtils::Manifest::skipcheck );
91like( $warn, qr/^Skipping MANIFEST\.SKIP/, 'got skipping warning' );
92
93# I'm not sure why this should be... shouldn't $missing be the only one?
94my ($found, $missing );
95catch_warning( sub {
96 ( $found, $missing ) = ExtUtils::Manifest::skipcheck()
97});
98
99# nothing new should be found, bar should be skipped
100is( @$found, 0, 'no output here' );
101is( join( ' ', @$missing ), 'bar', 'listed skipped files' );
102
103is( join(' ', filecheck() ), 'bar', 'listing skipped with filecheck()' );
104
105# add a subdirectory and a file there that should be found
106ok( mkdir( 'moretest', 0777 ), 'created moretest directory' );
107my $quux = File::Spec->catfile( 'moretest', 'quux' );
108add_file( $quux, 'quux' );
109ok( exists( ExtUtils::Manifest::manifind()->{$quux} ), "manifind found $quux" );
110
111# only MANIFEST and foo are in the manifest
112my $files = maniread();
113is( keys %$files, 2, 'two files found' );
114is( join(' ', sort keys %$files), 'MANIFEST foo', 'both files found' );
115
116# poison the manifest, and add a comment that should be reported
117add_file( 'MANIFEST', 'none #none' );
118is( ExtUtils::Manifest::maniread()->{none}, '#none', 'maniread found comment' );
119
120ok( mkdir( 'copy', 0777 ), 'made copy directory' );
121
122$files = maniread();
123eval { (undef, $warn) = catch_warning( sub {
124 manicopy( $files, 'copy', 'cp' ) })
125};
126
127# a newline comes through, so get rid of it
128chomp($warn);
129
130# the copy should have given one warning and one error
131is($warn, 'Skipping MANIFEST.SKIP', 'warned about MANIFEST.SKIP' );
86e8f854 132like( $@, qr/^Can't read none: /,
0300da75 133 'carped about none' );
134
135# tell ExtUtils::Manifest to use a different file
136use vars qw($ExtUtils::Manifest::MANIFEST);
137$ExtUtils::Manifest::MANIFEST = 'albatross';
138
139($res, $warn) = catch_warning( \&mkmanifest );
140like( $warn, qr/Added to albatross: /, 'using a new manifest file' );
141
142# add the new file to the list of files to be deleted
143push @files, 'albatross';
144
145END {
146 # the arrays are evaluated in scalar context
147 is( unlink( @files ), @files, 'remove all added files' );
148 remove_dir( 'moretest', 'copy' );
149
150 # now get rid of the parent directory
151 ok( chdir( $cwd ), 'return to parent directory' );
152 remove_dir( 'mantest' );
153}