source: trunk/essentials/dev-lang/perl/lib/h2xs.t

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 6.8 KB
Line 
1#!./perl -w
2
3# Some quick tests to see if h2xs actually runs and creates files as
4# expected. File contents include date stamps and/or usernames
5# hence are not checked. File existence is checked with -e though.
6# This test depends on File::Path::rmtree() to clean up with.
7# - pvhp
8#
9# We are now checking that the correct use $version; is present in
10# Makefile.PL and $module.pm
11
12BEGIN {
13 chdir 't' if -d 't';
14 @INC = '../lib';
15 # FIXME (or rather FIXh2xs)
16 require Config;
17 if (($Config::Config{'extensions'} !~ m!\bDevel/PPPort\b!) ){
18 print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";
19 exit 0;
20 }
21}
22
23# use strict; # we are not really testing this
24use File::Path; # for cleaning up with rmtree()
25use Test::More;
26use File::Spec;
27use File::Find;
28use ExtUtils::Manifest;
29# Don't want its diagnostics getting in the way of ours.
30$ExtUtils::Manifest::Quiet=1;
31my $up = File::Spec->updir();
32
33my $extracted_program = '../utils/h2xs'; # unix, nt, ...
34if ($^O eq 'VMS') { $extracted_program = '[-.utils]h2xs.com'; }
35if ($^O eq 'MacOS') { $extracted_program = '::utils:h2xs'; }
36if (!(-e $extracted_program)) {
37 print "1..0 # Skip: $extracted_program was not built\n";
38 exit 0;
39}
40# You might also wish to bail out if your perl platform does not
41# do `$^X -e 'warn "Writing h2xst"' 2>&1`; duplicity.
42
43# ok on unix, nt, VMS, ...
44my $dupe = '2>&1';
45# ok on unix, nt, The extra \" are for VMS
46my $lib = '"-I../lib" "-I../../lib"';
47# The >&1 would create a file named &1 on MPW (STDERR && STDOUT are
48# already merged).
49if ($^O eq 'MacOS') {
50 $dupe = '';
51 # -x overcomes MPW $Config{startperl} anomaly
52 $lib = '-x -I::lib: -I:::lib:';
53}
54# $name should differ from system header file names and must
55# not already be found in the t/ subdirectory for perl.
56my $name = 'h2xst';
57my $header = "$name.h";
58my $thisversion = sprintf "%vd", $^V;
59
60# If this test has failed previously a copy may be left.
61rmtree($name);
62
63my @tests = (
64"-f -n $name", $], <<"EOXSFILES",
65Defaulting to backwards compatibility with perl $thisversion
66If you intend this module to be compatible with earlier perl versions, please
67specify a minimum perl version with the -b option.
68
69Writing $name/ppport.h
70Writing $name/lib/$name.pm
71Writing $name/$name.xs
72Writing $name/fallback/const-c.inc
73Writing $name/fallback/const-xs.inc
74Writing $name/Makefile.PL
75Writing $name/README
76Writing $name/t/$name.t
77Writing $name/Changes
78Writing $name/MANIFEST
79EOXSFILES
80
81"-f -n $name -b $thisversion", $], <<"EOXSFILES",
82Writing $name/ppport.h
83Writing $name/lib/$name.pm
84Writing $name/$name.xs
85Writing $name/fallback/const-c.inc
86Writing $name/fallback/const-xs.inc
87Writing $name/Makefile.PL
88Writing $name/README
89Writing $name/t/$name.t
90Writing $name/Changes
91Writing $name/MANIFEST
92EOXSFILES
93
94"-f -n $name -b 5.6.1", "5.006001", <<"EOXSFILES",
95Writing $name/ppport.h
96Writing $name/lib/$name.pm
97Writing $name/$name.xs
98Writing $name/fallback/const-c.inc
99Writing $name/fallback/const-xs.inc
100Writing $name/Makefile.PL
101Writing $name/README
102Writing $name/t/$name.t
103Writing $name/Changes
104Writing $name/MANIFEST
105EOXSFILES
106
107"-f -n $name -b 5.5.3", "5.00503", <<"EOXSFILES",
108Writing $name/ppport.h
109Writing $name/lib/$name.pm
110Writing $name/$name.xs
111Writing $name/fallback/const-c.inc
112Writing $name/fallback/const-xs.inc
113Writing $name/Makefile.PL
114Writing $name/README
115Writing $name/t/$name.t
116Writing $name/Changes
117Writing $name/MANIFEST
118EOXSFILES
119
120"\"-X\" -f -n $name -b $thisversion", $], <<"EONOXSFILES",
121Writing $name/lib/$name.pm
122Writing $name/Makefile.PL
123Writing $name/README
124Writing $name/t/$name.t
125Writing $name/Changes
126Writing $name/MANIFEST
127EONOXSFILES
128
129"-f -n $name -b $thisversion $header", $], <<"EOXSFILES",
130Writing $name/ppport.h
131Writing $name/lib/$name.pm
132Writing $name/$name.xs
133Writing $name/fallback/const-c.inc
134Writing $name/fallback/const-xs.inc
135Writing $name/Makefile.PL
136Writing $name/README
137Writing $name/t/$name.t
138Writing $name/Changes
139Writing $name/MANIFEST
140EOXSFILES
141);
142
143my $total_tests = 3; # opening, closing and deleting the header file.
144for (my $i = $#tests; $i > 0; $i-=3) {
145 # 1 test for running it, 1 test for the expected result, and 1 for each file
146 # plus 1 to open and 1 to check for the use in lib/$name.pm and Makefile.PL
147 # And 1 more for our check for "bonus" files, 2 more for ExtUtil::Manifest.
148 # use the () to force list context and hence count the number of matches.
149 $total_tests += 9 + (() = $tests[$i] =~ /(Writing)/sg);
150}
151
152plan tests => $total_tests;
153
154ok (open (HEADER, ">$header"), "open '$header'");
155print HEADER <<HEADER or die $!;
156#define Camel 2
157#define Dromedary 1
158HEADER
159ok (close (HEADER), "close '$header'");
160
161while (my ($args, $version, $expectation) = splice @tests, 0, 3) {
162 # h2xs warns about what it is writing hence the (possibly unportable)
163 # 2>&1 dupe:
164 # does it run?
165 my $prog = "$^X $lib $extracted_program $args $dupe";
166 @result = `$prog`;
167 cmp_ok ($?, "==", 0, "running $prog ");
168 $result = join("",@result);
169
170 # accomodate MPW # comment character prependage
171 if ($^O eq 'MacOS') {
172 $result =~ s/#\s*//gs;
173 }
174
175 #print "# expectation is >$expectation<\n";
176 #print "# result is >$result<\n";
177 # Was the output the list of files that were expected?
178 is ($result, $expectation, "running $prog");
179
180 my (%got);
181 find (sub {$got{$File::Find::name}++ unless -d $_}, $name);
182
183 foreach ($expectation =~ /Writing\s+(\S+)/gm) {
184 if ($^O eq 'MacOS') {
185 $_ = ':' . join(':',split(/\//,$_));
186 $_ =~ s/$name:t:1.t/$name:t\/1.t/; # is this an h2xs bug?
187 }
188 if ($^O eq 'VMS') {
189 $_ .= '.' unless $_ =~ m/\./;
190 $_ = lc($_) unless exists $got{$_};
191 }
192 ok (-e $_, "check for $_") and delete $got{$_};
193 }
194 my @extra = keys %got;
195 unless (ok (!@extra, "Are any extra files present?")) {
196 print "# These files are unexpectedly present:\n";
197 print "# $_\n" foreach sort @extra;
198 }
199
200 chdir ($name) or die "chdir $name failed: $!";
201 # Aargh. Something wants to load a bit of regexp. And we have to chdir
202 # for ExtUtils::Manifest. Caught between a rock and a hard place, so this
203 # seems the least evil thing to do:
204 push @INC, "../../lib";
205 my ($missing, $extra) = ExtUtils::Manifest::fullcheck();
206 is_deeply ($missing, [], "No files in the MANIFEST should be missing");
207 is_deeply ($extra, [], "and all files present should be in the MANIFEST");
208 pop @INC;
209 chdir ($up) or die "chdir $up failed: $!";
210
211 foreach my $leaf (File::Spec->catfile('lib', "$name.pm"), 'Makefile.PL') {
212 my $file = File::Spec->catfile($name, $leaf);
213 if (ok (open (FILE, $file), "open $file")) {
214 my $match = qr/use $version;/;
215 my $found;
216 while (<FILE>) {
217 last if $found = /$match/;
218 }
219 ok ($found, "looking for /$match/ in $file");
220 close FILE or die "close $file: $!";
221 }
222 }
223 # clean up
224 rmtree($name);
225}
226
227cmp_ok (unlink ($header), "==", 1, "unlink '$header'") or die "\$! is $!";
Note: See TracBrowser for help on using the repository browser.