1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
#!/usr/bin/perl -w
print "1..27\n";
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't' if -d 't';
@INC = '../lib';
}
}
# use warnings;
use strict;
use ExtUtils::MakeMaker;
use ExtUtils::Constant qw (constant_types C_constant XS_constant autoload);
use Config;
use File::Spec::Functions qw(catfile rel2abs);
# Because were are going to be changing directory before running Makefile.PL
my $perl;
$perl = rel2abs( $^X ) unless $] < 5.006; # Hack. Until 5.00503 has rel2abs
# ExtUtils::Constant::C_constant uses $^X inside a comment, and we want to
# compare output to ensure that it is the same. We were probably run as ./perl
# whereas we will run the child with the full path in $perl. So make $^X for
# us the same as our child will see.
$^X = $perl;
print "# perl=$perl\n";
my $runperl = "$perl \"-I../../lib\"";
$| = 1;
my $dir = "ext-$$";
my @files;
print "# $dir being created...\n";
mkdir $dir, 0777 or die "mkdir: $!\n";
my $output = "output";
END {
use File::Path;
print "# $dir being removed...\n";
rmtree($dir);
}
my $package = "ExtTest";
# Test the code that generates 1 and 2 letter name comparisons.
my %compass = (
N => 0, 'NE' => 45, E => 90, SE => 135, S => 180, SW => 225, W => 270, NW => 315
);
my $parent_rfc1149 =
'A Standard for the Transmission of IP Datagrams on Avian Carriers';
my @names = ("FIVE", {name=>"OK6", type=>"PV",},
{name=>"OK7", type=>"PVN",
value=>['"not ok 7\\n\\0ok 7\\n"', 15]},
{name => "FARTHING", type=>"NV"},
{name => "NOT_ZERO", type=>"UV", value=>"~(UV)0"},
{name => "OPEN", type=>"PV", value=>'"/*"', macro=>1},
{name => "CLOSE", type=>"PV", value=>'"*/"',
macro=>["#if 1\n", "#endif\n"]},
{name => "ANSWER", default=>["UV", 42]}, "NOTDEF",
{name => "Yes", type=>"YES"},
{name => "No", type=>"NO"},
{name => "Undef", type=>"UNDEF"},
# OK. It wasn't really designed to allow the creation of dual valued constants.
# It was more for INADDR_ANY INADDR_BROADCAST INADDR_LOOPBACK INADDR_NONE
{name=>"RFC1149", type=>"SV", value=>"sv_2mortal(temp_sv)",
pre=>"SV *temp_sv = newSVpv(RFC1149, 0); "
. "(void) SvUPGRADE(temp_sv,SVt_PVIV); SvIOK_on(temp_sv); "
. "SvIVX(temp_sv) = 1149;"},
);
push @names, $_ foreach keys %compass;
my @names_only = map {(ref $_) ? $_->{name} : $_} @names;
my $types = {};
my $constant_types = constant_types(); # macro defs
my $C_constant = join "\n",
C_constant ($package, undef, "IV", $types, undef, undef, @names);
my $XS_constant = XS_constant ($package, $types); # XS for ExtTest::constant
################ Header
my $header = catfile($dir, "test.h");
push @files, "test.h";
open FH, ">$header" or die "open >$header: $!\n";
print FH <<"EOT";
#define FIVE 5
#define OK6 "ok 6\\n"
#define OK7 1
#define FARTHING 0.25
#define NOT_ZERO 1
#define Yes 0
#define No 1
#define Undef 1
#define RFC1149 "$parent_rfc1149"
#undef NOTDEF
EOT
while (my ($point, $bearing) = each %compass) {
print FH "#define $point $bearing\n"
}
close FH or die "close $header: $!\n";
################ XS
my $xs = catfile($dir, "$package.xs");
push @files, "$package.xs";
open FH, ">$xs" or die "open >$xs: $!\n";
print FH <<'EOT';
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
EOT
print FH "#include \"test.h\"\n\n";
print FH $constant_types;
print FH $C_constant, "\n";
print FH "MODULE = $package PACKAGE = $package\n";
print FH "PROTOTYPES: ENABLE\n";
print FH $XS_constant;
close FH or die "close $xs: $!\n";
################ PM
my $pm = catfile($dir, "$package.pm");
push @files, "$package.pm";
open FH, ">$pm" or die "open >$pm: $!\n";
print FH "package $package;\n";
print FH "use $];\n";
print FH <<'EOT';
use strict;
EOT
printf FH "use warnings;\n" unless $] < 5.006;
print FH <<'EOT';
use Carp;
require Exporter;
require DynaLoader;
use vars qw ($VERSION @ISA @EXPORT_OK $AUTOLOAD);
$VERSION = '0.01';
@ISA = qw(Exporter DynaLoader);
@EXPORT_OK = qw(
EOT
print FH "\t$_\n" foreach (@names_only);
print FH ");\n";
print FH autoload ($package, $]);
print FH "bootstrap $package \$VERSION;\n1;\n__END__\n";
close FH or die "close $pm: $!\n";
################ test.pl
my $testpl = catfile($dir, "test.pl");
push @files, "test.pl";
open FH, ">$testpl" or die "open >$testpl: $!\n";
print FH "use strict;\n";
print FH "use $package qw(@names_only);\n";
print FH <<"EOT";
print "1..1\n";
if (open OUTPUT, ">$output") {
print "ok 1\n";
select OUTPUT;
} else {
print "not ok 1 # Failed to open '$output': $!\n";
exit 1;
}
EOT
print FH << 'EOT';
# What follows goes to the temporary file.
# IV
my $five = FIVE;
if ($five == 5) {
print "ok 5\n";
} else {
print "not ok 5 # $five\n";
}
# PV
print OK6;
# PVN containing embedded \0s
$_ = OK7;
s/.*\0//s;
print;
# NV
my $farthing = FARTHING;
if ($farthing == 0.25) {
print "ok 8\n";
} else {
print "not ok 8 # $farthing\n";
}
# UV
my $not_zero = NOT_ZERO;
if ($not_zero > 0 && $not_zero == ~0) {
print "ok 9\n";
} else {
print "not ok 9 # \$not_zero=$not_zero ~0=" . (~0) . "\n";
}
# Value includes a "*/" in an attempt to bust out of a C comment.
# Also tests custom cpp #if clauses
my $close = CLOSE;
if ($close eq '*/') {
print "ok 10\n";
} else {
print "not ok 10 # \$close='$close'\n";
}
# Default values if macro not defined.
my $answer = ANSWER;
if ($answer == 42) {
print "ok 11\n";
} else {
print "not ok 11 # What do you get if you multiply six by nine? '$answer'\n";
}
# not defined macro
my $notdef = eval { NOTDEF; };
if (defined $notdef) {
print "not ok 12 # \$notdef='$notdef'\n";
} elsif ($@ !~ /Your vendor has not defined ExtTest macro NOTDEF/) {
print "not ok 12 # \$@='$@'\n";
} else {
print "ok 12\n";
}
# not a macro
my $notthere = eval { &ExtTest::NOTTHERE; };
if (defined $notthere) {
print "not ok 13 # \$notthere='$notthere'\n";
} elsif ($@ !~ /NOTTHERE is not a valid ExtTest macro/) {
chomp $@;
print "not ok 13 # \$@='$@'\n";
} else {
print "ok 13\n";
}
# Truth
my $yes = Yes;
if ($yes) {
print "ok 14\n";
} else {
print "not ok 14 # $yes='\$yes'\n";
}
# Falsehood
my $no = No;
if (defined $no and !$no) {
print "ok 15\n";
} else {
print "not ok 15 # \$no=" . defined ($no) ? "'$no'\n" : "undef\n";
}
# Undef
my $undef = Undef;
unless (defined $undef) {
print "ok 16\n";
} else {
print "not ok 16 # \$undef='$undef'\n";
}
# invalid macro (chosen to look like a mix up between No and SW)
$notdef = eval { &ExtTest::So };
if (defined $notdef) {
print "not ok 17 # \$notdef='$notdef'\n";
} elsif ($@ !~ /^So is not a valid ExtTest macro/) {
print "not ok 17 # \$@='$@'\n";
} else {
print "ok 17\n";
}
# invalid defined macro
$notdef = eval { &ExtTest::EW };
if (defined $notdef) {
print "not ok 18 # \$notdef='$notdef'\n";
} elsif ($@ !~ /^EW is not a valid ExtTest macro/) {
print "not ok 18 # \$@='$@'\n";
} else {
print "ok 18\n";
}
my %compass = (
EOT
while (my ($point, $bearing) = each %compass) {
print FH "'$point' => $bearing, "
}
print FH <<'EOT';
);
my $fail;
while (my ($point, $bearing) = each %compass) {
my $val = eval $point;
if ($@) {
print "# $point: \$@='$@'\n";
$fail = 1;
} elsif (!defined $bearing) {
print "# $point: \$val=undef\n";
$fail = 1;
} elsif ($val != $bearing) {
print "# $point: \$val=$val, not $bearing\n";
$fail = 1;
}
}
if ($fail) {
print "not ok 19\n";
} else {
print "ok 19\n";
}
EOT
print FH <<"EOT";
my \$rfc1149 = RFC1149;
if (\$rfc1149 ne "$parent_rfc1149") {
print "not ok 20 # '\$rfc1149' ne '$parent_rfc1149'\n";
} else {
print "ok 20\n";
}
if (\$rfc1149 != 1149) {
printf "not ok 21 # %d != 1149\n", \$rfc1149;
} else {
print "ok 21\n";
}
EOT
print FH <<'EOT';
# test macro=>1
my $open = OPEN;
if ($open eq '/*') {
print "ok 22\n";
} else {
print "not ok 22 # \$open='$open'\n";
}
EOT
close FH or die "close $testpl: $!\n";
################ Makefile.PL
# We really need a Makefile.PL because make test for a no dynamic linking perl
# will run Makefile.PL again as part of the "make perl" target.
my $makefilePL = catfile($dir, "Makefile.PL");
push @files, "Makefile.PL";
open FH, ">$makefilePL" or die "open >$makefilePL: $!\n";
print FH <<"EOT";
#!$perl -w
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => "$package",
'VERSION_FROM' => "$package.pm", # finds \$VERSION
(\$] >= 5.005 ?
(#ABSTRACT_FROM => "$package.pm", # XXX add this
AUTHOR => "$0") : ())
);
EOT
close FH or die "close $makefilePL: $!\n";
chdir $dir or die $!; push @INC, '../../lib';
END {chdir ".." or warn $!};
my @perlout = `$runperl Makefile.PL PERL_CORE=1`;
if ($?) {
print "not ok 1 # $runperl Makefile.PL failed: $?\n";
print "# $_" foreach @perlout;
exit($?);
} else {
print "ok 1\n";
}
my $makefile = ($^O eq 'VMS' ? 'descrip' : 'Makefile');
my $makefile_ext = ($^O eq 'VMS' ? '.mms' : '');
if (-f "$makefile$makefile_ext") {
print "ok 2\n";
} else {
print "not ok 2\n";
}
my $makefile_rename = ($^O eq 'VMS' ? '.mms' : '.old');
push @files, "$makefile$makefile_rename"; # Renamed by make clean
my $make = $Config{make};
$make = $ENV{MAKE} if exists $ENV{MAKE};
if ($^O eq 'MSWin32' && $make eq 'nmake') { $make .= " -nologo"; }
my @makeout;
print "# make = '$make'\n";
@makeout = `$make`;
if ($?) {
print "not ok 3 # $make failed: $?\n";
print "# $_" foreach @makeout;
exit($?);
} else {
print "ok 3\n";
}
if ($Config{usedl}) {
print "ok 4\n";
} else {
my $makeperl = "$make perl";
print "# make = '$makeperl'\n";
@makeout = `$makeperl`;
if ($?) {
print "not ok 4 # $makeperl failed: $?\n";
print "# $_" foreach @makeout;
exit($?);
} else {
print "ok 4\n";
}
}
push @files, $output;
my $maketest = "$make test";
print "# make = '$maketest'\n";
@makeout = `$maketest`;
if (open OUTPUT, "<$output") {
print while <OUTPUT>;
close OUTPUT or print "# Close $output failed: $!\n";
} else {
# Harness will report missing test results at this point.
print "# Open <$output failed: $!\n";
}
my $test = 23;
if ($?) {
print "not ok $test # $maketest failed: $?\n";
print "# $_" foreach @makeout;
} else {
print "ok $test - maketest\n";
}
$test++;
# -x is busted on Win32 < 5.6.1, so we emulate it.
my $regen;
if( $^O eq 'MSWin32' && $] <= 5.006001 ) {
open(REGENTMP, ">regentmp") or die $!;
open(XS, "$package.xs") or die $!;
my $saw_shebang;
while(<XS>) {
$saw_shebang++ if /^#!.*/i ;
print REGENTMP $_ if $saw_shebang;
}
close XS; close REGENTMP;
$regen = `$runperl regentmp`;
unlink 'regentmp';
}
else {
$regen = `$runperl -x $package.xs`;
}
if ($?) {
print "not ok $test # $runperl -x $package.xs failed: $?\n";
} else {
print "ok $test - regen\n";
}
$test++;
my $expect = $constant_types . $C_constant .
"\n#### XS Section:\n" . $XS_constant;
if ($expect eq $regen) {
print "ok $test - regen worked\n";
} else {
print "not ok $test - regen worked\n";
# open FOO, ">expect"; print FOO $expect;
# open FOO, ">regen"; print FOO $regen; close FOO;
}
$test++;
my $makeclean = "$make clean";
print "# make = '$makeclean'\n";
@makeout = `$makeclean`;
if ($?) {
print "not ok $test # $make failed: $?\n";
print "# $_" foreach @makeout;
} else {
print "ok $test\n";
}
$test++;
foreach (@files) {
unlink $_ or warn "unlink $_: $!";
}
my $fail;
opendir DIR, "." or die "opendir '.': $!";
while (defined (my $entry = readdir DIR)) {
next if $entry =~ /^\.\.?$/;
print "# Extra file '$entry'\n";
$fail = 1;
}
closedir DIR or warn "closedir '.': $!";
if ($fail) {
print "not ok $test\n";
} else {
print "ok $test\n";
}
|