EBCDIC test tweak.
[p5sagit/p5-mst-13.2.git] / t / test.pl
CommitLineData
69026470 1#
2# t/test.pl - most of Test::More functionality without the fuss
3#
4
5my $test = 1;
6my $planned;
7
7d932aad 8$TODO = 0;
b6345914 9$NO_ENDING = 0;
7d932aad 10
69026470 11sub plan {
12 my $n;
13 if (@_ == 1) {
14 $n = shift;
15 } else {
16 my %plan = @_;
17 $n = $plan{tests};
18 }
ad20d923 19 print STDOUT "1..$n\n";
69026470 20 $planned = $n;
21}
22
23END {
24 my $ran = $test - 1;
b6345914 25 if (!$NO_ENDING && defined $planned && $planned != $ran) {
75385f53 26 print STDERR "# Looks like you planned $planned tests but ran $ran.\n";
69026470 27 }
28}
29
de522f7a 30# Use this instead of "print STDERR" when outputing failure diagnostic
31# messages
32sub _diag {
cf8feb78 33 return unless @_;
34 my @mess = map { /^#/ ? "$_\n" : "# $_\n" }
35 map { split /\n/ } @_;
de522f7a 36 my $fh = $TODO ? *STDOUT : *STDERR;
cf8feb78 37 print $fh @mess;
38
de522f7a 39}
40
69026470 41sub skip_all {
42 if (@_) {
ad20d923 43 print STDOUT "1..0 - @_\n";
69026470 44 } else {
ad20d923 45 print STDOUT "1..0\n";
69026470 46 }
47 exit(0);
48}
49
50sub _ok {
7d932aad 51 my ($pass, $where, $name, @mess) = @_;
69026470 52 # Do not try to microoptimize by factoring out the "not ".
53 # VMS will avenge.
7d932aad 54 my $out;
55 if ($name) {
b734d6c9 56 # escape out '#' or it will interfere with '# skip' and such
57 $name =~ s/#/\\#/g;
7d932aad 58 $out = $pass ? "ok $test - $name" : "not ok $test - $name";
69026470 59 } else {
7d932aad 60 $out = $pass ? "ok $test" : "not ok $test";
69026470 61 }
7d932aad 62
63 $out .= " # TODO $TODO" if $TODO;
ad20d923 64 print STDOUT "$out\n";
7d932aad 65
69026470 66 unless ($pass) {
de522f7a 67 _diag "# Failed $where\n";
69026470 68 }
7d932aad 69
70 # Ensure that the message is properly escaped.
cf8feb78 71 _diag @mess;
7d932aad 72
69026470 73 $test++;
1577bb16 74
75 return $pass;
69026470 76}
77
78sub _where {
79 my @caller = caller(1);
80 return "at $caller[1] line $caller[2]";
81}
82
1d662fb6 83# DON'T use this for matches. Use like() instead.
69026470 84sub ok {
7d932aad 85 my ($pass, $name, @mess) = @_;
86 _ok($pass, _where(), $name, @mess);
69026470 87}
88
b3c72391 89sub _q {
90 my $x = shift;
91 return 'undef' unless defined $x;
92 my $q = $x;
677fb045 93 $q =~ s/\\/\\\\/;
b3c72391 94 $q =~ s/'/\\'/;
95 return "'$q'";
96}
97
677fb045 98sub _qq {
99 my $x = shift;
100 return defined $x ? '"' . display ($x) . '"' : 'undef';
101};
102
103# keys are the codes \n etc map to, values are 2 char strings such as \n
104my %backslash_escape;
105foreach my $x (split //, 'nrtfa\\\'"') {
106 $backslash_escape{ord eval "\"\\$x\""} = "\\$x";
107}
108# A way to display scalars containing control characters and Unicode.
109# Trying to avoid setting $_, or relying on local $_ to work.
110sub display {
111 my @result;
112 foreach my $x (@_) {
113 if (defined $x and not ref $x) {
114 my $y = '';
115 foreach my $c (unpack("U*", $x)) {
116 if ($c > 255) {
117 $y .= sprintf "\\x{%x}", $c;
118 } elsif ($backslash_escape{$c}) {
119 $y .= $backslash_escape{$c};
120 } else {
121 my $z = chr $c; # Maybe we can get away with a literal...
122 $z = sprintf "\\%03o", $c if $z =~ /[[:^print:]]/;
123 $y .= $z;
124 }
125 }
126 $x = $y;
127 }
128 return $x unless wantarray;
129 push @result, $x;
130 }
131 return @result;
132}
133
69026470 134sub is {
7d932aad 135 my ($got, $expected, $name, @mess) = @_;
69026470 136 my $pass = $got eq $expected;
137 unless ($pass) {
b3c72391 138 unshift(@mess, "# got "._q($got)."\n",
139 "# expected "._q($expected)."\n");
69026470 140 }
7d932aad 141 _ok($pass, _where(), $name, @mess);
69026470 142}
143
3e90d5a3 144sub isnt {
145 my ($got, $isnt, $name, @mess) = @_;
146 my $pass = $got ne $isnt;
147 unless( $pass ) {
b3c72391 148 unshift(@mess, "# it should not be "._q($got)."\n",
3e90d5a3 149 "# but it is.\n");
150 }
151 _ok($pass, _where(), $name, @mess);
152}
153
58d76dfd 154sub cmp_ok {
155 my($got, $type, $expected, $name, @mess) = @_;
156
157 my $pass;
158 {
159 local $^W = 0;
160 local($@,$!); # don't interfere with $@
161 # eval() sometimes resets $!
162 $pass = eval "\$got $type \$expected";
163 }
164 unless ($pass) {
165 # It seems Irix long doubles can have 2147483648 and 2147483648
166 # that stringify to the same thing but are acutally numerically
167 # different. Display the numbers if $type isn't a string operator,
168 # and the numbers are stringwise the same.
169 # (all string operators have alphabetic names, so tr/a-z// is true)
170 # This will also show numbers for some uneeded cases, but will
171 # definately be helpful for things such as == and <= that fail
172 if ($got eq $expected and $type !~ tr/a-z//) {
173 unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n";
174 }
175 unshift(@mess, "# got "._q($got)."\n",
176 "# expected $type "._q($expected)."\n");
177 }
178 _ok($pass, _where(), $name, @mess);
179}
180
181# Check that $got is within $range of $expected
182# if $range is 0, then check it's exact
183# else if $expected is 0, then $range is an absolute value
184# otherwise $range is a fractional error.
185# Here $range must be numeric, >= 0
186# Non numeric ranges might be a useful future extension. (eg %)
187sub within {
188 my ($got, $expected, $range, $name, @mess) = @_;
189 my $pass;
190 if (!defined $got or !defined $expected or !defined $range) {
191 # This is a fail, but doesn't need extra diagnostics
192 } elsif ($got !~ tr/0-9// or $expected !~ tr/0-9// or $range !~ tr/0-9//) {
193 # This is a fail
194 unshift @mess, "# got, expected and range must be numeric\n";
195 } elsif ($range < 0) {
196 # This is also a fail
197 unshift @mess, "# range must not be negative\n";
198 } elsif ($range == 0) {
199 # Within 0 is ==
200 $pass = $got == $expected;
201 } elsif ($expected == 0) {
202 # If expected is 0, treat range as absolute
203 $pass = ($got <= $range) && ($got >= - $range);
204 } else {
205 my $diff = $got - $expected;
206 $pass = abs ($diff / $expected) < $range;
207 }
208 unless ($pass) {
209 if ($got eq $expected) {
210 unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n";
211 }
212 unshift@mess, "# got "._q($got)."\n",
213 "# expected "._q($expected)." (within "._q($range).")\n";
214 }
215 _ok($pass, _where(), $name, @mess);
216}
217
69026470 218# Note: this isn't quite as fancy as Test::More::like().
219sub like {
7d932aad 220 my ($got, $expected, $name, @mess) = @_;
69026470 221 my $pass;
222 if (ref $expected eq 'Regexp') {
223 $pass = $got =~ $expected;
224 unless ($pass) {
435e7af6 225 unshift(@mess, "# got '$got'\n",
226 "# expected /$expected/\n");
69026470 227 }
228 } else {
229 $pass = $got =~ /$expected/;
230 unless ($pass) {
7d932aad 231 unshift(@mess, "# got '$got'\n",
232 "# expected /$expected/\n");
69026470 233 }
234 }
7d932aad 235 _ok($pass, _where(), $name, @mess);
69026470 236}
237
238sub pass {
239 _ok(1, '', @_);
240}
241
242sub fail {
243 _ok(0, _where(), @_);
244}
245
ad20d923 246sub curr_test {
cf8feb78 247 $test = shift if @_;
ad20d923 248 return $test;
249}
250
3e90d5a3 251sub next_test {
cf8feb78 252 $test++;
3e90d5a3 253}
254
69026470 255# Note: can't pass multipart messages since we try to
256# be compatible with Test::More::skip().
257sub skip {
7d932aad 258 my $why = shift;
982b7cb7 259 my $n = @_ ? shift : 1;
69026470 260 for (1..$n) {
ad20d923 261 print STDOUT "ok $test # skip: $why\n";
e6c299c8 262 $test++;
69026470 263 }
264 local $^W = 0;
265 last SKIP;
266}
267
268sub eq_array {
269 my ($ra, $rb) = @_;
270 return 0 unless $#$ra == $#$rb;
271 for my $i (0..$#$ra) {
272 return 0 unless $ra->[$i] eq $rb->[$i];
273 }
274 return 1;
275}
276
677fb045 277sub eq_hash {
278 my ($orig, $suspect) = @_;
279 my $fail;
280 while (my ($key, $value) = each %$suspect) {
281 # Force a hash recompute if this perl's internals can cache the hash key.
282 $key = "" . $key;
283 if (exists $orig->{$key}) {
284 if ($orig->{$key} ne $value) {
de522f7a 285 print STDOUT "# key ", _qq($key), " was ", _qq($orig->{$key}),
286 " now ", _qq($value), "\n";
677fb045 287 $fail = 1;
288 }
289 } else {
de522f7a 290 print STDOUT "# key ", _qq($key), " is ", _qq($value),
75385f53 291 ", not in original.\n";
677fb045 292 $fail = 1;
293 }
294 }
295 foreach (keys %$orig) {
296 # Force a hash recompute if this perl's internals can cache the hash key.
297 $_ = "" . $_;
298 next if (exists $suspect->{$_});
de522f7a 299 print STDOUT "# key ", _qq($_), " was ", _qq($orig->{$_}), " now missing.\n";
677fb045 300 $fail = 1;
301 }
302 !$fail;
303}
304
69026470 305sub require_ok {
306 my ($require) = @_;
307 eval <<REQUIRE_OK;
308require $require;
309REQUIRE_OK
1577bb16 310 _ok(!$@, _where(), "require $require");
69026470 311}
312
313sub use_ok {
314 my ($use) = @_;
315 eval <<USE_OK;
316use $use;
317USE_OK
1577bb16 318 _ok(!$@, _where(), "use $use");
69026470 319}
320
137352a2 321# runperl - Runs a separate perl interpreter.
322# Arguments :
323# switches => [ command-line switches ]
324# nolib => 1 # don't use -I../lib (included by default)
325# prog => one-liner (avoid quotes)
326# progfile => perl script
327# stdin => string to feed the stdin
328# stderr => redirect stderr to stdout
329# args => [ command-line arguments to the perl program ]
cb9c5e20 330# verbose => print the command line
137352a2 331
332my $is_mswin = $^O eq 'MSWin32';
333my $is_netware = $^O eq 'NetWare';
334my $is_macos = $^O eq 'MacOS';
335my $is_vms = $^O eq 'VMS';
336
cb9c5e20 337sub _quote_args {
338 my ($runperl, $args) = @_;
339
340 foreach (@$args) {
341 # In VMS protect with doublequotes because otherwise
342 # DCL will lowercase -- unless already doublequoted.
ea9ac5ad 343 $_ = q(").$_.q(") if $is_vms && !/^\"/ && length($_) > 0;
cb9c5e20 344 $$runperl .= ' ' . $_;
345 }
346}
347
137352a2 348sub runperl {
349 my %args = @_;
350 my $runperl = $^X;
f93a5f07 351 if ($args{switches}) {
8da5ed17 352 _quote_args(\$runperl, $args{switches});
137352a2 353 }
f93a5f07 354 unless ($args{nolib}) {
355 if ($is_macos) {
cb9c5e20 356 $runperl .= ' -I::lib';
f93a5f07 357 # Use UNIX style error messages instead of MPW style.
cb9c5e20 358 $runperl .= ' -MMac::err=unix' if $args{stderr};
137352a2 359 }
360 else {
cb9c5e20 361 $runperl .= ' "-I../lib"'; # doublequotes because of VMS
137352a2 362 }
363 }
364 if (defined $args{prog}) {
365 if ($is_mswin || $is_netware || $is_vms) {
366 $runperl .= qq( -e ") . $args{prog} . qq(");
367 }
368 else {
369 $runperl .= qq( -e ') . $args{prog} . qq(');
370 }
371 } elsif (defined $args{progfile}) {
372 $runperl .= qq( "$args{progfile}");
373 }
374 if (defined $args{stdin}) {
5ae09a77 375 # so we don't try to put literal newlines and crs onto the
376 # command line.
377 $args{stdin} =~ s/\n/\\n/g;
378 $args{stdin} =~ s/\r/\\r/g;
379
137352a2 380 if ($is_mswin || $is_netware || $is_vms) {
f93a5f07 381 $runperl = qq{$^X -e "print qq(} .
137352a2 382 $args{stdin} . q{)" | } . $runperl;
383 }
384 else {
f93a5f07 385 $runperl = qq{$^X -e 'print qq(} .
137352a2 386 $args{stdin} . q{)' | } . $runperl;
387 }
388 }
389 if (defined $args{args}) {
cb9c5e20 390 _quote_args(\$runperl, $args{args});
391 }
392 $runperl .= ' 2>&1' if $args{stderr} && !$is_macos;
393 $runperl .= " \xB3 Dev:Null" if !$args{stderr} && $is_macos;
394 if ($args{verbose}) {
395 my $runperldisplay = $runperl;
396 $runperldisplay =~ s/\n/\n\#/g;
75385f53 397 print STDERR "# $runperldisplay\n";
137352a2 398 }
137352a2 399 my $result = `$runperl`;
400 $result =~ s/\n\n/\n/ if $is_vms; # XXX pipes sometimes double these
401 return $result;
402}
403
8799135f 404
c4fbe247 405sub DIE {
75385f53 406 print STDERR "# @_\n";
c4fbe247 407 exit 1;
8799135f 408}
409
b5fe401b 410# A somewhat safer version of the sometimes wrong $^X.
17a740d5 411my $Perl;
412sub which_perl {
413 unless (defined $Perl) {
414 $Perl = $^X;
415
416 my $exe;
417 eval "require Config; Config->import";
85363d30 418 if ($@) {
17a740d5 419 warn "test.pl had problems loading Config: $@";
420 $exe = '';
85363d30 421 } else {
17a740d5 422 $exe = $Config{_exe};
85363d30 423 }
da405c16 424 $exe = '' unless defined $exe;
17a740d5 425
426 # This doesn't absolutize the path: beware of future chdirs().
427 # We could do File::Spec->abs2rel() but that does getcwd()s,
428 # which is a bit heavyweight to do here.
429
430 if ($Perl =~ /^perl\Q$exe\E$/i) {
8db06b02 431 my $perl = "perl$exe";
17a740d5 432 eval "require File::Spec";
433 if ($@) {
434 warn "test.pl had problems loading File::Spec: $@";
8db06b02 435 $Perl = "./$perl";
17a740d5 436 } else {
8db06b02 437 $Perl = File::Spec->catfile(File::Spec->curdir(), $perl);
17a740d5 438 }
439 }
196918b0 440
441 # Build up the name of the executable file from the name of
442 # the command.
443
444 if ($Perl !~ /\Q$exe\E$/i) {
445 $Perl .= $exe;
446 }
c880be78 447
8db06b02 448 warn "which_perl: cannot find $Perl from $^X" unless -f $Perl;
17a740d5 449
450 # For subcommands to use.
451 $ENV{PERLEXE} = $Perl;
85363d30 452 }
17a740d5 453 return $Perl;
b5fe401b 454}
455
435e7af6 456sub unlink_all {
457 foreach my $file (@_) {
458 1 while unlink $file;
75385f53 459 print STDERR "# Couldn't unlink '$file': $!\n" if -f $file;
435e7af6 460 }
461}
eeabcb2d 462
463
464my $tmpfile = "misctmp000";
4651 while -f ++$tmpfile;
466END { unlink_all $tmpfile }
467
f5cda331 468#
469# _fresh_perl
470#
471# The $resolve must be a subref that tests the first argument
472# for success, or returns the definition of success (e.g. the
473# expected scalar) if given no arguments.
474#
475
476sub _fresh_perl {
477 my($prog, $resolve, $runperl_args, $name) = @_;
eeabcb2d 478
479 $runperl_args ||= {};
480 $runperl_args->{progfile} = $tmpfile;
481 $runperl_args->{stderr} = 1;
482
483 open TEST, ">$tmpfile" or die "Cannot open $tmpfile: $!";
484
485 # VMS adjustments
486 if( $^O eq 'VMS' ) {
487 $prog =~ s#/dev/null#NL:#;
488
489 # VMS file locking
490 $prog =~ s{if \(-e _ and -f _ and -r _\)}
491 {if (-e _ and -f _)}
492 }
493
494 print TEST $prog, "\n";
495 close TEST or die "Cannot close $tmpfile: $!";
496
497 my $results = runperl(%$runperl_args);
498 my $status = $?;
499
500 # Clean up the results into something a bit more predictable.
501 $results =~ s/\n+$//;
502 $results =~ s/at\s+misctmp\d+\s+line/at - line/g;
503 $results =~ s/of\s+misctmp\d+\s+aborted/of - aborted/g;
504
505 # bison says 'parse error' instead of 'syntax error',
506 # various yaccs may or may not capitalize 'syntax'.
507 $results =~ s/^(syntax|parse) error/syntax error/mig;
508
509 if ($^O eq 'VMS') {
510 # some tests will trigger VMS messages that won't be expected
511 $results =~ s/\n?%[A-Z]+-[SIWEF]-[A-Z]+,.*//;
512
513 # pipes double these sometimes
514 $results =~ s/\n\n/\n/g;
515 }
516
f5cda331 517 my $pass = $resolve->($results);
eeabcb2d 518 unless ($pass) {
cf8feb78 519 _diag "# PROG: \n$prog\n";
520 _diag "# EXPECTED:\n", $resolve->(), "\n";
521 _diag "# GOT:\n$results\n";
522 _diag "# STATUS: $status\n";
eeabcb2d 523 }
524
e2c38acd 525 # Use the first line of the program as a name if none was given
526 unless( $name ) {
527 ($first_line, $name) = $prog =~ /^((.{1,50}).*)/;
528 $name .= '...' if length $first_line > length $name;
529 }
eeabcb2d 530
f5cda331 531 _ok($pass, _where(), "fresh_perl - $name");
532}
533
534#
535# run_perl_is
536#
537# Combination of run_perl() and is().
538#
539
540sub fresh_perl_is {
541 my($prog, $expected, $runperl_args, $name) = @_;
542 _fresh_perl($prog,
543 sub { @_ ? $_[0] eq $expected : $expected },
544 $runperl_args, $name);
545}
546
547#
548# run_perl_like
549#
550# Combination of run_perl() and like().
551#
552
553sub fresh_perl_like {
554 my($prog, $expected, $runperl_args, $name) = @_;
555 _fresh_perl($prog,
556 sub { @_ ?
557 $_[0] =~ (ref $expected ? $expected : /$expected/) :
558 $expected },
559 $runperl_args, $name);
eeabcb2d 560}
561
69026470 5621;