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