Commit | Line | Data |
---|---|---|
69026470 | 1 | # |
f69d9fdf KW |
2 | # t/test.pl - most of Test::More functionality without the fuss, plus |
3 | # has mappings native_to_latin1 and latin1_to_native so that fewer tests | |
4 | # on non ASCII-ish platforms need to be skipped | |
485f531e DL |
5 | |
6 | ||
7 | # NOTE: | |
8 | # | |
9 | # Increment ($x++) has a certain amount of cleverness for things like | |
10 | # | |
11 | # $x = 'zz'; | |
12 | # $x++; # $x eq 'aaa'; | |
69026470 | 13 | # |
485f531e DL |
14 | # stands more chance of breaking than just a simple |
15 | # | |
16 | # $x = $x + 1 | |
17 | # | |
18 | # In this file, we use the latter "Baby Perl" approach, and increment | |
19 | # will be worked over by t/op/inc.t | |
69026470 | 20 | |
dcc7f481 | 21 | $Level = 1; |
69026470 JH |
22 | my $test = 1; |
23 | my $planned; | |
6137113d | 24 | my $noplan; |
5fe9b82b | 25 | my $Perl; # Safer version of $^X set by which_perl() |
69026470 | 26 | |
ef237063 NC |
27 | # This defines ASCII/UTF-8 vs EBCDIC/UTF-EBCDIC |
28 | $::IS_ASCII = ord 'A' == 65; | |
29 | $::IS_EBCDIC = ord 'A' == 193; | |
30 | ||
7d932aad | 31 | $TODO = 0; |
b6345914 | 32 | $NO_ENDING = 0; |
02455492 | 33 | $Tests_Are_Passing = 1; |
7d932aad | 34 | |
3d66076a MS |
35 | # Use this instead of print to avoid interference while testing globals. |
36 | sub _print { | |
37 | local($\, $", $,) = (undef, ' ', ''); | |
38 | print STDOUT @_; | |
39 | } | |
40 | ||
41 | sub _print_stderr { | |
42 | local($\, $", $,) = (undef, ' ', ''); | |
43 | print STDERR @_; | |
44 | } | |
45 | ||
69026470 JH |
46 | sub plan { |
47 | my $n; | |
48 | if (@_ == 1) { | |
49 | $n = shift; | |
6137113d NC |
50 | if ($n eq 'no_plan') { |
51 | undef $n; | |
52 | $noplan = 1; | |
53 | } | |
69026470 JH |
54 | } else { |
55 | my %plan = @_; | |
8210c8d3 | 56 | $n = $plan{tests}; |
69026470 | 57 | } |
3d66076a | 58 | _print "1..$n\n" unless $noplan; |
69026470 JH |
59 | $planned = $n; |
60 | } | |
61 | ||
c4ef7183 MS |
62 | |
63 | # Set the plan at the end. See Test::More::done_testing. | |
64 | sub done_testing { | |
65 | my $n = $test - 1; | |
66 | $n = shift if @_; | |
67 | ||
68 | _print "1..$n\n"; | |
69 | $planned = $n; | |
70 | } | |
71 | ||
72 | ||
69026470 JH |
73 | END { |
74 | my $ran = $test - 1; | |
6137113d NC |
75 | if (!$NO_ENDING) { |
76 | if (defined $planned && $planned != $ran) { | |
3d66076a | 77 | _print_stderr |
6137113d NC |
78 | "# Looks like you planned $planned tests but ran $ran.\n"; |
79 | } elsif ($noplan) { | |
3d66076a | 80 | _print "1..$ran\n"; |
6137113d | 81 | } |
69026470 JH |
82 | } |
83 | } | |
84 | ||
de522f7a | 85 | sub _diag { |
cf8feb78 | 86 | return unless @_; |
92c9394b | 87 | my @mess = _comment(@_); |
44826442 | 88 | $TODO ? _print(@mess) : _print_stderr(@mess); |
de522f7a MS |
89 | } |
90 | ||
93f09d7b | 91 | # Use this instead of "print STDERR" when outputting failure diagnostic |
92c9394b | 92 | # messages |
485f531e DL |
93 | sub diag { |
94 | _diag(@_); | |
95 | } | |
96 | ||
93f09d7b | 97 | # Use this instead of "print" when outputting informational messages |
92c9394b MS |
98 | sub note { |
99 | return unless @_; | |
100 | _print( _comment(@_) ); | |
101 | } | |
102 | ||
445876fa KW |
103 | sub is_miniperl { |
104 | return !defined &DynaLoader::boot_DynaLoader; | |
105 | } | |
106 | ||
92c9394b MS |
107 | sub _comment { |
108 | return map { /^#/ ? "$_\n" : "# $_\n" } | |
109 | map { split /\n/ } @_; | |
110 | } | |
111 | ||
f12ade25 FC |
112 | sub _have_dynamic_extension { |
113 | my $extension = shift; | |
114 | unless (eval {require Config; 1}) { | |
115 | warn "test.pl had problems loading Config: $@"; | |
116 | return 1; | |
117 | } | |
118 | $extension =~ s!::!/!g; | |
119 | return 1 if ($Config::Config{extensions} =~ /\b$extension\b/); | |
120 | } | |
121 | ||
69026470 JH |
122 | sub skip_all { |
123 | if (@_) { | |
7bb7fa38 | 124 | _print "1..0 # Skip @_\n"; |
69026470 | 125 | } else { |
3d66076a | 126 | _print "1..0\n"; |
69026470 JH |
127 | } |
128 | exit(0); | |
129 | } | |
130 | ||
c82d0e1e | 131 | sub skip_all_if_miniperl { |
445876fa | 132 | skip_all(@_) if is_miniperl(); |
c82d0e1e NC |
133 | } |
134 | ||
273be65c | 135 | sub skip_all_without_dynamic_extension { |
f12ade25 | 136 | my ($extension) = @_; |
273be65c | 137 | skip_all("no dynamic loading on miniperl, no $extension") if is_miniperl(); |
f12ade25 | 138 | return if &_have_dynamic_extension; |
7465bc32 NC |
139 | skip_all("$extension was not built"); |
140 | } | |
141 | ||
e05e9c3d NC |
142 | sub skip_all_without_perlio { |
143 | skip_all('no PerlIO') unless PerlIO::Layer->find('perlio'); | |
144 | } | |
145 | ||
9c8416b2 | 146 | sub skip_all_without_config { |
cb01154c | 147 | unless (eval {require Config; 1}) { |
9c8416b2 NC |
148 | warn "test.pl had problems loading Config: $@"; |
149 | return; | |
150 | } | |
77ba2250 NC |
151 | foreach (@_) { |
152 | next if $Config::Config{$_}; | |
153 | my $key = $_; # Need to copy, before trying to modify. | |
9c8416b2 NC |
154 | $key =~ s/^use//; |
155 | $key =~ s/^d_//; | |
77ba2250 | 156 | skip_all("no $key"); |
9c8416b2 | 157 | } |
9c8416b2 NC |
158 | } |
159 | ||
9c86860c | 160 | sub find_git_or_skip { |
fb7d5399 | 161 | my ($source_dir, $reason); |
962ff913 | 162 | if (-d '.git') { |
fb7d5399 | 163 | $source_dir = '.'; |
962ff913 | 164 | } elsif (-l 'MANIFEST' && -l 'AUTHORS') { |
7eccb5a9 NC |
165 | my $where = readlink 'MANIFEST'; |
166 | die "Can't readling MANIFEST: $!" unless defined $where; | |
167 | die "Confusing symlink target for MANIFEST, '$where'" | |
168 | unless $where =~ s!/MANIFEST\z!!; | |
169 | if (-d "$where/.git") { | |
170 | # Looks like we are in a symlink tree | |
fb7d5399 NC |
171 | if (exists $ENV{GIT_DIR}) { |
172 | diag("Found source tree at $where, but \$ENV{GIT_DIR} is $ENV{GIT_DIR}. Not changing it"); | |
173 | } else { | |
174 | note("Found source tree at $where, setting \$ENV{GIT_DIR}"); | |
175 | $ENV{GIT_DIR} = "$where/.git"; | |
176 | } | |
177 | $source_dir = $where; | |
7eccb5a9 NC |
178 | } |
179 | } | |
fb7d5399 | 180 | if ($source_dir) { |
962ff913 NC |
181 | my $version_string = `git --version`; |
182 | if (defined $version_string | |
183 | && $version_string =~ /\Agit version (\d+\.\d+\.\d+)(.*)/) { | |
fb7d5399 | 184 | return $source_dir if eval "v$1 ge v1.5.0"; |
962ff913 NC |
185 | # If you have earlier than 1.5.0 and it works, change this test |
186 | $reason = "in git checkout, but git version '$1$2' too old"; | |
187 | } else { | |
188 | $reason = "in git checkout, but cannot run git"; | |
189 | } | |
190 | } else { | |
191 | $reason = 'not being run from a git checkout'; | |
192 | } | |
9c86860c NC |
193 | skip_all($reason) if $_[0] && $_[0] eq 'all'; |
194 | skip($reason, @_); | |
195 | } | |
196 | ||
779248a0 CK |
197 | sub BAIL_OUT { |
198 | my ($reason) = @_; | |
199 | _print("Bail out! $reason\n"); | |
200 | exit 255; | |
201 | } | |
202 | ||
69026470 | 203 | sub _ok { |
7d932aad | 204 | my ($pass, $where, $name, @mess) = @_; |
69026470 JH |
205 | # Do not try to microoptimize by factoring out the "not ". |
206 | # VMS will avenge. | |
7d932aad MS |
207 | my $out; |
208 | if ($name) { | |
b734d6c9 MS |
209 | # escape out '#' or it will interfere with '# skip' and such |
210 | $name =~ s/#/\\#/g; | |
7d932aad | 211 | $out = $pass ? "ok $test - $name" : "not ok $test - $name"; |
69026470 | 212 | } else { |
7d932aad | 213 | $out = $pass ? "ok $test" : "not ok $test"; |
69026470 | 214 | } |
7d932aad | 215 | |
02455492 NC |
216 | if ($TODO) { |
217 | $out = $out . " # TODO $TODO"; | |
218 | } else { | |
219 | $Tests_Are_Passing = 0 unless $pass; | |
220 | } | |
221 | ||
3d66076a | 222 | _print "$out\n"; |
7d932aad | 223 | |
9b9ae264 DM |
224 | if ($pass) { |
225 | note @mess; # Ensure that the message is properly escaped. | |
226 | } | |
227 | else { | |
ffb73d65 CB |
228 | my $msg = "# Failed test $test - "; |
229 | $msg.= "$name " if $name; | |
230 | $msg .= "$where\n"; | |
231 | _diag $msg; | |
9b9ae264 | 232 | _diag @mess; |
69026470 | 233 | } |
7d932aad | 234 | |
485f531e | 235 | $test = $test + 1; # don't use ++ |
1577bb16 MS |
236 | |
237 | return $pass; | |
69026470 JH |
238 | } |
239 | ||
240 | sub _where { | |
dcc7f481 | 241 | my @caller = caller($Level); |
69026470 JH |
242 | return "at $caller[1] line $caller[2]"; |
243 | } | |
244 | ||
1d662fb6 | 245 | # DON'T use this for matches. Use like() instead. |
c3029c66 | 246 | sub ok ($@) { |
7d932aad MS |
247 | my ($pass, $name, @mess) = @_; |
248 | _ok($pass, _where(), $name, @mess); | |
69026470 JH |
249 | } |
250 | ||
b3c72391 JH |
251 | sub _q { |
252 | my $x = shift; | |
253 | return 'undef' unless defined $x; | |
254 | my $q = $x; | |
d279d8f8 NC |
255 | $q =~ s/\\/\\\\/g; |
256 | $q =~ s/'/\\'/g; | |
b3c72391 JH |
257 | return "'$q'"; |
258 | } | |
259 | ||
677fb045 NC |
260 | sub _qq { |
261 | my $x = shift; | |
262 | return defined $x ? '"' . display ($x) . '"' : 'undef'; | |
263 | }; | |
264 | ||
265 | # keys are the codes \n etc map to, values are 2 char strings such as \n | |
266 | my %backslash_escape; | |
267 | foreach my $x (split //, 'nrtfa\\\'"') { | |
268 | $backslash_escape{ord eval "\"\\$x\""} = "\\$x"; | |
269 | } | |
270 | # A way to display scalars containing control characters and Unicode. | |
271 | # Trying to avoid setting $_, or relying on local $_ to work. | |
272 | sub display { | |
273 | my @result; | |
274 | foreach my $x (@_) { | |
275 | if (defined $x and not ref $x) { | |
276 | my $y = ''; | |
277 | foreach my $c (unpack("U*", $x)) { | |
278 | if ($c > 255) { | |
11ea18f2 | 279 | $y = $y . sprintf "\\x{%x}", $c; |
677fb045 | 280 | } elsif ($backslash_escape{$c}) { |
11ea18f2 | 281 | $y = $y . $backslash_escape{$c}; |
677fb045 NC |
282 | } else { |
283 | my $z = chr $c; # Maybe we can get away with a literal... | |
1cfccccd KW |
284 | if ($z =~ /[[:^print:]]/) { |
285 | ||
286 | # Use octal for characters traditionally expressed as | |
287 | # such: the low controls | |
288 | if ($c <= 037) { | |
289 | $z = sprintf "\\%03o", $c; | |
290 | } else { | |
291 | $z = sprintf "\\x{%x}", $c; | |
292 | } | |
293 | } | |
11ea18f2 | 294 | $y = $y . $z; |
677fb045 NC |
295 | } |
296 | } | |
297 | $x = $y; | |
298 | } | |
299 | return $x unless wantarray; | |
300 | push @result, $x; | |
301 | } | |
302 | return @result; | |
303 | } | |
304 | ||
c3029c66 | 305 | sub is ($$@) { |
7d932aad | 306 | my ($got, $expected, $name, @mess) = @_; |
c831d34f MS |
307 | |
308 | my $pass; | |
309 | if( !defined $got || !defined $expected ) { | |
310 | # undef only matches undef | |
311 | $pass = !defined $got && !defined $expected; | |
312 | } | |
313 | else { | |
314 | $pass = $got eq $expected; | |
315 | } | |
316 | ||
69026470 | 317 | unless ($pass) { |
d5f8084a KW |
318 | unshift(@mess, "# got "._qq($got)."\n", |
319 | "# expected "._qq($expected)."\n"); | |
69026470 | 320 | } |
7d932aad | 321 | _ok($pass, _where(), $name, @mess); |
69026470 JH |
322 | } |
323 | ||
c3029c66 | 324 | sub isnt ($$@) { |
3e90d5a3 | 325 | my ($got, $isnt, $name, @mess) = @_; |
c831d34f MS |
326 | |
327 | my $pass; | |
328 | if( !defined $got || !defined $isnt ) { | |
329 | # undef only matches undef | |
330 | $pass = defined $got || defined $isnt; | |
331 | } | |
332 | else { | |
333 | $pass = $got ne $isnt; | |
334 | } | |
335 | ||
3e90d5a3 | 336 | unless( $pass ) { |
d5f8084a | 337 | unshift(@mess, "# it should not be "._qq($got)."\n", |
3e90d5a3 MS |
338 | "# but it is.\n"); |
339 | } | |
340 | _ok($pass, _where(), $name, @mess); | |
341 | } | |
342 | ||
c3029c66 | 343 | sub cmp_ok ($$$@) { |
58d76dfd JH |
344 | my($got, $type, $expected, $name, @mess) = @_; |
345 | ||
346 | my $pass; | |
347 | { | |
348 | local $^W = 0; | |
349 | local($@,$!); # don't interfere with $@ | |
350 | # eval() sometimes resets $! | |
351 | $pass = eval "\$got $type \$expected"; | |
352 | } | |
353 | unless ($pass) { | |
354 | # It seems Irix long doubles can have 2147483648 and 2147483648 | |
93f09d7b | 355 | # that stringify to the same thing but are actually numerically |
58d76dfd JH |
356 | # different. Display the numbers if $type isn't a string operator, |
357 | # and the numbers are stringwise the same. | |
358 | # (all string operators have alphabetic names, so tr/a-z// is true) | |
93f09d7b PA |
359 | # This will also show numbers for some unneeded cases, but will |
360 | # definitely be helpful for things such as == and <= that fail | |
58d76dfd JH |
361 | if ($got eq $expected and $type !~ tr/a-z//) { |
362 | unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n"; | |
363 | } | |
d5f8084a KW |
364 | unshift(@mess, "# got "._qq($got)."\n", |
365 | "# expected $type "._qq($expected)."\n"); | |
58d76dfd JH |
366 | } |
367 | _ok($pass, _where(), $name, @mess); | |
368 | } | |
369 | ||
370 | # Check that $got is within $range of $expected | |
371 | # if $range is 0, then check it's exact | |
372 | # else if $expected is 0, then $range is an absolute value | |
373 | # otherwise $range is a fractional error. | |
374 | # Here $range must be numeric, >= 0 | |
375 | # Non numeric ranges might be a useful future extension. (eg %) | |
c3029c66 | 376 | sub within ($$$@) { |
58d76dfd JH |
377 | my ($got, $expected, $range, $name, @mess) = @_; |
378 | my $pass; | |
379 | if (!defined $got or !defined $expected or !defined $range) { | |
380 | # This is a fail, but doesn't need extra diagnostics | |
381 | } elsif ($got !~ tr/0-9// or $expected !~ tr/0-9// or $range !~ tr/0-9//) { | |
382 | # This is a fail | |
383 | unshift @mess, "# got, expected and range must be numeric\n"; | |
384 | } elsif ($range < 0) { | |
385 | # This is also a fail | |
386 | unshift @mess, "# range must not be negative\n"; | |
387 | } elsif ($range == 0) { | |
388 | # Within 0 is == | |
389 | $pass = $got == $expected; | |
390 | } elsif ($expected == 0) { | |
391 | # If expected is 0, treat range as absolute | |
392 | $pass = ($got <= $range) && ($got >= - $range); | |
393 | } else { | |
394 | my $diff = $got - $expected; | |
395 | $pass = abs ($diff / $expected) < $range; | |
396 | } | |
397 | unless ($pass) { | |
398 | if ($got eq $expected) { | |
399 | unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n"; | |
400 | } | |
d5f8084a KW |
401 | unshift@mess, "# got "._qq($got)."\n", |
402 | "# expected "._qq($expected)." (within "._qq($range).")\n"; | |
58d76dfd JH |
403 | } |
404 | _ok($pass, _where(), $name, @mess); | |
405 | } | |
406 | ||
69026470 | 407 | # Note: this isn't quite as fancy as Test::More::like(). |
724aa791 JC |
408 | |
409 | sub like ($$@) { like_yn (0,@_) }; # 0 for - | |
410 | sub unlike ($$@) { like_yn (1,@_) }; # 1 for un- | |
411 | ||
412 | sub like_yn ($$$@) { | |
0973e8e6 | 413 | my ($flip, undef, $expected, $name, @mess) = @_; |
69026470 | 414 | my $pass; |
0973e8e6 NC |
415 | $pass = $_[1] =~ /$expected/ if !$flip; |
416 | $pass = $_[1] !~ /$expected/ if $flip; | |
724aa791 | 417 | unless ($pass) { |
0973e8e6 | 418 | unshift(@mess, "# got '$_[1]'\n", |
5a4a8c8b NC |
419 | $flip |
420 | ? "# expected !~ /$expected/\n" : "# expected /$expected/\n"); | |
69026470 | 421 | } |
5693d826 | 422 | local $Level = $Level + 1; |
7d932aad | 423 | _ok($pass, _where(), $name, @mess); |
69026470 JH |
424 | } |
425 | ||
426 | sub pass { | |
427 | _ok(1, '', @_); | |
428 | } | |
429 | ||
430 | sub fail { | |
431 | _ok(0, _where(), @_); | |
432 | } | |
433 | ||
ad20d923 | 434 | sub curr_test { |
cf8feb78 | 435 | $test = shift if @_; |
ad20d923 MS |
436 | return $test; |
437 | } | |
438 | ||
3e90d5a3 | 439 | sub next_test { |
178eff92 | 440 | my $retval = $test; |
485f531e | 441 | $test = $test + 1; # don't use ++ |
178eff92 | 442 | $retval; |
3e90d5a3 MS |
443 | } |
444 | ||
69026470 JH |
445 | # Note: can't pass multipart messages since we try to |
446 | # be compatible with Test::More::skip(). | |
447 | sub skip { | |
7d932aad | 448 | my $why = shift; |
982b7cb7 | 449 | my $n = @_ ? shift : 1; |
69026470 | 450 | for (1..$n) { |
7bb7fa38 | 451 | _print "ok $test # skip $why\n"; |
485f531e | 452 | $test = $test + 1; |
69026470 JH |
453 | } |
454 | local $^W = 0; | |
455 | last SKIP; | |
456 | } | |
457 | ||
8c49cd2e | 458 | sub skip_if_miniperl { |
445876fa | 459 | skip(@_) if is_miniperl(); |
8c49cd2e NC |
460 | } |
461 | ||
f12ade25 FC |
462 | sub skip_without_dynamic_extension { |
463 | my ($extension) = @_; | |
464 | skip("no dynamic loading on miniperl, no $extension") if is_miniperl(); | |
465 | return if &_have_dynamic_extension; | |
688af3a7 | 466 | skip("$extension was not built"); |
f12ade25 FC |
467 | } |
468 | ||
09f04786 MS |
469 | sub todo_skip { |
470 | my $why = shift; | |
471 | my $n = @_ ? shift : 1; | |
472 | ||
473 | for (1..$n) { | |
7bb7fa38 | 474 | _print "not ok $test # TODO & SKIP $why\n"; |
485f531e | 475 | $test = $test + 1; |
09f04786 MS |
476 | } |
477 | local $^W = 0; | |
478 | last TODO; | |
479 | } | |
480 | ||
69026470 JH |
481 | sub eq_array { |
482 | my ($ra, $rb) = @_; | |
483 | return 0 unless $#$ra == $#$rb; | |
484 | for my $i (0..$#$ra) { | |
8210c8d3 | 485 | next if !defined $ra->[$i] && !defined $rb->[$i]; |
135d199b DM |
486 | return 0 if !defined $ra->[$i]; |
487 | return 0 if !defined $rb->[$i]; | |
69026470 JH |
488 | return 0 unless $ra->[$i] eq $rb->[$i]; |
489 | } | |
490 | return 1; | |
491 | } | |
492 | ||
677fb045 NC |
493 | sub eq_hash { |
494 | my ($orig, $suspect) = @_; | |
495 | my $fail; | |
496 | while (my ($key, $value) = each %$suspect) { | |
497 | # Force a hash recompute if this perl's internals can cache the hash key. | |
498 | $key = "" . $key; | |
499 | if (exists $orig->{$key}) { | |
500 | if ($orig->{$key} ne $value) { | |
3d66076a | 501 | _print "# key ", _qq($key), " was ", _qq($orig->{$key}), |
de522f7a | 502 | " now ", _qq($value), "\n"; |
677fb045 NC |
503 | $fail = 1; |
504 | } | |
505 | } else { | |
3d66076a | 506 | _print "# key ", _qq($key), " is ", _qq($value), |
75385f53 | 507 | ", not in original.\n"; |
677fb045 NC |
508 | $fail = 1; |
509 | } | |
510 | } | |
511 | foreach (keys %$orig) { | |
512 | # Force a hash recompute if this perl's internals can cache the hash key. | |
513 | $_ = "" . $_; | |
514 | next if (exists $suspect->{$_}); | |
3d66076a | 515 | _print "# key ", _qq($_), " was ", _qq($orig->{$_}), " now missing.\n"; |
677fb045 NC |
516 | $fail = 1; |
517 | } | |
518 | !$fail; | |
519 | } | |
520 | ||
d47bdea7 | 521 | # We only provide a subset of the Test::More functionality. |
c3029c66 | 522 | sub require_ok ($) { |
69026470 | 523 | my ($require) = @_; |
d47bdea7 NC |
524 | if ($require =~ tr/[A-Za-z0-9:.]//c) { |
525 | fail("Invalid character in \"$require\", passed to require_ok"); | |
526 | } else { | |
527 | eval <<REQUIRE_OK; | |
69026470 JH |
528 | require $require; |
529 | REQUIRE_OK | |
d47bdea7 NC |
530 | is($@, '', _where(), "require $require"); |
531 | } | |
69026470 JH |
532 | } |
533 | ||
c3029c66 | 534 | sub use_ok ($) { |
69026470 | 535 | my ($use) = @_; |
d47bdea7 NC |
536 | if ($use =~ tr/[A-Za-z0-9:.]//c) { |
537 | fail("Invalid character in \"$use\", passed to use"); | |
538 | } else { | |
539 | eval <<USE_OK; | |
69026470 JH |
540 | use $use; |
541 | USE_OK | |
d47bdea7 NC |
542 | is($@, '', _where(), "use $use"); |
543 | } | |
69026470 JH |
544 | } |
545 | ||
137352a2 RGS |
546 | # runperl - Runs a separate perl interpreter. |
547 | # Arguments : | |
548 | # switches => [ command-line switches ] | |
549 | # nolib => 1 # don't use -I../lib (included by default) | |
3d7a9343 | 550 | # non_portable => Don't warn if a one liner contains quotes |
137352a2 | 551 | # prog => one-liner (avoid quotes) |
d83945bc | 552 | # progs => [ multi-liner (avoid quotes) ] |
137352a2 RGS |
553 | # progfile => perl script |
554 | # stdin => string to feed the stdin | |
555 | # stderr => redirect stderr to stdout | |
556 | # args => [ command-line arguments to the perl program ] | |
cb9c5e20 | 557 | # verbose => print the command line |
137352a2 RGS |
558 | |
559 | my $is_mswin = $^O eq 'MSWin32'; | |
560 | my $is_netware = $^O eq 'NetWare'; | |
137352a2 | 561 | my $is_vms = $^O eq 'VMS'; |
e67ed694 | 562 | my $is_cygwin = $^O eq 'cygwin'; |
137352a2 | 563 | |
cb9c5e20 JH |
564 | sub _quote_args { |
565 | my ($runperl, $args) = @_; | |
566 | ||
567 | foreach (@$args) { | |
568 | # In VMS protect with doublequotes because otherwise | |
569 | # DCL will lowercase -- unless already doublequoted. | |
ea9ac5ad | 570 | $_ = q(").$_.q(") if $is_vms && !/^\"/ && length($_) > 0; |
1cce9906 | 571 | $runperl = $runperl . ' ' . $_; |
cb9c5e20 | 572 | } |
1cce9906 | 573 | return $runperl; |
cb9c5e20 JH |
574 | } |
575 | ||
4cd2bd1f | 576 | sub _create_runperl { # Create the string to qx in runperl(). |
137352a2 | 577 | my %args = @_; |
5fe9b82b JH |
578 | my $runperl = which_perl(); |
579 | if ($runperl =~ m/\s/) { | |
580 | $runperl = qq{"$runperl"}; | |
581 | } | |
6cf707aa RGS |
582 | #- this allows, for example, to set PERL_RUNPERL_DEBUG=/usr/bin/valgrind |
583 | if ($ENV{PERL_RUNPERL_DEBUG}) { | |
584 | $runperl = "$ENV{PERL_RUNPERL_DEBUG} $runperl"; | |
585 | } | |
f93a5f07 | 586 | unless ($args{nolib}) { |
11ea18f2 | 587 | $runperl = $runperl . ' "-I../lib"'; # doublequotes because of VMS |
137352a2 | 588 | } |
d83945bc | 589 | if ($args{switches}) { |
343d4a7b JH |
590 | local $Level = 2; |
591 | die "test.pl:runperl(): 'switches' must be an ARRAYREF " . _where() | |
592 | unless ref $args{switches} eq "ARRAY"; | |
1cce9906 | 593 | $runperl = _quote_args($runperl, $args{switches}); |
d83945bc | 594 | } |
137352a2 | 595 | if (defined $args{prog}) { |
21820af6 JH |
596 | die "test.pl:runperl(): both 'prog' and 'progs' cannot be used " . _where() |
597 | if defined $args{progs}; | |
d83945bc A |
598 | $args{progs} = [$args{prog}] |
599 | } | |
600 | if (defined $args{progs}) { | |
21820af6 JH |
601 | die "test.pl:runperl(): 'progs' must be an ARRAYREF " . _where() |
602 | unless ref $args{progs} eq "ARRAY"; | |
d83945bc | 603 | foreach my $prog (@{$args{progs}}) { |
3d7a9343 NC |
604 | if ($prog =~ tr/'"// && !$args{non_portable}) { |
605 | warn "quotes in prog >>$prog<< are not portable"; | |
606 | } | |
d83945bc | 607 | if ($is_mswin || $is_netware || $is_vms) { |
11ea18f2 | 608 | $runperl = $runperl . qq ( -e "$prog" ); |
d83945bc A |
609 | } |
610 | else { | |
11ea18f2 | 611 | $runperl = $runperl . qq ( -e '$prog' ); |
d83945bc A |
612 | } |
613 | } | |
137352a2 | 614 | } elsif (defined $args{progfile}) { |
11ea18f2 | 615 | $runperl = $runperl . qq( "$args{progfile}"); |
9a731dbd | 616 | } else { |
93f09d7b | 617 | # You probably didn't want to be sucking in from the upstream stdin |
9a731dbd NC |
618 | die "test.pl:runperl(): none of prog, progs, progfile, args, " |
619 | . " switches or stdin specified" | |
620 | unless defined $args{args} or defined $args{switches} | |
621 | or defined $args{stdin}; | |
137352a2 RGS |
622 | } |
623 | if (defined $args{stdin}) { | |
dc459aad JH |
624 | # so we don't try to put literal newlines and crs onto the |
625 | # command line. | |
626 | $args{stdin} =~ s/\n/\\n/g; | |
627 | $args{stdin} =~ s/\r/\\r/g; | |
5ae09a77 | 628 | |
137352a2 | 629 | if ($is_mswin || $is_netware || $is_vms) { |
5fe9b82b | 630 | $runperl = qq{$Perl -e "print qq(} . |
137352a2 RGS |
631 | $args{stdin} . q{)" | } . $runperl; |
632 | } | |
633 | else { | |
5fe9b82b | 634 | $runperl = qq{$Perl -e 'print qq(} . |
137352a2 RGS |
635 | $args{stdin} . q{)' | } . $runperl; |
636 | } | |
637 | } | |
638 | if (defined $args{args}) { | |
1cce9906 | 639 | $runperl = _quote_args($runperl, $args{args}); |
cb9c5e20 | 640 | } |
11ea18f2 | 641 | $runperl = $runperl . ' 2>&1' if $args{stderr}; |
cb9c5e20 JH |
642 | if ($args{verbose}) { |
643 | my $runperldisplay = $runperl; | |
644 | $runperldisplay =~ s/\n/\n\#/g; | |
3d66076a | 645 | _print_stderr "# $runperldisplay\n"; |
137352a2 | 646 | } |
4cd2bd1f JH |
647 | return $runperl; |
648 | } | |
649 | ||
650 | sub runperl { | |
9a731dbd NC |
651 | die "test.pl:runperl() does not take a hashref" |
652 | if ref $_[0] and ref $_[0] eq 'HASH'; | |
4cd2bd1f | 653 | my $runperl = &_create_runperl; |
613de57f NC |
654 | my $result; |
655 | ||
8210c8d3 MB |
656 | my $tainted = ${^TAINT}; |
657 | my %args = @_; | |
485f531e | 658 | exists $args{switches} && grep m/^-T$/, @{$args{switches}} and $tainted = $tainted + 1; |
8210c8d3 MB |
659 | |
660 | if ($tainted) { | |
613de57f NC |
661 | # We will assume that if you're running under -T, you really mean to |
662 | # run a fresh perl, so we'll brute force launder everything for you | |
663 | my $sep; | |
664 | ||
cb01154c | 665 | if (! eval {require Config; 1}) { |
613de57f NC |
666 | warn "test.pl had problems loading Config: $@"; |
667 | $sep = ':'; | |
668 | } else { | |
afe79e7b | 669 | $sep = $Config::Config{path_sep}; |
a70a1627 | 670 | } |
613de57f NC |
671 | |
672 | my @keys = grep {exists $ENV{$_}} qw(CDPATH IFS ENV BASH_ENV); | |
673 | local @ENV{@keys} = (); | |
674 | # Untaint, plus take out . and empty string: | |
02bb3106 | 675 | local $ENV{'DCL$PATH'} = $1 if $is_vms && exists($ENV{'DCL$PATH'}) && ($ENV{'DCL$PATH'} =~ /(.*)/s); |
613de57f | 676 | $ENV{PATH} =~ /(.*)/s; |
8210c8d3 | 677 | local $ENV{PATH} = |
3b6d8381 | 678 | join $sep, grep { $_ ne "" and $_ ne "." and -d $_ and |
326b5008 | 679 | ($is_mswin or $is_vms or !(stat && (stat _)[2]&0022)) } |
8210c8d3 | 680 | split quotemeta ($sep), $1; |
59aae9bd JH |
681 | if ($is_cygwin) { # Must have /bin under Cygwin |
682 | if (length $ENV{PATH}) { | |
683 | $ENV{PATH} = $ENV{PATH} . $sep; | |
684 | } | |
685 | $ENV{PATH} = $ENV{PATH} . '/bin'; | |
686 | } | |
613de57f NC |
687 | $runperl =~ /(.*)/s; |
688 | $runperl = $1; | |
689 | ||
690 | $result = `$runperl`; | |
691 | } else { | |
692 | $result = `$runperl`; | |
a70a1627 | 693 | } |
137352a2 RGS |
694 | $result =~ s/\n\n/\n/ if $is_vms; # XXX pipes sometimes double these |
695 | return $result; | |
696 | } | |
697 | ||
140f5369 MS |
698 | # Nice alias |
699 | *run_perl = *run_perl = \&runperl; # shut up "used only once" warning | |
8799135f | 700 | |
c4fbe247 | 701 | sub DIE { |
3d66076a | 702 | _print_stderr "# @_\n"; |
c4fbe247 | 703 | exit 1; |
8799135f MS |
704 | } |
705 | ||
b5fe401b | 706 | # A somewhat safer version of the sometimes wrong $^X. |
17a740d5 JH |
707 | sub which_perl { |
708 | unless (defined $Perl) { | |
709 | $Perl = $^X; | |
8210c8d3 | 710 | |
73421c4a | 711 | # VMS should have 'perl' aliased properly |
4b0f0df6 | 712 | return $Perl if $is_vms; |
73421c4a | 713 | |
17a740d5 | 714 | my $exe; |
cb01154c | 715 | if (! eval {require Config; 1}) { |
17a740d5 JH |
716 | warn "test.pl had problems loading Config: $@"; |
717 | $exe = ''; | |
85363d30 | 718 | } else { |
afe79e7b | 719 | $exe = $Config::Config{_exe}; |
85363d30 | 720 | } |
da405c16 | 721 | $exe = '' unless defined $exe; |
8210c8d3 | 722 | |
17a740d5 JH |
723 | # This doesn't absolutize the path: beware of future chdirs(). |
724 | # We could do File::Spec->abs2rel() but that does getcwd()s, | |
725 | # which is a bit heavyweight to do here. | |
8210c8d3 | 726 | |
17a740d5 | 727 | if ($Perl =~ /^perl\Q$exe\E$/i) { |
8db06b02 | 728 | my $perl = "perl$exe"; |
cb01154c | 729 | if (! eval {require File::Spec; 1}) { |
17a740d5 | 730 | warn "test.pl had problems loading File::Spec: $@"; |
8db06b02 | 731 | $Perl = "./$perl"; |
17a740d5 | 732 | } else { |
8db06b02 | 733 | $Perl = File::Spec->catfile(File::Spec->curdir(), $perl); |
17a740d5 JH |
734 | } |
735 | } | |
196918b0 PG |
736 | |
737 | # Build up the name of the executable file from the name of | |
738 | # the command. | |
739 | ||
740 | if ($Perl !~ /\Q$exe\E$/i) { | |
11ea18f2 | 741 | $Perl = $Perl . $exe; |
196918b0 | 742 | } |
c880be78 | 743 | |
8db06b02 | 744 | warn "which_perl: cannot find $Perl from $^X" unless -f $Perl; |
8210c8d3 | 745 | |
17a740d5 JH |
746 | # For subcommands to use. |
747 | $ENV{PERLEXE} = $Perl; | |
85363d30 | 748 | } |
17a740d5 | 749 | return $Perl; |
b5fe401b MS |
750 | } |
751 | ||
435e7af6 | 752 | sub unlink_all { |
55b0687d | 753 | my $count = 0; |
435e7af6 NC |
754 | foreach my $file (@_) { |
755 | 1 while unlink $file; | |
55b0687d BG |
756 | if( -f $file ){ |
757 | _print_stderr "# Couldn't unlink '$file': $!\n"; | |
758 | }else{ | |
759 | ++$count; | |
760 | } | |
435e7af6 | 761 | } |
55b0687d | 762 | $count; |
435e7af6 | 763 | } |
eeabcb2d | 764 | |
48e9c5d4 BG |
765 | my @letters = qw(A B C D E F G H I J K L M N O P Q R S T U V W X Y Z); |
766 | ||
748a4b20 NC |
767 | my %tmpfiles; |
768 | END { unlink_all keys %tmpfiles } | |
769 | ||
770 | # A regexp that matches the tempfile names | |
771 | $::tempfile_regexp = 'tmp\d+[A-Z][A-Z]?'; | |
c1ddc35c | 772 | |
7a7e4936 | 773 | # Avoid ++, avoid ranges, avoid split // |
7a7e4936 NC |
774 | sub tempfile { |
775 | my $count = 0; | |
776 | do { | |
777 | my $temp = $count; | |
778 | my $try = "tmp$$"; | |
779 | do { | |
11ea18f2 | 780 | $try = $try . $letters[$temp % 26]; |
748a4b20 | 781 | $temp = int ($temp / 26); |
7a7e4936 | 782 | } while $temp; |
748a4b20 NC |
783 | # Need to note all the file names we allocated, as a second request may |
784 | # come before the first is created. | |
785 | if (!-e $try && !$tmpfiles{$try}) { | |
c1ddc35c | 786 | # We have a winner |
11ea18f2 | 787 | $tmpfiles{$try} = 1; |
c1ddc35c NC |
788 | return $try; |
789 | } | |
7a7e4936 NC |
790 | $count = $count + 1; |
791 | } while $count < 26 * 26; | |
792 | die "Can't find temporary file name starting 'tmp$$'"; | |
793 | } | |
794 | ||
c1ddc35c | 795 | # This is the temporary file for _fresh_perl |
7a7e4936 | 796 | my $tmpfile = tempfile(); |
eeabcb2d | 797 | |
f5cda331 | 798 | sub _fresh_perl { |
55280a0d | 799 | my($prog, $action, $expect, $runperl_args, $name) = @_; |
eeabcb2d | 800 | |
11ea18f2 NC |
801 | # Given the choice of the mis-parsable {} |
802 | # (we want an anon hash, but a borked lexer might think that it's a block) | |
803 | # or relying on taking a reference to a lexical | |
804 | # (\ might be mis-parsed, and the reference counting on the pad may go | |
805 | # awry) | |
806 | # it feels like the least-worse thing is to assume that auto-vivification | |
807 | # works. At least, this is only going to be a run-time failure, so won't | |
808 | # affect tests using this file but not this function. | |
c49688b0 MS |
809 | $runperl_args->{progfile} ||= $tmpfile; |
810 | $runperl_args->{stderr} = 1 unless exists $runperl_args->{stderr}; | |
eeabcb2d MS |
811 | |
812 | open TEST, ">$tmpfile" or die "Cannot open $tmpfile: $!"; | |
813 | ||
814 | # VMS adjustments | |
4b0f0df6 | 815 | if( $is_vms ) { |
eeabcb2d MS |
816 | $prog =~ s#/dev/null#NL:#; |
817 | ||
8210c8d3 | 818 | # VMS file locking |
eeabcb2d MS |
819 | $prog =~ s{if \(-e _ and -f _ and -r _\)} |
820 | {if (-e _ and -f _)} | |
821 | } | |
822 | ||
0d65d7d5 | 823 | print TEST $prog; |
eeabcb2d MS |
824 | close TEST or die "Cannot close $tmpfile: $!"; |
825 | ||
826 | my $results = runperl(%$runperl_args); | |
827 | my $status = $?; | |
828 | ||
829 | # Clean up the results into something a bit more predictable. | |
50f17f89 | 830 | $results =~ s/\n+$//; |
748a4b20 NC |
831 | $results =~ s/at\s+$::tempfile_regexp\s+line/at - line/g; |
832 | $results =~ s/of\s+$::tempfile_regexp\s+aborted/of - aborted/g; | |
eeabcb2d MS |
833 | |
834 | # bison says 'parse error' instead of 'syntax error', | |
835 | # various yaccs may or may not capitalize 'syntax'. | |
836 | $results =~ s/^(syntax|parse) error/syntax error/mig; | |
837 | ||
4b0f0df6 | 838 | if ($is_vms) { |
eeabcb2d MS |
839 | # some tests will trigger VMS messages that won't be expected |
840 | $results =~ s/\n?%[A-Z]+-[SIWEF]-[A-Z]+,.*//; | |
841 | ||
842 | # pipes double these sometimes | |
843 | $results =~ s/\n\n/\n/g; | |
844 | } | |
845 | ||
e2c38acd JH |
846 | # Use the first line of the program as a name if none was given |
847 | unless( $name ) { | |
848 | ($first_line, $name) = $prog =~ /^((.{1,50}).*)/; | |
11ea18f2 | 849 | $name = $name . '...' if length $first_line > length $name; |
e2c38acd | 850 | } |
eeabcb2d | 851 | |
55280a0d NC |
852 | # Historically this was implemented using a closure, but then that means |
853 | # that the tests for closures avoid using this code. Given that there | |
854 | # are exactly two callers, doing exactly two things, the simpler approach | |
855 | # feels like a better trade off. | |
856 | my $pass; | |
857 | if ($action eq 'eq') { | |
858 | $pass = is($results, $expect, $name); | |
859 | } elsif ($action eq '=~') { | |
860 | $pass = like($results, $expect, $name); | |
861 | } else { | |
862 | die "_fresh_perl can't process action '$action'"; | |
863 | } | |
864 | ||
865 | unless ($pass) { | |
866 | _diag "# PROG: \n$prog\n"; | |
867 | _diag "# STATUS: $status\n"; | |
868 | } | |
869 | ||
870 | return $pass; | |
f5cda331 JH |
871 | } |
872 | ||
873 | # | |
141f445b | 874 | # fresh_perl_is |
f5cda331 JH |
875 | # |
876 | # Combination of run_perl() and is(). | |
877 | # | |
878 | ||
879 | sub fresh_perl_is { | |
880 | my($prog, $expected, $runperl_args, $name) = @_; | |
50f17f89 MS |
881 | |
882 | # _fresh_perl() is going to clip the trailing newlines off the result. | |
883 | # This will make it so the test author doesn't have to know that. | |
884 | $expected =~ s/\n+$//; | |
885 | ||
dcc7f481 | 886 | local $Level = 2; |
55280a0d | 887 | _fresh_perl($prog, 'eq', $expected, $runperl_args, $name); |
f5cda331 JH |
888 | } |
889 | ||
890 | # | |
141f445b | 891 | # fresh_perl_like |
f5cda331 JH |
892 | # |
893 | # Combination of run_perl() and like(). | |
894 | # | |
895 | ||
896 | sub fresh_perl_like { | |
897 | my($prog, $expected, $runperl_args, $name) = @_; | |
dcc7f481 | 898 | local $Level = 2; |
55280a0d | 899 | _fresh_perl($prog, '=~', $expected, $runperl_args, $name); |
eeabcb2d MS |
900 | } |
901 | ||
ebf2da99 NC |
902 | # Many tests use the same format in __DATA__ or external files to specify a |
903 | # sequence of (fresh) tests to run, extra files they may temporarily need, and | |
904 | # what the expected output is. So have excatly one copy of the code to run that | |
a8775356 TC |
905 | # |
906 | # Each program is source code to run followed by an "EXPECT" line, followed | |
907 | # by the expected output. | |
908 | # | |
09b6b4fb FC |
909 | # The code to run may begin with a command line switch such as -w or -0777 |
910 | # (alphanumerics only), and may contain (note the '# ' on each): | |
a8775356 TC |
911 | # # TODO reason for todo |
912 | # # SKIP reason for skip | |
913 | # # SKIP ?code to test if this should be skipped | |
914 | # # NAME name of the test (as with ok($ok, $name)) | |
915 | # | |
916 | # The expected output may contain: | |
917 | # OPTION list of options | |
918 | # OPTIONS list of options | |
919 | # PREFIX | |
920 | # indicates that the supplied output is only a prefix to the | |
921 | # expected output | |
922 | # | |
923 | # The possible options for OPTION may be: | |
924 | # regex - the expected output is a regular expression | |
925 | # random - all lines match but in any order | |
926 | # fatal - the code will fail fatally (croak, die) | |
927 | # | |
928 | # If the actual output contains a line "SKIPPED" the test will be | |
929 | # skipped. | |
930 | # | |
931 | # If the global variable $FATAL is true then OPTION fatal is the | |
932 | # default. | |
ebf2da99 NC |
933 | |
934 | sub run_multiple_progs { | |
5f7e0818 NC |
935 | my $up = shift; |
936 | my @prgs; | |
937 | if ($up) { | |
938 | # The tests in lib run in a temporary subdirectory of t, and always | |
939 | # pass in a list of "programs" to run | |
940 | @prgs = @_; | |
941 | } else { | |
942 | # The tests below t run in t and pass in a file handle. | |
943 | my $fh = shift; | |
944 | local $/; | |
945 | @prgs = split "\n########\n", <$fh>; | |
946 | } | |
947 | ||
ebf2da99 NC |
948 | my $tmpfile = tempfile(); |
949 | ||
950 | for (@prgs){ | |
951 | unless (/\n/) { | |
952 | print "# From $_\n"; | |
953 | next; | |
954 | } | |
955 | my $switch = ""; | |
956 | my @temps ; | |
957 | my @temp_path; | |
958 | if (s/^(\s*-\w+)//) { | |
959 | $switch = $1; | |
960 | } | |
961 | my ($prog, $expected) = split(/\nEXPECT(?:\n|$)/, $_, 2); | |
962 | ||
963 | my %reason; | |
964 | foreach my $what (qw(skip todo)) { | |
965 | $prog =~ s/^#\s*\U$what\E\s*(.*)\n//m and $reason{$what} = $1; | |
966 | # If the SKIP reason starts ? then it's taken as a code snippet to | |
967 | # evaluate. This provides the flexibility to have conditional SKIPs | |
968 | if ($reason{$what} && $reason{$what} =~ s/^\?//) { | |
969 | my $temp = eval $reason{$what}; | |
970 | if ($@) { | |
971 | die "# In \U$what\E code reason:\n# $reason{$what}\n$@"; | |
972 | } | |
973 | $reason{$what} = $temp; | |
974 | } | |
975 | } | |
59e38755 TC |
976 | my $name = ''; |
977 | if ($prog =~ s/^#\s*NAME\s+(.+)\n//m) { | |
978 | $name = $1; | |
979 | } | |
ebf2da99 NC |
980 | |
981 | if ($prog =~ /--FILE--/) { | |
982 | my @files = split(/\n--FILE--\s*([^\s\n]*)\s*\n/, $prog) ; | |
983 | shift @files ; | |
984 | die "Internal error: test $_ didn't split into pairs, got " . | |
985 | scalar(@files) . "[" . join("%%%%", @files) ."]\n" | |
986 | if @files % 2; | |
987 | while (@files > 2) { | |
988 | my $filename = shift @files; | |
989 | my $code = shift @files; | |
990 | push @temps, $filename; | |
991 | if ($filename =~ m#(.*)/# && $filename !~ m#^\.\./#) { | |
992 | require File::Path; | |
993 | File::Path::mkpath($1); | |
994 | push(@temp_path, $1); | |
995 | } | |
996 | open my $fh, '>', $filename or die "Cannot open $filename: $!\n"; | |
997 | print $fh $code; | |
998 | close $fh or die "Cannot close $filename: $!\n"; | |
999 | } | |
1000 | shift @files; | |
1001 | $prog = shift @files; | |
1002 | } | |
1003 | ||
1004 | open my $fh, '>', $tmpfile or die "Cannot open >$tmpfile: $!"; | |
1005 | print $fh q{ | |
1006 | BEGIN { | |
1007 | open STDERR, '>&', STDOUT | |
1008 | or die "Can't dup STDOUT->STDERR: $!;"; | |
1009 | } | |
1010 | }; | |
1011 | print $fh "\n#line 1\n"; # So the line numbers don't get messed up. | |
1012 | print $fh $prog,"\n"; | |
1013 | close $fh or die "Cannot close $tmpfile: $!"; | |
5f7e0818 NC |
1014 | my $results = runperl( stderr => 1, progfile => $tmpfile, $up |
1015 | ? (switches => ["-I$up/lib", $switch], nolib => 1) | |
1016 | : (switches => [$switch]) | |
1017 | ); | |
ebf2da99 NC |
1018 | my $status = $?; |
1019 | $results =~ s/\n+$//; | |
1020 | # allow expected output to be written as if $prog is on STDIN | |
1021 | $results =~ s/$::tempfile_regexp/-/g; | |
1022 | if ($^O eq 'VMS') { | |
1023 | # some tests will trigger VMS messages that won't be expected | |
1024 | $results =~ s/\n?%[A-Z]+-[SIWEF]-[A-Z]+,.*//; | |
1025 | ||
1026 | # pipes double these sometimes | |
1027 | $results =~ s/\n\n/\n/g; | |
1028 | } | |
1029 | # bison says 'parse error' instead of 'syntax error', | |
1030 | # various yaccs may or may not capitalize 'syntax'. | |
1031 | $results =~ s/^(syntax|parse) error/syntax error/mig; | |
1032 | # allow all tests to run when there are leaks | |
1033 | $results =~ s/Scalars leaked: \d+\n//g; | |
1034 | ||
1035 | $expected =~ s/\n+$//; | |
1036 | my $prefix = ($results =~ s#^PREFIX(\n|$)##) ; | |
1037 | # any special options? (OPTIONS foo bar zap) | |
1038 | my $option_regex = 0; | |
1039 | my $option_random = 0; | |
59e38755 | 1040 | my $fatal = $FATAL; |
ebf2da99 NC |
1041 | if ($expected =~ s/^OPTIONS? (.+)\n//) { |
1042 | foreach my $option (split(' ', $1)) { | |
1043 | if ($option eq 'regex') { # allow regular expressions | |
1044 | $option_regex = 1; | |
1045 | } | |
1046 | elsif ($option eq 'random') { # all lines match, but in any order | |
1047 | $option_random = 1; | |
1048 | } | |
59e38755 TC |
1049 | elsif ($option eq 'fatal') { # perl should fail |
1050 | $fatal = 1; | |
1051 | } | |
ebf2da99 NC |
1052 | else { |
1053 | die "$0: Unknown OPTION '$option'\n"; | |
1054 | } | |
1055 | } | |
1056 | } | |
1057 | die "$0: can't have OPTION regex and random\n" | |
1058 | if $option_regex + $option_random > 1; | |
1059 | my $ok = 0; | |
1060 | if ($results =~ s/^SKIPPED\n//) { | |
1061 | print "$results\n" ; | |
1062 | $ok = 1; | |
1063 | } | |
ebf2da99 | 1064 | else { |
59e38755 TC |
1065 | if ($option_random) { |
1066 | my @got = sort split "\n", $results; | |
1067 | my @expected = sort split "\n", $expected; | |
1068 | ||
1069 | $ok = "@got" eq "@expected"; | |
1070 | } | |
1071 | elsif ($option_regex) { | |
1072 | $ok = $results =~ /^$expected/; | |
1073 | } | |
1074 | elsif ($prefix) { | |
1075 | $ok = $results =~ /^\Q$expected/; | |
1076 | } | |
1077 | else { | |
1078 | $ok = $results eq $expected; | |
1079 | } | |
1080 | ||
1081 | if ($ok && $fatal && !($status >> 8)) { | |
1082 | $ok = 0; | |
1083 | } | |
ebf2da99 NC |
1084 | } |
1085 | ||
1086 | local $::TODO = $reason{todo}; | |
1087 | ||
1088 | unless ($ok) { | |
1089 | my $err_line = "PROG: $switch\n$prog\n" . | |
59e38755 TC |
1090 | "EXPECTED:\n$expected\n"; |
1091 | $err_line .= "EXIT STATUS: != 0\n" if $fatal; | |
1092 | $err_line .= "GOT:\n$results\n"; | |
1093 | $err_line .= "EXIT STATUS: " . ($status >> 8) . "\n" if $fatal; | |
ebf2da99 NC |
1094 | if ($::TODO) { |
1095 | $err_line =~ s/^/# /mg; | |
1096 | print $err_line; # Harness can't filter it out from STDERR. | |
1097 | } | |
1098 | else { | |
1099 | print STDERR $err_line; | |
1100 | } | |
1101 | } | |
1102 | ||
59e38755 | 1103 | ok($ok, $name); |
ebf2da99 NC |
1104 | |
1105 | foreach (@temps) { | |
1106 | unlink $_ if $_; | |
1107 | } | |
1108 | foreach (@temp_path) { | |
1109 | File::Path::rmtree $_ if -d $_; | |
1110 | } | |
1111 | } | |
1112 | } | |
1113 | ||
35a60386 RGS |
1114 | sub can_ok ($@) { |
1115 | my($proto, @methods) = @_; | |
1116 | my $class = ref $proto || $proto; | |
1117 | ||
1118 | unless( @methods ) { | |
1119 | return _ok( 0, _where(), "$class->can(...)" ); | |
1120 | } | |
1121 | ||
1122 | my @nok = (); | |
1123 | foreach my $method (@methods) { | |
1124 | local($!, $@); # don't interfere with caller's $@ | |
1125 | # eval sometimes resets $! | |
1126 | eval { $proto->can($method) } || push @nok, $method; | |
1127 | } | |
1128 | ||
1129 | my $name; | |
8210c8d3 | 1130 | $name = @methods == 1 ? "$class->can('$methods[0]')" |
35a60386 | 1131 | : "$class->can(...)"; |
8210c8d3 | 1132 | |
35a60386 RGS |
1133 | _ok( !@nok, _where(), $name ); |
1134 | } | |
1135 | ||
ad4e703e | 1136 | |
bbce3ca6 | 1137 | # Call $class->new( @$args ); and run the result through object_ok. |
ad4e703e MS |
1138 | # See Test::More::new_ok |
1139 | sub new_ok { | |
1140 | my($class, $args, $obj_name) = @_; | |
1141 | $args ||= []; | |
1142 | $object_name = "The object" unless defined $obj_name; | |
1143 | ||
1144 | local $Level = $Level + 1; | |
1145 | ||
1146 | my $obj; | |
1147 | my $ok = eval { $obj = $class->new(@$args); 1 }; | |
1148 | my $error = $@; | |
1149 | ||
1150 | if($ok) { | |
bbce3ca6 | 1151 | object_ok($obj, $class, $object_name); |
ad4e703e MS |
1152 | } |
1153 | else { | |
1154 | ok( 0, "new() died" ); | |
1155 | diag("Error was: $@"); | |
1156 | } | |
1157 | ||
1158 | return $obj; | |
1159 | ||
1160 | } | |
1161 | ||
1162 | ||
35a60386 RGS |
1163 | sub isa_ok ($$;$) { |
1164 | my($object, $class, $obj_name) = @_; | |
1165 | ||
1166 | my $diag; | |
1167 | $obj_name = 'The object' unless defined $obj_name; | |
1168 | my $name = "$obj_name isa $class"; | |
1169 | if( !defined $object ) { | |
1170 | $diag = "$obj_name isn't defined"; | |
1171 | } | |
35a60386 | 1172 | else { |
b8ab4b0c MS |
1173 | my $whatami = ref $object ? 'object' : 'class'; |
1174 | ||
35a60386 RGS |
1175 | # We can't use UNIVERSAL::isa because we want to honor isa() overrides |
1176 | local($@, $!); # eval sometimes resets $! | |
1177 | my $rslt = eval { $object->isa($class) }; | |
b8ab4b0c MS |
1178 | my $error = $@; # in case something else blows away $@ |
1179 | ||
1180 | if( $error ) { | |
1181 | if( $error =~ /^Can't call method "isa" on unblessed reference/ ) { | |
1182 | # It's an unblessed reference | |
1183 | $obj_name = 'The reference' unless defined $obj_name; | |
35a60386 RGS |
1184 | if( !UNIVERSAL::isa($object, $class) ) { |
1185 | my $ref = ref $object; | |
1186 | $diag = "$obj_name isn't a '$class' it's a '$ref'"; | |
1187 | } | |
b8ab4b0c MS |
1188 | } |
1189 | elsif( $error =~ /Can't call method "isa" without a package/ ) { | |
1190 | # It's something that can't even be a class | |
1191 | $obj_name = 'The thing' unless defined $obj_name; | |
1192 | $diag = "$obj_name isn't a class or reference"; | |
1193 | } | |
1194 | else { | |
35a60386 RGS |
1195 | die <<WHOA; |
1196 | WHOA! I tried to call ->isa on your object and got some weird error. | |
1197 | This should never happen. Please contact the author immediately. | |
1198 | Here's the error. | |
1199 | $@ | |
1200 | WHOA | |
1201 | } | |
1202 | } | |
1203 | elsif( !$rslt ) { | |
b8ab4b0c | 1204 | $obj_name = "The $whatami" unless defined $obj_name; |
35a60386 RGS |
1205 | my $ref = ref $object; |
1206 | $diag = "$obj_name isn't a '$class' it's a '$ref'"; | |
1207 | } | |
1208 | } | |
1209 | ||
1210 | _ok( !$diag, _where(), $name ); | |
1211 | } | |
1212 | ||
bbce3ca6 MS |
1213 | |
1214 | sub class_ok { | |
1215 | my($class, $isa, $class_name) = @_; | |
1216 | ||
1217 | # Written so as to count as one test | |
1218 | local $Level = $Level + 1; | |
1219 | if( ref $class ) { | |
1220 | ok( 0, "$class is a refrence, not a class name" ); | |
1221 | } | |
1222 | else { | |
1223 | isa_ok($class, $isa, $class_name); | |
1224 | } | |
1225 | } | |
1226 | ||
1227 | ||
1228 | sub object_ok { | |
1229 | my($obj, $isa, $obj_name) = @_; | |
1230 | ||
1231 | local $Level = $Level + 1; | |
1232 | if( !ref $obj ) { | |
1233 | ok( 0, "$obj is not a reference" ); | |
1234 | } | |
1235 | else { | |
1236 | isa_ok($obj, $isa, $obj_name); | |
1237 | } | |
1238 | } | |
1239 | ||
1240 | ||
9eb41b69 NC |
1241 | # Purposefully avoiding a closure. |
1242 | sub __capture { | |
1243 | push @::__capture, join "", @_; | |
1244 | } | |
1245 | ||
3fbaac97 NC |
1246 | sub capture_warnings { |
1247 | my $code = shift; | |
1248 | ||
9eb41b69 NC |
1249 | local @::__capture; |
1250 | local $SIG {__WARN__} = \&__capture; | |
3fbaac97 | 1251 | &$code; |
9eb41b69 | 1252 | return @::__capture; |
3fbaac97 NC |
1253 | } |
1254 | ||
1255 | # This will generate a variable number of tests. | |
1256 | # Use done_testing() instead of a fixed plan. | |
1257 | sub warnings_like { | |
1258 | my ($code, $expect, $name) = @_; | |
f4554ed5 NC |
1259 | local $Level = $Level + 1; |
1260 | ||
3fbaac97 NC |
1261 | my @w = capture_warnings($code); |
1262 | ||
1263 | cmp_ok(scalar @w, '==', scalar @$expect, $name); | |
1264 | foreach my $e (@$expect) { | |
f4554ed5 | 1265 | if (ref $e) { |
3fbaac97 | 1266 | like(shift @w, $e, $name); |
4d18b353 | 1267 | } else { |
3fbaac97 | 1268 | is(shift @w, $e, $name); |
4d18b353 | 1269 | } |
96980024 | 1270 | } |
3fbaac97 NC |
1271 | if (@w) { |
1272 | diag("Saw these additional warnings:"); | |
1273 | diag($_) foreach @w; | |
1274 | } | |
1275 | } | |
1276 | ||
1277 | sub _fail_excess_warnings { | |
1278 | my($expect, $got, $name) = @_; | |
1279 | local $Level = $Level + 1; | |
1280 | # This will fail, and produce diagnostics | |
1281 | is($expect, scalar @$got, $name); | |
1282 | diag("Saw these warnings:"); | |
1283 | diag($_) foreach @$got; | |
c11a8df3 NC |
1284 | } |
1285 | ||
4d18b353 NC |
1286 | sub warning_is { |
1287 | my ($code, $expect, $name) = @_; | |
1288 | die sprintf "Expect must be a string or undef, not a %s reference", ref $expect | |
1289 | if ref $expect; | |
f4554ed5 | 1290 | local $Level = $Level + 1; |
3fbaac97 NC |
1291 | my @w = capture_warnings($code); |
1292 | if (@w > 1) { | |
1293 | _fail_excess_warnings(0 + defined $expect, \@w, $name); | |
1294 | } else { | |
1295 | is($w[0], $expect, $name); | |
1296 | } | |
4d18b353 NC |
1297 | } |
1298 | ||
1299 | sub warning_like { | |
1300 | my ($code, $expect, $name) = @_; | |
1301 | die sprintf "Expect must be a regexp object" | |
1302 | unless ref $expect eq 'Regexp'; | |
f4554ed5 | 1303 | local $Level = $Level + 1; |
3fbaac97 NC |
1304 | my @w = capture_warnings($code); |
1305 | if (@w > 1) { | |
1306 | _fail_excess_warnings(0 + defined $expect, \@w, $name); | |
1307 | } else { | |
1308 | like($w[0], $expect, $name); | |
1309 | } | |
4d18b353 NC |
1310 | } |
1311 | ||
087986a7 | 1312 | # Set a watchdog to timeout the entire test file |
5fe9b82b JH |
1313 | # NOTE: If the test file uses 'threads', then call the watchdog() function |
1314 | # _AFTER_ the 'threads' module is loaded. | |
5732108f | 1315 | sub watchdog ($;$) |
087986a7 JH |
1316 | { |
1317 | my $timeout = shift; | |
36436324 | 1318 | my $method = shift || ""; |
087986a7 JH |
1319 | my $timeout_msg = 'Test process timed out - terminating'; |
1320 | ||
e07ce2e4 GG |
1321 | # Valgrind slows perl way down so give it more time before dying. |
1322 | $timeout *= 10 if $ENV{PERL_VALGRIND}; | |
1323 | ||
087986a7 JH |
1324 | my $pid_to_kill = $$; # PID for this process |
1325 | ||
5732108f GG |
1326 | if ($method eq "alarm") { |
1327 | goto WATCHDOG_VIA_ALARM; | |
1328 | } | |
1329 | ||
140f5369 MS |
1330 | # shut up use only once warning |
1331 | my $threads_on = $threads::threads && $threads::threads; | |
1332 | ||
5fe9b82b JH |
1333 | # Don't use a watchdog process if 'threads' is loaded - |
1334 | # use a watchdog thread instead | |
78325d7a | 1335 | if (!$threads_on || $method eq "process") { |
5fe9b82b JH |
1336 | |
1337 | # On Windows and VMS, try launching a watchdog process | |
1338 | # using system(1, ...) (see perlport.pod) | |
4b0f0df6 | 1339 | if ($is_mswin || $is_vms) { |
5fe9b82b | 1340 | # On Windows, try to get the 'real' PID |
4b0f0df6 | 1341 | if ($is_mswin) { |
5fe9b82b JH |
1342 | eval { require Win32; }; |
1343 | if (defined(&Win32::GetCurrentProcessId)) { | |
1344 | $pid_to_kill = Win32::GetCurrentProcessId(); | |
1345 | } | |
087986a7 | 1346 | } |
087986a7 | 1347 | |
5fe9b82b JH |
1348 | # If we still have a fake PID, we can't use this method at all |
1349 | return if ($pid_to_kill <= 0); | |
1350 | ||
1351 | # Launch watchdog process | |
1352 | my $watchdog; | |
1353 | eval { | |
1354 | local $SIG{'__WARN__'} = sub { | |
1355 | _diag("Watchdog warning: $_[0]"); | |
1356 | }; | |
4b0f0df6 | 1357 | my $sig = $is_vms ? 'TERM' : 'KILL'; |
9b7a5066 CB |
1358 | my $cmd = _create_runperl( prog => "sleep($timeout);" . |
1359 | "warn qq/# $timeout_msg" . '\n/;' . | |
c1c45e36 | 1360 | "kill($sig, $pid_to_kill);"); |
9b7a5066 | 1361 | $watchdog = system(1, $cmd); |
5fe9b82b JH |
1362 | }; |
1363 | if ($@ || ($watchdog <= 0)) { | |
1364 | _diag('Failed to start watchdog'); | |
1365 | _diag($@) if $@; | |
1366 | undef($watchdog); | |
1367 | return; | |
1368 | } | |
087986a7 | 1369 | |
5fe9b82b JH |
1370 | # Add END block to parent to terminate and |
1371 | # clean up watchdog process | |
7e1027b9 JH |
1372 | eval "END { local \$! = 0; local \$? = 0; |
1373 | wait() if kill('KILL', $watchdog); };"; | |
5fe9b82b | 1374 | return; |
087986a7 | 1375 | } |
087986a7 | 1376 | |
5fe9b82b JH |
1377 | # Try using fork() to generate a watchdog process |
1378 | my $watchdog; | |
1379 | eval { $watchdog = fork() }; | |
1380 | if (defined($watchdog)) { | |
1381 | if ($watchdog) { # Parent process | |
1382 | # Add END block to parent to terminate and | |
1383 | # clean up watchdog process | |
7e1027b9 JH |
1384 | eval "END { local \$! = 0; local \$? = 0; |
1385 | wait() if kill('KILL', $watchdog); };"; | |
5fe9b82b JH |
1386 | return; |
1387 | } | |
1388 | ||
1389 | ### Watchdog process code | |
087986a7 | 1390 | |
5fe9b82b JH |
1391 | # Load POSIX if available |
1392 | eval { require POSIX; }; | |
087986a7 | 1393 | |
5fe9b82b JH |
1394 | # Execute the timeout |
1395 | sleep($timeout - 2) if ($timeout > 2); # Workaround for perlbug #49073 | |
1396 | sleep(2); | |
087986a7 | 1397 | |
5fe9b82b JH |
1398 | # Kill test process if still running |
1399 | if (kill(0, $pid_to_kill)) { | |
1400 | _diag($timeout_msg); | |
1401 | kill('KILL', $pid_to_kill); | |
1a34b28b TC |
1402 | if ($is_cygwin) { |
1403 | # sometimes the above isn't enough on cygwin | |
1404 | sleep 1; # wait a little, it might have worked after all | |
1405 | system("/bin/kill -f $pid_to_kill"); | |
1406 | } | |
5fe9b82b | 1407 | } |
087986a7 | 1408 | |
5fe9b82b JH |
1409 | # Don't execute END block (added at beginning of this file) |
1410 | $NO_ENDING = 1; | |
087986a7 | 1411 | |
5fe9b82b JH |
1412 | # Terminate ourself (i.e., the watchdog) |
1413 | POSIX::_exit(1) if (defined(&POSIX::_exit)); | |
1414 | exit(1); | |
087986a7 JH |
1415 | } |
1416 | ||
5fe9b82b | 1417 | # fork() failed - fall through and try using a thread |
087986a7 JH |
1418 | } |
1419 | ||
5fe9b82b JH |
1420 | # Use a watchdog thread because either 'threads' is loaded, |
1421 | # or fork() failed | |
cb01154c | 1422 | if (eval {require threads; 1}) { |
b296285b | 1423 | 'threads'->create(sub { |
087986a7 JH |
1424 | # Load POSIX if available |
1425 | eval { require POSIX; }; | |
1426 | ||
1427 | # Execute the timeout | |
c1c45e36 | 1428 | my $time_left = $timeout; |
a6c9a815 | 1429 | do { |
11ea18f2 | 1430 | $time_left = $time_left - sleep($time_left); |
a6c9a815 | 1431 | } while ($time_left > 0); |
087986a7 JH |
1432 | |
1433 | # Kill the parent (and ourself) | |
5fe9b82b | 1434 | select(STDERR); $| = 1; |
087986a7 JH |
1435 | _diag($timeout_msg); |
1436 | POSIX::_exit(1) if (defined(&POSIX::_exit)); | |
4b0f0df6 | 1437 | my $sig = $is_vms ? 'TERM' : 'KILL'; |
c1c45e36 | 1438 | kill($sig, $pid_to_kill); |
087986a7 JH |
1439 | })->detach(); |
1440 | return; | |
1441 | } | |
1442 | ||
5fe9b82b | 1443 | # If everything above fails, then just use an alarm timeout |
5732108f | 1444 | WATCHDOG_VIA_ALARM: |
087986a7 JH |
1445 | if (eval { alarm($timeout); 1; }) { |
1446 | # Load POSIX if available | |
1447 | eval { require POSIX; }; | |
1448 | ||
1449 | # Alarm handler will do the actual 'killing' | |
1450 | $SIG{'ALRM'} = sub { | |
5fe9b82b | 1451 | select(STDERR); $| = 1; |
087986a7 JH |
1452 | _diag($timeout_msg); |
1453 | POSIX::_exit(1) if (defined(&POSIX::_exit)); | |
4b0f0df6 | 1454 | my $sig = $is_vms ? 'TERM' : 'KILL'; |
c1c45e36 | 1455 | kill($sig, $pid_to_kill); |
087986a7 JH |
1456 | }; |
1457 | } | |
1458 | } | |
1459 | ||
f69d9fdf KW |
1460 | my $cp_0037 = # EBCDIC code page 0037 |
1461 | '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x25\x0B\x0C\x0D\x0E\x0F' . | |
1462 | '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' . | |
1463 | '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' . | |
1464 | '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' . | |
1465 | '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' . | |
1466 | '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xBA\xE0\xBB\xB0\x6D' . | |
1467 | '\x79\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' . | |
1468 | '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xC0\x4F\xD0\xA1\x07' . | |
1469 | '\x20\x21\x22\x23\x24\x15\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' . | |
1470 | '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\xFF' . | |
1471 | '\x41\xAA\x4A\xB1\x9F\xB2\x6A\xB5\xBD\xB4\x9A\x8A\x5F\xCA\xAF\xBC' . | |
1472 | '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' . | |
1473 | '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' . | |
1474 | '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xFD\xFE\xFB\xFC\xAD\xAE\x59' . | |
1475 | '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' . | |
1476 | '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xDD\xDE\xDB\xDC\x8D\x8E\xDF'; | |
1477 | ||
1478 | my $cp_1047 = # EBCDIC code page 1047 | |
1479 | '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x15\x0B\x0C\x0D\x0E\x0F' . | |
1480 | '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' . | |
1481 | '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' . | |
1482 | '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' . | |
1483 | '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' . | |
1484 | '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xAD\xE0\xBD\x5F\x6D' . | |
1485 | '\x79\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' . | |
1486 | '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xC0\x4F\xD0\xA1\x07' . | |
1487 | '\x20\x21\x22\x23\x24\x25\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' . | |
1488 | '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\xFF' . | |
1489 | '\x41\xAA\x4A\xB1\x9F\xB2\x6A\xB5\xBB\xB4\x9A\x8A\xB0\xCA\xAF\xBC' . | |
1490 | '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' . | |
1491 | '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' . | |
1492 | '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xFD\xFE\xFB\xFC\xBA\xAE\x59' . | |
1493 | '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' . | |
1494 | '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xDD\xDE\xDB\xDC\x8D\x8E\xDF'; | |
1495 | ||
1496 | my $cp_bc = # EBCDIC code page POSiX-BC | |
1497 | '\x00\x01\x02\x03\x37\x2D\x2E\x2F\x16\x05\x15\x0B\x0C\x0D\x0E\x0F' . | |
1498 | '\x10\x11\x12\x13\x3C\x3D\x32\x26\x18\x19\x3F\x27\x1C\x1D\x1E\x1F' . | |
1499 | '\x40\x5A\x7F\x7B\x5B\x6C\x50\x7D\x4D\x5D\x5C\x4E\x6B\x60\x4B\x61' . | |
1500 | '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\x7A\x5E\x4C\x7E\x6E\x6F' . | |
1501 | '\x7C\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xD1\xD2\xD3\xD4\xD5\xD6' . | |
1502 | '\xD7\xD8\xD9\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xBB\xBC\xBD\x6A\x6D' . | |
1503 | '\x4A\x81\x82\x83\x84\x85\x86\x87\x88\x89\x91\x92\x93\x94\x95\x96' . | |
1504 | '\x97\x98\x99\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xFB\x4F\xFD\xFF\x07' . | |
1505 | '\x20\x21\x22\x23\x24\x25\x06\x17\x28\x29\x2A\x2B\x2C\x09\x0A\x1B' . | |
1506 | '\x30\x31\x1A\x33\x34\x35\x36\x08\x38\x39\x3A\x3B\x04\x14\x3E\x5F' . | |
1507 | '\x41\xAA\xB0\xB1\x9F\xB2\xD0\xB5\x79\xB4\x9A\x8A\xBA\xCA\xAF\xA1' . | |
1508 | '\x90\x8F\xEA\xFA\xBE\xA0\xB6\xB3\x9D\xDA\x9B\x8B\xB7\xB8\xB9\xAB' . | |
1509 | '\x64\x65\x62\x66\x63\x67\x9E\x68\x74\x71\x72\x73\x78\x75\x76\x77' . | |
1510 | '\xAC\x69\xED\xEE\xEB\xEF\xEC\xBF\x80\xE0\xFE\xDD\xFC\xAD\xAE\x59' . | |
1511 | '\x44\x45\x42\x46\x43\x47\x9C\x48\x54\x51\x52\x53\x58\x55\x56\x57' . | |
1512 | '\x8C\x49\xCD\xCE\xCB\xCF\xCC\xE1\x70\xC0\xDE\xDB\xDC\x8D\x8E\xDF'; | |
1513 | ||
1514 | my $straight = # Avoid ranges | |
1515 | '\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F' . | |
1516 | '\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F' . | |
1517 | '\x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2A\x2B\x2C\x2D\x2E\x2F' . | |
1518 | '\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3A\x3B\x3C\x3D\x3E\x3F' . | |
1519 | '\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4A\x4B\x4C\x4D\x4E\x4F' . | |
1520 | '\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5A\x5B\x5C\x5D\x5E\x5F' . | |
1521 | '\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6A\x6B\x6C\x6D\x6E\x6F' . | |
1522 | '\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7A\x7B\x7C\x7D\x7E\x7F' . | |
1523 | '\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F' . | |
1524 | '\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F' . | |
1525 | '\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF' . | |
1526 | '\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF' . | |
1527 | '\xC0\xC1\xC2\xC3\xC4\xC5\xC6\xC7\xC8\xC9\xCA\xCB\xCC\xCD\xCE\xCF' . | |
1528 | '\xD0\xD1\xD2\xD3\xD4\xD5\xD6\xD7\xD8\xD9\xDA\xDB\xDC\xDD\xDE\xDF' . | |
1529 | '\xE0\xE1\xE2\xE3\xE4\xE5\xE6\xE7\xE8\xE9\xEA\xEB\xEC\xED\xEE\xEF' . | |
1530 | '\xF0\xF1\xF2\xF3\xF4\xF5\xF6\xF7\xF8\xF9\xFA\xFB\xFC\xFD\xFE\xFF'; | |
1531 | ||
1532 | # The following 2 functions allow tests to work on both EBCDIC and | |
1533 | # ASCII-ish platforms. They convert string scalars between the native | |
1534 | # character set and the set of 256 characters which is usually called | |
1535 | # Latin1. | |
1536 | # | |
1537 | # These routines don't work on UTF-EBCDIC and UTF-8. | |
1538 | ||
1539 | sub native_to_latin1($) { | |
1540 | my $string = shift; | |
1541 | ||
1542 | return $string if ord('^') == 94; # ASCII, Latin1 | |
1543 | my $cp; | |
1544 | if (ord('^') == 95) { # EBCDIC 1047 | |
1545 | $cp = \$cp_1047; | |
1546 | } | |
1547 | elsif (ord('^') == 106) { # EBCDIC POSIX-BC | |
1548 | $cp = \$cp_bc; | |
1549 | } | |
1550 | elsif (ord('^') == 176) { # EBCDIC 037 */ | |
1551 | $cp = \$cp_0037; | |
1552 | } | |
1553 | else { | |
1554 | die "Unknown native character set"; | |
1555 | } | |
1556 | ||
1557 | eval '$string =~ tr/' . $$cp . '/' . $straight . '/'; | |
1558 | return $string; | |
1559 | } | |
1560 | ||
1561 | sub latin1_to_native($) { | |
1562 | my $string = shift; | |
1563 | ||
1564 | return $string if ord('^') == 94; # ASCII, Latin1 | |
1565 | my $cp; | |
1566 | if (ord('^') == 95) { # EBCDIC 1047 | |
1567 | $cp = \$cp_1047; | |
1568 | } | |
1569 | elsif (ord('^') == 106) { # EBCDIC POSIX-BC | |
1570 | $cp = \$cp_bc; | |
1571 | } | |
1572 | elsif (ord('^') == 176) { # EBCDIC 037 */ | |
1573 | $cp = \$cp_0037; | |
1574 | } | |
1575 | else { | |
1576 | die "Unknown native character set"; | |
1577 | } | |
1578 | ||
1579 | eval '$string =~ tr/' . $straight . '/' . $$cp . '/'; | |
1580 | return $string; | |
1581 | } | |
1582 | ||
883cce4a | 1583 | sub ord_latin1_to_native { |
ec0363d9 KW |
1584 | # given an input code point, return the platform's native |
1585 | # equivalent value. Anything above latin1 is itself. | |
883cce4a | 1586 | |
ec0363d9 KW |
1587 | my $ord = shift; |
1588 | return $ord if $ord > 255; | |
1589 | return ord latin1_to_native(chr $ord); | |
883cce4a KW |
1590 | } |
1591 | ||
1592 | sub ord_native_to_latin1 { | |
ec0363d9 KW |
1593 | # given an input platform code point, return the latin1 equivalent value. |
1594 | # Anything above latin1 is itself. | |
883cce4a | 1595 | |
ec0363d9 KW |
1596 | my $ord = shift; |
1597 | return $ord if $ord > 255; | |
1598 | return ord native_to_latin1(chr $ord); | |
883cce4a KW |
1599 | } |
1600 | ||
69026470 | 1601 | 1; |