This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump the perl version in various places for 5.37.8
[perl5.git] / lib / h2xs.t
CommitLineData
46b277d5 1#!./perl -w
3a9c887e
PK
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
3e6e4ea8
NC
8#
9# We are now checking that the correct use $version; is present in
10# Makefile.PL and $module.pm
fa1e5b33 11
3a9c887e
PK
12BEGIN {
13 chdir 't' if -d 't';
14 @INC = '../lib';
763a0d21
NC
15 # FIXME (or rather FIXh2xs)
16 require Config;
98641f60 17 if (($Config::Config{'extensions'} !~ m!\bDevel/PPPort\b!) ){
763a0d21
NC
18 print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";
19 exit 0;
20 }
3a9c887e
PK
21}
22
45ea237c 23# use strict; # we are not really testing this
3a9c887e 24use File::Path; # for cleaning up with rmtree()
1cb0fb50 25use Test::More;
31022a5a 26use File::Spec;
1cb0fb50
NC
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();
3a9c887e
PK
32
33my $extracted_program = '../utils/h2xs'; # unix, nt, ...
ca48d8be
JM
34
35my $Is_VMS_traildot = 0;
36if ($^O eq 'VMS') {
37 $extracted_program = '[-.utils]h2xs.com';
38
39 # We have to know if VMS is in UNIX mode. In UNIX mode, trailing dots
40 # should not be present. There are actually two settings that control this.
41
42 $Is_VMS_traildot = 1;
43 my $unix_rpt = 0;
44 my $drop_dot = 0;
45 if (eval 'require VMS::Feature') {
46 $unix_rpt = VMS::Feature::current('filename_unix_report');
47 $drop_dot = VMS::Feature::current('readdir_dropdotnotype');
48 } else {
49 my $unix_report = $ENV{'DECC$FILENAME_UNIX_REPORT'} || '';
50 $unix_rpt = $unix_report =~ /^[ET1]/i;
51 my $drop_dot_notype = $ENV{'DECC$READDIR_DROPDOTNOTYPE'} || '';
52 $drop_dot = $drop_dot_notype =~ /^[ET1]/i;
53 }
54 $Is_VMS_traildot = 0 if $drop_dot && unix_rpt;
55}
3a9c887e
PK
56if (!(-e $extracted_program)) {
57 print "1..0 # Skip: $extracted_program was not built\n";
58 exit 0;
59}
60# You might also wish to bail out if your perl platform does not
61# do `$^X -e 'warn "Writing h2xst"' 2>&1`; duplicity.
62
fa1e5b33
JH
63# ok on unix, nt, VMS, ...
64my $dupe = '2>&1';
65# ok on unix, nt, The extra \" are for VMS
66my $lib = '"-I../lib" "-I../../lib"';
3a9c887e
PK
67# $name should differ from system header file names and must
68# not already be found in the t/ subdirectory for perl.
69my $name = 'h2xst';
46b277d5 70my $header = "$name.h";
3e6e4ea8 71my $thisversion = sprintf "%vd", $^V;
9137345a 72$thisversion =~ s/^v//;
3a9c887e 73
98d84473 74# If this test has failed previously a copy may be left.
9d16830f 75rmtree($name) if -e $name;
98d84473 76
46b277d5 77my @tests = (
3e6e4ea8
NC
78"-f -n $name", $], <<"EOXSFILES",
79Defaulting to backwards compatibility with perl $thisversion
80If you intend this module to be compatible with earlier perl versions, please
81specify a minimum perl version with the -b option.
82
0a7c7f4f 83Writing $name/ppport.h
4a660237 84Writing $name/lib/$name.pm
3a9c887e 85Writing $name/$name.xs
1cb0fb50
NC
86Writing $name/fallback/const-c.inc
87Writing $name/fallback/const-xs.inc
3a9c887e
PK
88Writing $name/Makefile.PL
89Writing $name/README
4a660237 90Writing $name/t/$name.t
3a9c887e
PK
91Writing $name/Changes
92Writing $name/MANIFEST
93EOXSFILES
94
3e6e4ea8 95"-f -n $name -b $thisversion", $], <<"EOXSFILES",
0a7c7f4f 96Writing $name/ppport.h
4a660237 97Writing $name/lib/$name.pm
3e6e4ea8 98Writing $name/$name.xs
1cb0fb50
NC
99Writing $name/fallback/const-c.inc
100Writing $name/fallback/const-xs.inc
3e6e4ea8
NC
101Writing $name/Makefile.PL
102Writing $name/README
4a660237 103Writing $name/t/$name.t
3e6e4ea8
NC
104Writing $name/Changes
105Writing $name/MANIFEST
106EOXSFILES
107
108"-f -n $name -b 5.6.1", "5.006001", <<"EOXSFILES",
0a7c7f4f 109Writing $name/ppport.h
4a660237 110Writing $name/lib/$name.pm
3e6e4ea8 111Writing $name/$name.xs
1cb0fb50
NC
112Writing $name/fallback/const-c.inc
113Writing $name/fallback/const-xs.inc
3e6e4ea8
NC
114Writing $name/Makefile.PL
115Writing $name/README
4a660237 116Writing $name/t/$name.t
3e6e4ea8
NC
117Writing $name/Changes
118Writing $name/MANIFEST
119EOXSFILES
120
121"-f -n $name -b 5.5.3", "5.00503", <<"EOXSFILES",
0a7c7f4f 122Writing $name/ppport.h
4a660237 123Writing $name/lib/$name.pm
3e6e4ea8 124Writing $name/$name.xs
1cb0fb50
NC
125Writing $name/fallback/const-c.inc
126Writing $name/fallback/const-xs.inc
3e6e4ea8
NC
127Writing $name/Makefile.PL
128Writing $name/README
4a660237 129Writing $name/t/$name.t
3e6e4ea8
NC
130Writing $name/Changes
131Writing $name/MANIFEST
132EOXSFILES
133
134"\"-X\" -f -n $name -b $thisversion", $], <<"EONOXSFILES",
4a660237 135Writing $name/lib/$name.pm
3a9c887e
PK
136Writing $name/Makefile.PL
137Writing $name/README
4a660237 138Writing $name/t/$name.t
3a9c887e
PK
139Writing $name/Changes
140Writing $name/MANIFEST
141EONOXSFILES
142
f1c8c936 143"-f -n $name -b $thisversion $header", $], <<"EOXSFILES",
0a7c7f4f 144Writing $name/ppport.h
4a660237 145Writing $name/lib/$name.pm
46b277d5 146Writing $name/$name.xs
1cb0fb50
NC
147Writing $name/fallback/const-c.inc
148Writing $name/fallback/const-xs.inc
46b277d5
NC
149Writing $name/Makefile.PL
150Writing $name/README
4a660237 151Writing $name/t/$name.t
46b277d5
NC
152Writing $name/Changes
153Writing $name/MANIFEST
154EOXSFILES
155);
156
1ae6ead9 157ok (open (HEADER, '>', $header), "open '$header'");
46b277d5
NC
158print HEADER <<HEADER or die $!;
159#define Camel 2
160#define Dromedary 1
dd5f7cf2
AC
161#define Bactrian /* empty */
162#define Bactrian2
46b277d5 163HEADER
1cb0fb50 164ok (close (HEADER), "close '$header'");
46b277d5 165
3e6e4ea8 166while (my ($args, $version, $expectation) = splice @tests, 0, 3) {
46b277d5
NC
167 # h2xs warns about what it is writing hence the (possibly unportable)
168 # 2>&1 dupe:
169 # does it run?
170 my $prog = "$^X $lib $extracted_program $args $dupe";
171 @result = `$prog`;
1cb0fb50 172 cmp_ok ($?, "==", 0, "running $prog ");
46b277d5
NC
173 $result = join("",@result);
174
46b277d5
NC
175 #print "# expectation is >$expectation<\n";
176 #print "# result is >$result<\n";
177 # Was the output the list of files that were expected?
1cb0fb50
NC
178 is ($result, $expectation, "running $prog");
179
180 my (%got);
181 find (sub {$got{$File::Find::name}++ unless -d $_}, $name);
46b277d5 182
3e6e4ea8 183 foreach ($expectation =~ /Writing\s+(\S+)/gm) {
7ce7e561 184 if ($^O eq 'VMS') {
ca48d8be
JM
185 if ($Is_VMS_traildot) {
186 $_ .= '.' unless $_ =~ m/\./;
187 }
7ce7e561
CB
188 $_ = lc($_) unless exists $got{$_};
189 }
1cb0fb50
NC
190 ok (-e $_, "check for $_") and delete $got{$_};
191 }
192 my @extra = keys %got;
193 unless (ok (!@extra, "Are any extra files present?")) {
194 print "# These files are unexpectedly present:\n";
195 print "# $_\n" foreach sort @extra;
46b277d5 196 }
3a9c887e 197
1cb0fb50
NC
198 chdir ($name) or die "chdir $name failed: $!";
199 # Aargh. Something wants to load a bit of regexp. And we have to chdir
200 # for ExtUtils::Manifest. Caught between a rock and a hard place, so this
201 # seems the least evil thing to do:
202 push @INC, "../../lib";
203 my ($missing, $extra) = ExtUtils::Manifest::fullcheck();
204 is_deeply ($missing, [], "No files in the MANIFEST should be missing");
205 is_deeply ($extra, [], "and all files present should be in the MANIFEST");
206 pop @INC;
207 chdir ($up) or die "chdir $up failed: $!";
208
dd5f7cf2
AC
209 if ($args =~ / \Q$header\E$/) {
210 my $const_c = File::Spec->catfile($name, 'fallback', 'const-c.inc');
211 my ($found, $diag);
212 if (!open FILE, '<', $const_c) {
213 $diag = "can't open $const_c: $!";
214 }
215 else {
216 while (<FILE>) {
217 next unless /\b Bactrian 2? \b/x;
218 $found = 1;
219 last;
220 }
221 }
222 ok (!$found, "generated $const_c has no Bactrian(2)");
223 diag ($diag) if defined $diag;
224 }
225
4a660237 226 foreach my $leaf (File::Spec->catfile('lib', "$name.pm"), 'Makefile.PL') {
31022a5a 227 my $file = File::Spec->catfile($name, $leaf);
1ae6ead9 228 if (ok (open (FILE, '<', $file), "open $file")) {
3e6e4ea8
NC
229 my $match = qr/use $version;/;
230 my $found;
231 while (<FILE>) {
232 last if $found = /$match/;
233 }
1cb0fb50 234 ok ($found, "looking for /$match/ in $file");
3e6e4ea8
NC
235 close FILE or die "close $file: $!";
236 }
237 }
46b277d5
NC
238 # clean up
239 rmtree($name);
240}
3a9c887e 241
1cb0fb50 242cmp_ok (unlink ($header), "==", 1, "unlink '$header'") or die "\$! is $!";
70cbce25
MB
243
244done_testing();