This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
amigaos4: implement flock() emulation
[perl5.git] / t / test.pl
1 #
2 # t/test.pl - most of Test::More functionality without the fuss
3
4
5 # NOTE:
6 #
7 # It's best to not features found only in more modern Perls here, as some cpan
8 # distributions copy this file and operate on older Perls.  Similarly keep
9 # things simple as this may be run under fairly broken circumstances.  For
10 # example, increment ($x++) has a certain amount of cleverness for things like
11 #
12 #   $x = 'zz';
13 #   $x++; # $x eq 'aaa';
14 #
15 # This stands more chance of breaking than just a simple
16 #
17 #   $x = $x + 1
18 #
19 # In this file, we use the latter "Baby Perl" approach, and increment
20 # will be worked over by t/op/inc.t
21
22 $Level = 1;
23 my $test = 1;
24 my $planned;
25 my $noplan;
26 my $Perl;       # Safer version of $^X set by which_perl()
27
28 # This defines ASCII/UTF-8 vs EBCDIC/UTF-EBCDIC
29 $::IS_ASCII  = ord 'A' ==  65;
30 $::IS_EBCDIC = ord 'A' == 193;
31
32 $TODO = 0;
33 $NO_ENDING = 0;
34 $Tests_Are_Passing = 1;
35
36 # Use this instead of print to avoid interference while testing globals.
37 sub _print {
38     local($\, $", $,) = (undef, ' ', '');
39     print STDOUT @_;
40 }
41
42 sub _print_stderr {
43     local($\, $", $,) = (undef, ' ', '');
44     print STDERR @_;
45 }
46
47 sub plan {
48     my $n;
49     if (@_ == 1) {
50         $n = shift;
51         if ($n eq 'no_plan') {
52           undef $n;
53           $noplan = 1;
54         }
55     } else {
56         my %plan = @_;
57         $plan{skip_all} and skip_all($plan{skip_all});
58         $n = $plan{tests};
59     }
60     _print "1..$n\n" unless $noplan;
61     $planned = $n;
62 }
63
64
65 # Set the plan at the end.  See Test::More::done_testing.
66 sub done_testing {
67     my $n = $test - 1;
68     $n = shift if @_;
69
70     _print "1..$n\n";
71     $planned = $n;
72 }
73
74
75 END {
76     my $ran = $test - 1;
77     if (!$NO_ENDING) {
78         if (defined $planned && $planned != $ran) {
79             _print_stderr
80                 "# Looks like you planned $planned tests but ran $ran.\n";
81         } elsif ($noplan) {
82             _print "1..$ran\n";
83         }
84     }
85 }
86
87 sub _diag {
88     return unless @_;
89     my @mess = _comment(@_);
90     $TODO ? _print(@mess) : _print_stderr(@mess);
91 }
92
93 # Use this instead of "print STDERR" when outputting failure diagnostic
94 # messages
95 sub diag {
96     _diag(@_);
97 }
98
99 # Use this instead of "print" when outputting informational messages
100 sub note {
101     return unless @_;
102     _print( _comment(@_) );
103 }
104
105 sub is_miniperl {
106     return !defined &DynaLoader::boot_DynaLoader;
107 }
108
109 sub set_up_inc {
110     # Don’t clobber @INC under miniperl
111     @INC = () unless is_miniperl;
112     unshift @INC, @_;
113 }
114
115 sub _comment {
116     return map { /^#/ ? "$_\n" : "# $_\n" }
117            map { split /\n/ } @_;
118 }
119
120 sub _have_dynamic_extension {
121     my $extension = shift;
122     unless (eval {require Config; 1}) {
123         warn "test.pl had problems loading Config: $@";
124         return 1;
125     }
126     $extension =~ s!::!/!g;
127     return 1 if ($Config::Config{extensions} =~ /\b$extension\b/);
128 }
129
130 sub skip_all {
131     if (@_) {
132         _print "1..0 # Skip @_\n";
133     } else {
134         _print "1..0\n";
135     }
136     exit(0);
137 }
138
139 sub skip_all_if_miniperl {
140     skip_all(@_) if is_miniperl();
141 }
142
143 sub skip_all_without_dynamic_extension {
144     my ($extension) = @_;
145     skip_all("no dynamic loading on miniperl, no $extension") if is_miniperl();
146     return if &_have_dynamic_extension;
147     skip_all("$extension was not built");
148 }
149
150 sub skip_all_without_perlio {
151     skip_all('no PerlIO') unless PerlIO::Layer->find('perlio');
152 }
153
154 sub skip_all_without_config {
155     unless (eval {require Config; 1}) {
156         warn "test.pl had problems loading Config: $@";
157         return;
158     }
159     foreach (@_) {
160         next if $Config::Config{$_};
161         my $key = $_; # Need to copy, before trying to modify.
162         $key =~ s/^use//;
163         $key =~ s/^d_//;
164         skip_all("no $key");
165     }
166 }
167
168 sub skip_all_without_unicode_tables { # (but only under miniperl)
169     if (is_miniperl()) {
170         skip_all_if_miniperl("Unicode tables not built yet")
171             unless eval 'require "unicore/Heavy.pl"';
172     }
173 }
174
175 sub find_git_or_skip {
176     my ($source_dir, $reason);
177     if (-d '.git') {
178         $source_dir = '.';
179     } elsif (-l 'MANIFEST' && -l 'AUTHORS') {
180         my $where = readlink 'MANIFEST';
181         die "Can't readling MANIFEST: $!" unless defined $where;
182         die "Confusing symlink target for MANIFEST, '$where'"
183             unless $where =~ s!/MANIFEST\z!!;
184         if (-d "$where/.git") {
185             # Looks like we are in a symlink tree
186             if (exists $ENV{GIT_DIR}) {
187                 diag("Found source tree at $where, but \$ENV{GIT_DIR} is $ENV{GIT_DIR}. Not changing it");
188             } else {
189                 note("Found source tree at $where, setting \$ENV{GIT_DIR}");
190                 $ENV{GIT_DIR} = "$where/.git";
191             }
192             $source_dir = $where;
193         }
194     } elsif (exists $ENV{GIT_DIR}) {
195         my $commit = '8d063cd8450e59ea1c611a2f4f5a21059a2804f1';
196         my $out = `git rev-parse --verify --quiet '$commit^{commit}'`;
197         chomp $out;
198         if($out eq $commit) {
199             $source_dir = '.'
200         }
201     }
202     if ($source_dir) {
203         my $version_string = `git --version`;
204         if (defined $version_string
205               && $version_string =~ /\Agit version (\d+\.\d+\.\d+)(.*)/) {
206             return $source_dir if eval "v$1 ge v1.5.0";
207             # If you have earlier than 1.5.0 and it works, change this test
208             $reason = "in git checkout, but git version '$1$2' too old";
209         } else {
210             $reason = "in git checkout, but cannot run git";
211         }
212     } else {
213         $reason = 'not being run from a git checkout';
214     }
215     skip_all($reason) if $_[0] && $_[0] eq 'all';
216     skip($reason, @_);
217 }
218
219 sub BAIL_OUT {
220     my ($reason) = @_;
221     _print("Bail out!  $reason\n");
222     exit 255;
223 }
224
225 sub _ok {
226     my ($pass, $where, $name, @mess) = @_;
227     # Do not try to microoptimize by factoring out the "not ".
228     # VMS will avenge.
229     my $out;
230     if ($name) {
231         # escape out '#' or it will interfere with '# skip' and such
232         $name =~ s/#/\\#/g;
233         $out = $pass ? "ok $test - $name" : "not ok $test - $name";
234     } else {
235         $out = $pass ? "ok $test" : "not ok $test";
236     }
237
238     if ($TODO) {
239         $out = $out . " # TODO $TODO";
240     } else {
241         $Tests_Are_Passing = 0 unless $pass;
242     }
243
244     _print "$out\n";
245
246     if ($pass) {
247         note @mess; # Ensure that the message is properly escaped.
248     }
249     else {
250         my $msg = "# Failed test $test - ";
251         $msg.= "$name " if $name;
252         $msg .= "$where\n";
253         _diag $msg;
254         _diag @mess;
255     }
256
257     $test = $test + 1; # don't use ++
258
259     return $pass;
260 }
261
262 sub _where {
263     my @caller = caller($Level);
264     return "at $caller[1] line $caller[2]";
265 }
266
267 # DON'T use this for matches. Use like() instead.
268 sub ok ($@) {
269     my ($pass, $name, @mess) = @_;
270     _ok($pass, _where(), $name, @mess);
271 }
272
273 sub _q {
274     my $x = shift;
275     return 'undef' unless defined $x;
276     my $q = $x;
277     $q =~ s/\\/\\\\/g;
278     $q =~ s/'/\\'/g;
279     return "'$q'";
280 }
281
282 sub _qq {
283     my $x = shift;
284     return defined $x ? '"' . display ($x) . '"' : 'undef';
285 };
286
287 # keys are the codes \n etc map to, values are 2 char strings such as \n
288 my %backslash_escape;
289 foreach my $x (split //, 'nrtfa\\\'"') {
290     $backslash_escape{ord eval "\"\\$x\""} = "\\$x";
291 }
292 # A way to display scalars containing control characters and Unicode.
293 # Trying to avoid setting $_, or relying on local $_ to work.
294 sub display {
295     my @result;
296     foreach my $x (@_) {
297         if (defined $x and not ref $x) {
298             my $y = '';
299             foreach my $c (unpack("W*", $x)) {
300                 if ($c > 255) {
301                     $y = $y . sprintf "\\x{%x}", $c;
302                 } elsif ($backslash_escape{$c}) {
303                     $y = $y . $backslash_escape{$c};
304                 } else {
305                     my $z = chr $c; # Maybe we can get away with a literal...
306
307                     if ($z !~ /[^[:^print:][:^ascii:]]/) {
308                         # The pattern above is equivalent (by de Morgan's
309                         # laws) to:
310                         #     $z !~ /(?[ [:print:] & [:ascii:] ])/
311                         # or, $z is not an ascii printable character
312
313                         # Use octal for characters with small ordinals that
314                         # are traditionally expressed as octal: the controls
315                         # below space, which on EBCDIC are almost all the
316                         # controls, but on ASCII don't include DEL nor the C1
317                         # controls.
318                         if ($c < ord " ") {
319                             $z = sprintf "\\%03o", $c;
320                         } else {
321                             $z = sprintf "\\x{%x}", $c;
322                         }
323                     }
324                     $y = $y . $z;
325                 }
326             }
327             $x = $y;
328         }
329         return $x unless wantarray;
330         push @result, $x;
331     }
332     return @result;
333 }
334
335 sub is ($$@) {
336     my ($got, $expected, $name, @mess) = @_;
337
338     my $pass;
339     if( !defined $got || !defined $expected ) {
340         # undef only matches undef
341         $pass = !defined $got && !defined $expected;
342     }
343     else {
344         $pass = $got eq $expected;
345     }
346
347     unless ($pass) {
348         unshift(@mess, "#      got "._qq($got)."\n",
349                        "# expected "._qq($expected)."\n");
350     }
351     _ok($pass, _where(), $name, @mess);
352 }
353
354 sub isnt ($$@) {
355     my ($got, $isnt, $name, @mess) = @_;
356
357     my $pass;
358     if( !defined $got || !defined $isnt ) {
359         # undef only matches undef
360         $pass = defined $got || defined $isnt;
361     }
362     else {
363         $pass = $got ne $isnt;
364     }
365
366     unless( $pass ) {
367         unshift(@mess, "# it should not be "._qq($got)."\n",
368                        "# but it is.\n");
369     }
370     _ok($pass, _where(), $name, @mess);
371 }
372
373 sub cmp_ok ($$$@) {
374     my($got, $type, $expected, $name, @mess) = @_;
375
376     my $pass;
377     {
378         local $^W = 0;
379         local($@,$!);   # don't interfere with $@
380                         # eval() sometimes resets $!
381         $pass = eval "\$got $type \$expected";
382     }
383     unless ($pass) {
384         # It seems Irix long doubles can have 2147483648 and 2147483648
385         # that stringify to the same thing but are actually numerically
386         # different. Display the numbers if $type isn't a string operator,
387         # and the numbers are stringwise the same.
388         # (all string operators have alphabetic names, so tr/a-z// is true)
389         # This will also show numbers for some unneeded cases, but will
390         # definitely be helpful for things such as == and <= that fail
391         if ($got eq $expected and $type !~ tr/a-z//) {
392             unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n";
393         }
394         unshift(@mess, "#      got "._qq($got)."\n",
395                        "# expected $type "._qq($expected)."\n");
396     }
397     _ok($pass, _where(), $name, @mess);
398 }
399
400 # Check that $got is within $range of $expected
401 # if $range is 0, then check it's exact
402 # else if $expected is 0, then $range is an absolute value
403 # otherwise $range is a fractional error.
404 # Here $range must be numeric, >= 0
405 # Non numeric ranges might be a useful future extension. (eg %)
406 sub within ($$$@) {
407     my ($got, $expected, $range, $name, @mess) = @_;
408     my $pass;
409     if (!defined $got or !defined $expected or !defined $range) {
410         # This is a fail, but doesn't need extra diagnostics
411     } elsif ($got !~ tr/0-9// or $expected !~ tr/0-9// or $range !~ tr/0-9//) {
412         # This is a fail
413         unshift @mess, "# got, expected and range must be numeric\n";
414     } elsif ($range < 0) {
415         # This is also a fail
416         unshift @mess, "# range must not be negative\n";
417     } elsif ($range == 0) {
418         # Within 0 is ==
419         $pass = $got == $expected;
420     } elsif ($expected == 0) {
421         # If expected is 0, treat range as absolute
422         $pass = ($got <= $range) && ($got >= - $range);
423     } else {
424         my $diff = $got - $expected;
425         $pass = abs ($diff / $expected) < $range;
426     }
427     unless ($pass) {
428         if ($got eq $expected) {
429             unshift @mess, "# $got - $expected = " . ($got - $expected) . "\n";
430         }
431         unshift@mess, "#      got "._qq($got)."\n",
432                       "# expected "._qq($expected)." (within "._qq($range).")\n";
433     }
434     _ok($pass, _where(), $name, @mess);
435 }
436
437 # Note: this isn't quite as fancy as Test::More::like().
438
439 sub like   ($$@) { like_yn (0,@_) }; # 0 for -
440 sub unlike ($$@) { like_yn (1,@_) }; # 1 for un-
441
442 sub like_yn ($$$@) {
443     my ($flip, undef, $expected, $name, @mess) = @_;
444
445     # We just accept like(..., qr/.../), not like(..., '...'), and
446     # definitely not like(..., '/.../') like
447     # Test::Builder::maybe_regex() does.
448     unless (re::is_regexp($expected)) {
449         die "PANIC: The value '$expected' isn't a regexp. The like() function needs a qr// pattern, not a string";
450     }
451
452     my $pass;
453     $pass = $_[1] =~ /$expected/ if !$flip;
454     $pass = $_[1] !~ /$expected/ if $flip;
455     unless ($pass) {
456         unshift(@mess, "#      got '$_[1]'\n",
457                 $flip
458                 ? "# expected !~ /$expected/\n" : "# expected /$expected/\n");
459     }
460     local $Level = $Level + 1;
461     _ok($pass, _where(), $name, @mess);
462 }
463
464 sub pass {
465     _ok(1, '', @_);
466 }
467
468 sub fail {
469     _ok(0, _where(), @_);
470 }
471
472 sub curr_test {
473     $test = shift if @_;
474     return $test;
475 }
476
477 sub next_test {
478   my $retval = $test;
479   $test = $test + 1; # don't use ++
480   $retval;
481 }
482
483 # Note: can't pass multipart messages since we try to
484 # be compatible with Test::More::skip().
485 sub skip {
486     my $why = shift;
487     my $n   = @_ ? shift : 1;
488     my $bad_swap;
489     my $both_zero;
490     {
491       local $^W = 0;
492       $bad_swap = $why > 0 && $n == 0;
493       $both_zero = $why == 0 && $n == 0;
494     }
495     if ($bad_swap || $both_zero || @_) {
496       my $arg = "'$why', '$n'";
497       if (@_) {
498         $arg .= join(", ", '', map { qq['$_'] } @_);
499       }
500       die qq[$0: expected skip(why, count), got skip($arg)\n];
501     }
502     for (1..$n) {
503         _print "ok $test # skip $why\n";
504         $test = $test + 1;
505     }
506     local $^W = 0;
507     last SKIP;
508 }
509
510 sub skip_if_miniperl {
511     skip(@_) if is_miniperl();
512 }
513
514 sub skip_without_dynamic_extension {
515     my $extension = shift;
516     skip("no dynamic loading on miniperl, no extension $extension", @_)
517         if is_miniperl();
518     return if &_have_dynamic_extension($extension);
519     skip("extension $extension was not built", @_);
520 }
521
522 sub todo_skip {
523     my $why = shift;
524     my $n   = @_ ? shift : 1;
525
526     for (1..$n) {
527         _print "not ok $test # TODO & SKIP $why\n";
528         $test = $test + 1;
529     }
530     local $^W = 0;
531     last TODO;
532 }
533
534 sub eq_array {
535     my ($ra, $rb) = @_;
536     return 0 unless $#$ra == $#$rb;
537     for my $i (0..$#$ra) {
538         next     if !defined $ra->[$i] && !defined $rb->[$i];
539         return 0 if !defined $ra->[$i];
540         return 0 if !defined $rb->[$i];
541         return 0 unless $ra->[$i] eq $rb->[$i];
542     }
543     return 1;
544 }
545
546 sub eq_hash {
547   my ($orig, $suspect) = @_;
548   my $fail;
549   while (my ($key, $value) = each %$suspect) {
550     # Force a hash recompute if this perl's internals can cache the hash key.
551     $key = "" . $key;
552     if (exists $orig->{$key}) {
553       if (
554         defined $orig->{$key} != defined $value
555         || (defined $value && $orig->{$key} ne $value)
556       ) {
557         _print "# key ", _qq($key), " was ", _qq($orig->{$key}),
558                      " now ", _qq($value), "\n";
559         $fail = 1;
560       }
561     } else {
562       _print "# key ", _qq($key), " is ", _qq($value),
563                    ", not in original.\n";
564       $fail = 1;
565     }
566   }
567   foreach (keys %$orig) {
568     # Force a hash recompute if this perl's internals can cache the hash key.
569     $_ = "" . $_;
570     next if (exists $suspect->{$_});
571     _print "# key ", _qq($_), " was ", _qq($orig->{$_}), " now missing.\n";
572     $fail = 1;
573   }
574   !$fail;
575 }
576
577 # We only provide a subset of the Test::More functionality.
578 sub require_ok ($) {
579     my ($require) = @_;
580     if ($require =~ tr/[A-Za-z0-9:.]//c) {
581         fail("Invalid character in \"$require\", passed to require_ok");
582     } else {
583         eval <<REQUIRE_OK;
584 require $require;
585 REQUIRE_OK
586         is($@, '', _where(), "require $require");
587     }
588 }
589
590 sub use_ok ($) {
591     my ($use) = @_;
592     if ($use =~ tr/[A-Za-z0-9:.]//c) {
593         fail("Invalid character in \"$use\", passed to use");
594     } else {
595         eval <<USE_OK;
596 use $use;
597 USE_OK
598         is($@, '', _where(), "use $use");
599     }
600 }
601
602 # runperl - Runs a separate perl interpreter and returns its output.
603 # Arguments :
604 #   switches => [ command-line switches ]
605 #   nolib    => 1 # don't use -I../lib (included by default)
606 #   non_portable => Don't warn if a one liner contains quotes
607 #   prog     => one-liner (avoid quotes)
608 #   progs    => [ multi-liner (avoid quotes) ]
609 #   progfile => perl script
610 #   stdin    => string to feed the stdin (or undef to redirect from /dev/null)
611 #   stderr   => If 'devnull' suppresses stderr, if other TRUE value redirect
612 #               stderr to stdout
613 #   args     => [ command-line arguments to the perl program ]
614 #   verbose  => print the command line
615
616 my $is_mswin    = $^O eq 'MSWin32';
617 my $is_netware  = $^O eq 'NetWare';
618 my $is_vms      = $^O eq 'VMS';
619 my $is_cygwin   = $^O eq 'cygwin';
620
621 sub _quote_args {
622     my ($runperl, $args) = @_;
623
624     foreach (@$args) {
625         # In VMS protect with doublequotes because otherwise
626         # DCL will lowercase -- unless already doublequoted.
627        $_ = q(").$_.q(") if $is_vms && !/^\"/ && length($_) > 0;
628        $runperl = $runperl . ' ' . $_;
629     }
630     return $runperl;
631 }
632
633 sub _create_runperl { # Create the string to qx in runperl().
634     my %args = @_;
635     my $runperl = which_perl();
636     if ($runperl =~ m/\s/) {
637         $runperl = qq{"$runperl"};
638     }
639     #- this allows, for example, to set PERL_RUNPERL_DEBUG=/usr/bin/valgrind
640     if ($ENV{PERL_RUNPERL_DEBUG}) {
641         $runperl = "$ENV{PERL_RUNPERL_DEBUG} $runperl";
642     }
643     unless ($args{nolib}) {
644         $runperl = $runperl . ' "-I../lib"'; # doublequotes because of VMS
645     }
646     if ($args{switches}) {
647         local $Level = 2;
648         die "test.pl:runperl(): 'switches' must be an ARRAYREF " . _where()
649             unless ref $args{switches} eq "ARRAY";
650         $runperl = _quote_args($runperl, $args{switches});
651     }
652     if (defined $args{prog}) {
653         die "test.pl:runperl(): both 'prog' and 'progs' cannot be used " . _where()
654             if defined $args{progs};
655         $args{progs} = [split /\n/, $args{prog}, -1]
656     }
657     if (defined $args{progs}) {
658         die "test.pl:runperl(): 'progs' must be an ARRAYREF " . _where()
659             unless ref $args{progs} eq "ARRAY";
660         foreach my $prog (@{$args{progs}}) {
661             if (!$args{non_portable}) {
662                 if ($prog =~ tr/'"//) {
663                     warn "quotes in prog >>$prog<< are not portable";
664                 }
665                 if ($prog =~ /^([<>|]|2>)/) {
666                     warn "Initial $1 in prog >>$prog<< is not portable";
667                 }
668                 if ($prog =~ /&\z/) {
669                     warn "Trailing & in prog >>$prog<< is not portable";
670                 }
671             }
672             if ($is_mswin || $is_netware || $is_vms) {
673                 $runperl = $runperl . qq ( -e "$prog" );
674             }
675             else {
676                 $runperl = $runperl . qq ( -e '$prog' );
677             }
678         }
679     } elsif (defined $args{progfile}) {
680         $runperl = $runperl . qq( "$args{progfile}");
681     } else {
682         # You probably didn't want to be sucking in from the upstream stdin
683         die "test.pl:runperl(): none of prog, progs, progfile, args, "
684             . " switches or stdin specified"
685             unless defined $args{args} or defined $args{switches}
686                 or defined $args{stdin};
687     }
688     if (defined $args{stdin}) {
689         # so we don't try to put literal newlines and crs onto the
690         # command line.
691         $args{stdin} =~ s/\n/\\n/g;
692         $args{stdin} =~ s/\r/\\r/g;
693
694         if ($is_mswin || $is_netware || $is_vms) {
695             $runperl = qq{$Perl -e "print qq(} .
696                 $args{stdin} . q{)" | } . $runperl;
697         }
698         else {
699             $runperl = qq{$Perl -e 'print qq(} .
700                 $args{stdin} . q{)' | } . $runperl;
701         }
702     } elsif (exists $args{stdin}) {
703         # Using the pipe construction above can cause fun on systems which use
704         # ksh as /bin/sh, as ksh does pipes differently (with one less process)
705         # With sh, for the command line 'perl -e 'print qq()' | perl -e ...'
706         # the sh process forks two children, which use exec to start the two
707         # perl processes. The parent shell process persists for the duration of
708         # the pipeline, and the second perl process starts with no children.
709         # With ksh (and zsh), the shell saves a process by forking a child for
710         # just the first perl process, and execing itself to start the second.
711         # This means that the second perl process starts with one child which
712         # it didn't create. This causes "fun" when if the tests assume that
713         # wait (or waitpid) will only return information about processes
714         # started within the test.
715         # They also cause fun on VMS, where the pipe implementation returns
716         # the exit code of the process at the front of the pipeline, not the
717         # end. This messes up any test using OPTION FATAL.
718         # Hence it's useful to have a way to make STDIN be at eof without
719         # needing a pipeline, so that the fork tests have a sane environment
720         # without these surprises.
721
722         # /dev/null appears to be surprisingly portable.
723         $runperl = $runperl . ($is_mswin ? ' <nul' : ' </dev/null');
724     }
725     if (defined $args{args}) {
726         $runperl = _quote_args($runperl, $args{args});
727     }
728     if (exists $args{stderr} && $args{stderr} eq 'devnull') {
729         $runperl = $runperl . ($is_mswin ? ' 2>nul' : ' 2>/dev/null');
730     }
731     elsif ($args{stderr}) {
732         $runperl = $runperl . ' 2>&1';
733     }
734     if ($args{verbose}) {
735         my $runperldisplay = $runperl;
736         $runperldisplay =~ s/\n/\n\#/g;
737         _print_stderr "# $runperldisplay\n";
738     }
739     return $runperl;
740 }
741
742 # sub run_perl {} is alias to below
743 sub runperl {
744     die "test.pl:runperl() does not take a hashref"
745         if ref $_[0] and ref $_[0] eq 'HASH';
746     my $runperl = &_create_runperl;
747     my $result;
748
749     my $tainted = ${^TAINT};
750     my %args = @_;
751     exists $args{switches} && grep m/^-T$/, @{$args{switches}} and $tainted = $tainted + 1;
752
753     if ($tainted) {
754         # We will assume that if you're running under -T, you really mean to
755         # run a fresh perl, so we'll brute force launder everything for you
756         my $sep;
757
758         if (! eval {require Config; 1}) {
759             warn "test.pl had problems loading Config: $@";
760             $sep = ':';
761         } else {
762             $sep = $Config::Config{path_sep};
763         }
764
765         my @keys = grep {exists $ENV{$_}} qw(CDPATH IFS ENV BASH_ENV);
766         local @ENV{@keys} = ();
767         # Untaint, plus take out . and empty string:
768         local $ENV{'DCL$PATH'} = $1 if $is_vms && exists($ENV{'DCL$PATH'}) && ($ENV{'DCL$PATH'} =~ /(.*)/s);
769         $ENV{PATH} =~ /(.*)/s;
770         local $ENV{PATH} =
771             join $sep, grep { $_ ne "" and $_ ne "." and -d $_ and
772                 ($is_mswin or $is_vms or !(stat && (stat _)[2]&0022)) }
773                     split quotemeta ($sep), $1;
774         if ($is_cygwin) {   # Must have /bin under Cygwin
775             if (length $ENV{PATH}) {
776                 $ENV{PATH} = $ENV{PATH} . $sep;
777             }
778             $ENV{PATH} = $ENV{PATH} . '/bin';
779         }
780         $runperl =~ /(.*)/s;
781         $runperl = $1;
782
783         $result = `$runperl`;
784     } else {
785         $result = `$runperl`;
786     }
787     $result =~ s/\n\n/\n/g if $is_vms; # XXX pipes sometimes double these
788     return $result;
789 }
790
791 # Nice alias
792 *run_perl = *run_perl = \&runperl; # shut up "used only once" warning
793
794 sub DIE {
795     _print_stderr "# @_\n";
796     exit 1;
797 }
798
799 # A somewhat safer version of the sometimes wrong $^X.
800 sub which_perl {
801     unless (defined $Perl) {
802         $Perl = $^X;
803
804         # VMS should have 'perl' aliased properly
805         return $Perl if $is_vms;
806
807         my $exe;
808         if (! eval {require Config; 1}) {
809             warn "test.pl had problems loading Config: $@";
810             $exe = '';
811         } else {
812             $exe = $Config::Config{_exe};
813         }
814        $exe = '' unless defined $exe;
815
816         # This doesn't absolutize the path: beware of future chdirs().
817         # We could do File::Spec->abs2rel() but that does getcwd()s,
818         # which is a bit heavyweight to do here.
819
820         if ($Perl =~ /^perl\Q$exe\E$/i) {
821             my $perl = "perl$exe";
822             if (! eval {require File::Spec; 1}) {
823                 warn "test.pl had problems loading File::Spec: $@";
824                 $Perl = "./$perl";
825             } else {
826                 $Perl = File::Spec->catfile(File::Spec->curdir(), $perl);
827             }
828         }
829
830         # Build up the name of the executable file from the name of
831         # the command.
832
833         if ($Perl !~ /\Q$exe\E$/i) {
834             $Perl = $Perl . $exe;
835         }
836
837         warn "which_perl: cannot find $Perl from $^X" unless -f $Perl;
838
839         # For subcommands to use.
840         $ENV{PERLEXE} = $Perl;
841     }
842     return $Perl;
843 }
844
845 sub unlink_all {
846     my $count = 0;
847     foreach my $file (@_) {
848         1 while unlink $file;
849         if( -f $file ){
850             _print_stderr "# Couldn't unlink '$file': $!\n";
851         }else{
852             ++$count;
853         }
854     }
855     $count;
856 }
857
858 # _num_to_alpha - Returns a string of letters representing a positive integer.
859 # Arguments :
860 #   number to convert
861 #   maximum number of letters
862
863 # returns undef if the number is negative
864 # returns undef if the number of letters is greater than the maximum wanted
865
866 # _num_to_alpha( 0) eq 'A';
867 # _num_to_alpha( 1) eq 'B';
868 # _num_to_alpha(25) eq 'Z';
869 # _num_to_alpha(26) eq 'AA';
870 # _num_to_alpha(27) eq 'AB';
871
872 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);
873
874 # Avoid ++ -- ranges split negative numbers
875 sub _num_to_alpha{
876     my($num,$max_char) = @_;
877     return unless $num >= 0;
878     my $alpha = '';
879     my $char_count = 0;
880     $max_char = 0 if $max_char < 0;
881
882     while( 1 ){
883         $alpha = $letters[ $num % 26 ] . $alpha;
884         $num = int( $num / 26 );
885         last if $num == 0;
886         $num = $num - 1;
887
888         # char limit
889         next unless $max_char;
890         $char_count = $char_count + 1;
891         return if $char_count == $max_char;
892     }
893     return $alpha;
894 }
895
896 my %tmpfiles;
897 END { unlink_all keys %tmpfiles }
898
899 # A regexp that matches the tempfile names
900 $::tempfile_regexp = 'tmp\d+[A-Z][A-Z]?';
901
902 # Avoid ++, avoid ranges, avoid split //
903 my $tempfile_count = 0;
904 sub tempfile {
905     while(1){
906         my $try = "tmp$$";
907         my $alpha = _num_to_alpha($tempfile_count,2);
908         last unless defined $alpha;
909         $try = $try . $alpha;
910         $tempfile_count = $tempfile_count + 1;
911
912         # Need to note all the file names we allocated, as a second request may
913         # come before the first is created.
914         if (!$tmpfiles{$try} && !-e $try) {
915             # We have a winner
916             $tmpfiles{$try} = 1;
917             return $try;
918         }
919     }
920     die "Can't find temporary file name starting \"tmp$$\"";
921 }
922
923 # register_tempfile - Adds a list of files to be removed at the end of the current test file
924 # Arguments :
925 #   a list of files to be removed later
926
927 # returns a count of how many file names were actually added
928
929 # Reuses %tmpfiles so that tempfile() will also skip any files added here
930 # even if the file doesn't exist yet.
931
932 sub register_tempfile {
933     my $count = 0;
934     for( @_ ){
935         if( $tmpfiles{$_} ){
936             _print_stderr "# Temporary file '$_' already added\n";
937         }else{
938             $tmpfiles{$_} = 1;
939             $count = $count + 1;
940         }
941     }
942     return $count;
943 }
944
945 # This is the temporary file for _fresh_perl
946 my $tmpfile = tempfile();
947
948 sub _fresh_perl {
949     my($prog, $action, $expect, $runperl_args, $name) = @_;
950
951     # Given the choice of the mis-parsable {}
952     # (we want an anon hash, but a borked lexer might think that it's a block)
953     # or relying on taking a reference to a lexical
954     # (\ might be mis-parsed, and the reference counting on the pad may go
955     #  awry)
956     # it feels like the least-worse thing is to assume that auto-vivification
957     # works. At least, this is only going to be a run-time failure, so won't
958     # affect tests using this file but not this function.
959     $runperl_args->{progfile} ||= $tmpfile;
960     $runperl_args->{stderr}     = 1 unless exists $runperl_args->{stderr};
961
962     open TEST, ">$tmpfile" or die "Cannot open $tmpfile: $!";
963     print TEST $prog;
964     close TEST or die "Cannot close $tmpfile: $!";
965
966     my $results = runperl(%$runperl_args);
967     my $status = $?;
968
969     # Clean up the results into something a bit more predictable.
970     $results  =~ s/\n+$//;
971     $results =~ s/at\s+$::tempfile_regexp\s+line/at - line/g;
972     $results =~ s/of\s+$::tempfile_regexp\s+aborted/of - aborted/g;
973
974     # bison says 'parse error' instead of 'syntax error',
975     # various yaccs may or may not capitalize 'syntax'.
976     $results =~ s/^(syntax|parse) error/syntax error/mig;
977
978     if ($is_vms) {
979         # some tests will trigger VMS messages that won't be expected
980         $results =~ s/\n?%[A-Z]+-[SIWEF]-[A-Z]+,.*//;
981
982         # pipes double these sometimes
983         $results =~ s/\n\n/\n/g;
984     }
985
986     # Use the first line of the program as a name if none was given
987     unless( $name ) {
988         ($first_line, $name) = $prog =~ /^((.{1,50}).*)/;
989         $name = $name . '...' if length $first_line > length $name;
990     }
991
992     # Historically this was implemented using a closure, but then that means
993     # that the tests for closures avoid using this code. Given that there
994     # are exactly two callers, doing exactly two things, the simpler approach
995     # feels like a better trade off.
996     my $pass;
997     if ($action eq 'eq') {
998         $pass = is($results, $expect, $name);
999     } elsif ($action eq '=~') {
1000         $pass = like($results, $expect, $name);
1001     } else {
1002         die "_fresh_perl can't process action '$action'";
1003     }
1004         
1005     unless ($pass) {
1006         _diag "# PROG: \n$prog\n";
1007         _diag "# STATUS: $status\n";
1008     }
1009
1010     return $pass;
1011 }
1012
1013 #
1014 # fresh_perl_is
1015 #
1016 # Combination of run_perl() and is().
1017 #
1018
1019 sub fresh_perl_is {
1020     my($prog, $expected, $runperl_args, $name) = @_;
1021
1022     # _fresh_perl() is going to clip the trailing newlines off the result.
1023     # This will make it so the test author doesn't have to know that.
1024     $expected =~ s/\n+$//;
1025
1026     local $Level = 2;
1027     _fresh_perl($prog, 'eq', $expected, $runperl_args, $name);
1028 }
1029
1030 #
1031 # fresh_perl_like
1032 #
1033 # Combination of run_perl() and like().
1034 #
1035
1036 sub fresh_perl_like {
1037     my($prog, $expected, $runperl_args, $name) = @_;
1038     local $Level = 2;
1039     _fresh_perl($prog, '=~', $expected, $runperl_args, $name);
1040 }
1041
1042 # Many tests use the same format in __DATA__ or external files to specify a
1043 # sequence of (fresh) tests to run, extra files they may temporarily need, and
1044 # what the expected output is.  Putting it here allows common code to serve
1045 # these multiple tests.
1046 #
1047 # Each program is source code to run followed by an "EXPECT" line, followed
1048 # by the expected output.
1049 #
1050 # The code to run may begin with a command line switch such as -w or -0777
1051 # (alphanumerics only), and may contain (note the '# ' on each):
1052 #   # TODO reason for todo
1053 #   # SKIP reason for skip
1054 #   # SKIP ?code to test if this should be skipped
1055 #   # NAME name of the test (as with ok($ok, $name))
1056 #
1057 # The expected output may contain:
1058 #   OPTION list of options
1059 #   OPTIONS list of options
1060 #
1061 # The possible options for OPTION may be:
1062 #   regex - the expected output is a regular expression
1063 #   random - all lines match but in any order
1064 #   fatal - the code will fail fatally (croak, die)
1065 #
1066 # If the actual output contains a line "SKIPPED" the test will be
1067 # skipped.
1068 #
1069 # If the actual output contains a line "PREFIX", any output starting with that
1070 # line will be ignored when comparing with the expected output
1071 #
1072 # If the global variable $FATAL is true then OPTION fatal is the
1073 # default.
1074
1075 sub _setup_one_file {
1076     my $fh = shift;
1077     # Store the filename as a program that started at line 0.
1078     # Real files count lines starting at line 1.
1079     my @these = (0, shift);
1080     my ($lineno, $current);
1081     while (<$fh>) {
1082         if ($_ eq "########\n") {
1083             if (defined $current) {
1084                 push @these, $lineno, $current;
1085             }
1086             undef $current;
1087         } else {
1088             if (!defined $current) {
1089                 $lineno = $.;
1090             }
1091             $current .= $_;
1092         }
1093     }
1094     if (defined $current) {
1095         push @these, $lineno, $current;
1096     }
1097     ((scalar @these) / 2 - 1, @these);
1098 }
1099
1100 sub setup_multiple_progs {
1101     my ($tests, @prgs);
1102     foreach my $file (@_) {
1103         next if $file =~ /(?:~|\.orig|,v)$/;
1104         next if $file =~ /perlio$/ && !PerlIO::Layer->find('perlio');
1105         next if -d $file;
1106
1107         open my $fh, '<', $file or die "Cannot open $file: $!\n" ;
1108         my $found;
1109         while (<$fh>) {
1110             if (/^__END__/) {
1111                 ++$found;
1112                 last;
1113             }
1114         }
1115         # This is an internal error, and should never happen. All bar one of
1116         # the files had an __END__ marker to signal the end of their preamble,
1117         # although for some it wasn't technically necessary as they have no
1118         # tests. It might be possible to process files without an __END__ by
1119         # seeking back to the start and treating the whole file as tests, but
1120         # it's simpler and more reliable just to make the rule that all files
1121         # must have __END__ in. This should never fail - a file without an
1122         # __END__ should not have been checked in, because the regression tests
1123         # would not have passed.
1124         die "Could not find '__END__' in $file"
1125             unless $found;
1126
1127         my ($t, @p) = _setup_one_file($fh, $file);
1128         $tests += $t;
1129         push @prgs, @p;
1130
1131         close $fh
1132             or die "Cannot close $file: $!\n";
1133     }
1134     return ($tests, @prgs);
1135 }
1136
1137 sub run_multiple_progs {
1138     my $up = shift;
1139     my @prgs;
1140     if ($up) {
1141         # The tests in lib run in a temporary subdirectory of t, and always
1142         # pass in a list of "programs" to run
1143         @prgs = @_;
1144     } else {
1145         # The tests below t run in t and pass in a file handle. In theory we
1146         # can pass (caller)[1] as the second argument to report errors with
1147         # the filename of our caller, as the handle is always DATA. However,
1148         # line numbers in DATA count from the __END__ token, so will be wrong.
1149         # Which is more confusing than not providing line numbers. So, for now,
1150         # don't provide line numbers. No obvious clean solution - one hack
1151         # would be to seek DATA back to the start and read to the __END__ token,
1152         # but that feels almost like we should just open $0 instead.
1153
1154         # Not going to rely on undef in list assignment.
1155         my $dummy;
1156         ($dummy, @prgs) = _setup_one_file(shift);
1157     }
1158
1159     my $tmpfile = tempfile();
1160
1161     my ($file, $line);
1162   PROGRAM:
1163     while (defined ($line = shift @prgs)) {
1164         $_ = shift @prgs;
1165         unless ($line) {
1166             $file = $_;
1167             if (defined $file) {
1168                 print "# From $file\n";
1169             }
1170             next;
1171         }
1172         my $switch = "";
1173         my @temps ;
1174         my @temp_path;
1175         if (s/^(\s*-\w+)//) {
1176             $switch = $1;
1177         }
1178         my ($prog, $expected) = split(/\nEXPECT(?:\n|$)/, $_, 2);
1179
1180         my %reason;
1181         foreach my $what (qw(skip todo)) {
1182             $prog =~ s/^#\s*\U$what\E\s*(.*)\n//m and $reason{$what} = $1;
1183             # If the SKIP reason starts ? then it's taken as a code snippet to
1184             # evaluate. This provides the flexibility to have conditional SKIPs
1185             if ($reason{$what} && $reason{$what} =~ s/^\?//) {
1186                 my $temp = eval $reason{$what};
1187                 if ($@) {
1188                     die "# In \U$what\E code reason:\n# $reason{$what}\n$@";
1189                 }
1190                 $reason{$what} = $temp;
1191             }
1192         }
1193
1194         my $name = '';
1195         if ($prog =~ s/^#\s*NAME\s+(.+)\n//m) {
1196             $name = $1;
1197         }
1198
1199         if ($reason{skip}) {
1200         SKIP:
1201           {
1202             skip($name ? "$name - $reason{skip}" : $reason{skip}, 1);
1203           }
1204           next PROGRAM;
1205         }
1206
1207         if ($prog =~ /--FILE--/) {
1208             my @files = split(/\n?--FILE--\s*([^\s\n]*)\s*\n/, $prog) ;
1209             shift @files ;
1210             die "Internal error: test $_ didn't split into pairs, got " .
1211                 scalar(@files) . "[" . join("%%%%", @files) ."]\n"
1212                     if @files % 2;
1213             while (@files > 2) {
1214                 my $filename = shift @files;
1215                 my $code = shift @files;
1216                 push @temps, $filename;
1217                 if ($filename =~ m#(.*)/# && $filename !~ m#^\.\./#) {
1218                     require File::Path;
1219                     File::Path::mkpath($1);
1220                     push(@temp_path, $1);
1221                 }
1222                 open my $fh, '>', $filename or die "Cannot open $filename: $!\n";
1223                 print $fh $code;
1224                 close $fh or die "Cannot close $filename: $!\n";
1225             }
1226             shift @files;
1227             $prog = shift @files;
1228         }
1229
1230         open my $fh, '>', $tmpfile or die "Cannot open >$tmpfile: $!";
1231         print $fh q{
1232         BEGIN {
1233             open STDERR, '>&', STDOUT
1234               or die "Can't dup STDOUT->STDERR: $!;";
1235         }
1236         };
1237         print $fh "\n#line 1\n";  # So the line numbers don't get messed up.
1238         print $fh $prog,"\n";
1239         close $fh or die "Cannot close $tmpfile: $!";
1240         my $results = runperl( stderr => 1, progfile => $tmpfile,
1241                                stdin => undef, $up
1242                                ? (switches => ["-I$up/lib", $switch], nolib => 1)
1243                                : (switches => [$switch])
1244                                 );
1245         my $status = $?;
1246         $results =~ s/\n+$//;
1247         # allow expected output to be written as if $prog is on STDIN
1248         $results =~ s/$::tempfile_regexp/-/g;
1249         if ($^O eq 'VMS') {
1250             # some tests will trigger VMS messages that won't be expected
1251             $results =~ s/\n?%[A-Z]+-[SIWEF]-[A-Z]+,.*//;
1252
1253             # pipes double these sometimes
1254             $results =~ s/\n\n/\n/g;
1255         }
1256         # bison says 'parse error' instead of 'syntax error',
1257         # various yaccs may or may not capitalize 'syntax'.
1258         $results =~ s/^(syntax|parse) error/syntax error/mig;
1259         # allow all tests to run when there are leaks
1260         $results =~ s/Scalars leaked: \d+\n//g;
1261
1262         $expected =~ s/\n+$//;
1263         my $prefix = ($results =~ s#^PREFIX(\n|$)##) ;
1264         # any special options? (OPTIONS foo bar zap)
1265         my $option_regex = 0;
1266         my $option_random = 0;
1267         my $fatal = $FATAL;
1268         if ($expected =~ s/^OPTIONS? (.+)\n//) {
1269             foreach my $option (split(' ', $1)) {
1270                 if ($option eq 'regex') { # allow regular expressions
1271                     $option_regex = 1;
1272                 }
1273                 elsif ($option eq 'random') { # all lines match, but in any order
1274                     $option_random = 1;
1275                 }
1276                 elsif ($option eq 'fatal') { # perl should fail
1277                     $fatal = 1;
1278                 }
1279                 else {
1280                     die "$0: Unknown OPTION '$option'\n";
1281                 }
1282             }
1283         }
1284         die "$0: can't have OPTION regex and random\n"
1285             if $option_regex + $option_random > 1;
1286         my $ok = 0;
1287         if ($results =~ s/^SKIPPED\n//) {
1288             print "$results\n" ;
1289             $ok = 1;
1290         }
1291         else {
1292             if ($option_random) {
1293                 my @got = sort split "\n", $results;
1294                 my @expected = sort split "\n", $expected;
1295
1296                 $ok = "@got" eq "@expected";
1297             }
1298             elsif ($option_regex) {
1299                 $ok = $results =~ /^$expected/;
1300             }
1301             elsif ($prefix) {
1302                 $ok = $results =~ /^\Q$expected/;
1303             }
1304             else {
1305                 $ok = $results eq $expected;
1306             }
1307
1308             if ($ok && $fatal && !($status >> 8)) {
1309                 $ok = 0;
1310             }
1311         }
1312
1313         local $::TODO = $reason{todo};
1314
1315         unless ($ok) {
1316             my $err_line = "PROG: $switch\n$prog\n" .
1317                            "EXPECTED:\n$expected\n";
1318             $err_line   .= "EXIT STATUS: != 0\n" if $fatal;
1319             $err_line   .= "GOT:\n$results\n";
1320             $err_line   .= "EXIT STATUS: " . ($status >> 8) . "\n" if $fatal;
1321             if ($::TODO) {
1322                 $err_line =~ s/^/# /mg;
1323                 print $err_line;  # Harness can't filter it out from STDERR.
1324             }
1325             else {
1326                 print STDERR $err_line;
1327             }
1328         }
1329
1330         if (defined $file) {
1331             _ok($ok, "at $file line $line", $name);
1332         } else {
1333             # We don't have file and line number data for the test, so report
1334             # errors as coming from our caller.
1335             local $Level = $Level + 1;
1336             ok($ok, $name);
1337         }
1338
1339         foreach (@temps) {
1340             unlink $_ if $_;
1341         }
1342         foreach (@temp_path) {
1343             File::Path::rmtree $_ if -d $_;
1344         }
1345     }
1346 }
1347
1348 sub can_ok ($@) {
1349     my($proto, @methods) = @_;
1350     my $class = ref $proto || $proto;
1351
1352     unless( @methods ) {
1353         return _ok( 0, _where(), "$class->can(...)" );
1354     }
1355
1356     my @nok = ();
1357     foreach my $method (@methods) {
1358         local($!, $@);  # don't interfere with caller's $@
1359                         # eval sometimes resets $!
1360         eval { $proto->can($method) } || push @nok, $method;
1361     }
1362
1363     my $name;
1364     $name = @methods == 1 ? "$class->can('$methods[0]')"
1365                           : "$class->can(...)";
1366
1367     _ok( !@nok, _where(), $name );
1368 }
1369
1370
1371 # Call $class->new( @$args ); and run the result through object_ok.
1372 # See Test::More::new_ok
1373 sub new_ok {
1374     my($class, $args, $obj_name) = @_;
1375     $args ||= [];
1376     $object_name = "The object" unless defined $obj_name;
1377
1378     local $Level = $Level + 1;
1379
1380     my $obj;
1381     my $ok = eval { $obj = $class->new(@$args); 1 };
1382     my $error = $@;
1383
1384     if($ok) {
1385         object_ok($obj, $class, $object_name);
1386     }
1387     else {
1388         ok( 0, "new() died" );
1389         diag("Error was:  $@");
1390     }
1391
1392     return $obj;
1393
1394 }
1395
1396
1397 sub isa_ok ($$;$) {
1398     my($object, $class, $obj_name) = @_;
1399
1400     my $diag;
1401     $obj_name = 'The object' unless defined $obj_name;
1402     my $name = "$obj_name isa $class";
1403     if( !defined $object ) {
1404         $diag = "$obj_name isn't defined";
1405     }
1406     else {
1407         my $whatami = ref $object ? 'object' : 'class';
1408
1409         # We can't use UNIVERSAL::isa because we want to honor isa() overrides
1410         local($@, $!);  # eval sometimes resets $!
1411         my $rslt = eval { $object->isa($class) };
1412         my $error = $@;  # in case something else blows away $@
1413
1414         if( $error ) {
1415             if( $error =~ /^Can't call method "isa" on unblessed reference/ ) {
1416                 # It's an unblessed reference
1417                 $obj_name = 'The reference' unless defined $obj_name;
1418                 if( !UNIVERSAL::isa($object, $class) ) {
1419                     my $ref = ref $object;
1420                     $diag = "$obj_name isn't a '$class' it's a '$ref'";
1421                 }
1422             }
1423             elsif( $error =~ /Can't call method "isa" without a package/ ) {
1424                 # It's something that can't even be a class
1425                 $obj_name = 'The thing' unless defined $obj_name;
1426                 $diag = "$obj_name isn't a class or reference";
1427             }
1428             else {
1429                 die <<WHOA;
1430 WHOA! I tried to call ->isa on your object and got some weird error.
1431 This should never happen.  Please contact the author immediately.
1432 Here's the error.
1433 $@
1434 WHOA
1435             }
1436         }
1437         elsif( !$rslt ) {
1438             $obj_name = "The $whatami" unless defined $obj_name;
1439             my $ref = ref $object;
1440             $diag = "$obj_name isn't a '$class' it's a '$ref'";
1441         }
1442     }
1443
1444     _ok( !$diag, _where(), $name );
1445 }
1446
1447
1448 sub class_ok {
1449     my($class, $isa, $class_name) = @_;
1450
1451     # Written so as to count as one test
1452     local $Level = $Level + 1;
1453     if( ref $class ) {
1454         ok( 0, "$class is a reference, not a class name" );
1455     }
1456     else {
1457         isa_ok($class, $isa, $class_name);
1458     }
1459 }
1460
1461
1462 sub object_ok {
1463     my($obj, $isa, $obj_name) = @_;
1464
1465     local $Level = $Level + 1;
1466     if( !ref $obj ) {
1467         ok( 0, "$obj is not a reference" );
1468     }
1469     else {
1470         isa_ok($obj, $isa, $obj_name);
1471     }
1472 }
1473
1474
1475 # Purposefully avoiding a closure.
1476 sub __capture {
1477     push @::__capture, join "", @_;
1478 }
1479     
1480 sub capture_warnings {
1481     my $code = shift;
1482
1483     local @::__capture;
1484     local $SIG {__WARN__} = \&__capture;
1485     &$code;
1486     return @::__capture;
1487 }
1488
1489 # This will generate a variable number of tests.
1490 # Use done_testing() instead of a fixed plan.
1491 sub warnings_like {
1492     my ($code, $expect, $name) = @_;
1493     local $Level = $Level + 1;
1494
1495     my @w = capture_warnings($code);
1496
1497     cmp_ok(scalar @w, '==', scalar @$expect, $name);
1498     foreach my $e (@$expect) {
1499         if (ref $e) {
1500             like(shift @w, $e, $name);
1501         } else {
1502             is(shift @w, $e, $name);
1503         }
1504     }
1505     if (@w) {
1506         diag("Saw these additional warnings:");
1507         diag($_) foreach @w;
1508     }
1509 }
1510
1511 sub _fail_excess_warnings {
1512     my($expect, $got, $name) = @_;
1513     local $Level = $Level + 1;
1514     # This will fail, and produce diagnostics
1515     is($expect, scalar @$got, $name);
1516     diag("Saw these warnings:");
1517     diag($_) foreach @$got;
1518 }
1519
1520 sub warning_is {
1521     my ($code, $expect, $name) = @_;
1522     die sprintf "Expect must be a string or undef, not a %s reference", ref $expect
1523         if ref $expect;
1524     local $Level = $Level + 1;
1525     my @w = capture_warnings($code);
1526     if (@w > 1) {
1527         _fail_excess_warnings(0 + defined $expect, \@w, $name);
1528     } else {
1529         is($w[0], $expect, $name);
1530     }
1531 }
1532
1533 sub warning_like {
1534     my ($code, $expect, $name) = @_;
1535     die sprintf "Expect must be a regexp object"
1536         unless ref $expect eq 'Regexp';
1537     local $Level = $Level + 1;
1538     my @w = capture_warnings($code);
1539     if (@w > 1) {
1540         _fail_excess_warnings(0 + defined $expect, \@w, $name);
1541     } else {
1542         like($w[0], $expect, $name);
1543     }
1544 }
1545
1546 # Set a watchdog to timeout the entire test file
1547 # NOTE:  If the test file uses 'threads', then call the watchdog() function
1548 #        _AFTER_ the 'threads' module is loaded.
1549 sub watchdog ($;$)
1550 {
1551     my $timeout = shift;
1552     my $method  = shift || "";
1553     my $timeout_msg = 'Test process timed out - terminating';
1554
1555     # Valgrind slows perl way down so give it more time before dying.
1556     $timeout *= 10 if $ENV{PERL_VALGRIND};
1557
1558     my $pid_to_kill = $$;   # PID for this process
1559
1560     if ($method eq "alarm") {
1561         goto WATCHDOG_VIA_ALARM;
1562     }
1563
1564     # shut up use only once warning
1565     my $threads_on = $threads::threads && $threads::threads;
1566
1567     # Don't use a watchdog process if 'threads' is loaded -
1568     #   use a watchdog thread instead
1569     if (!$threads_on || $method eq "process") {
1570
1571         # On Windows and VMS, try launching a watchdog process
1572         #   using system(1, ...) (see perlport.pod)
1573         if ($is_mswin || $is_vms) {
1574             # On Windows, try to get the 'real' PID
1575             if ($is_mswin) {
1576                 eval { require Win32; };
1577                 if (defined(&Win32::GetCurrentProcessId)) {
1578                     $pid_to_kill = Win32::GetCurrentProcessId();
1579                 }
1580             }
1581
1582             # If we still have a fake PID, we can't use this method at all
1583             return if ($pid_to_kill <= 0);
1584
1585             # Launch watchdog process
1586             my $watchdog;
1587             eval {
1588                 local $SIG{'__WARN__'} = sub {
1589                     _diag("Watchdog warning: $_[0]");
1590                 };
1591                 my $sig = $is_vms ? 'TERM' : 'KILL';
1592                 my $prog = "sleep($timeout);" .
1593                            "warn qq/# $timeout_msg" . '\n/;' .
1594                            "kill(q/$sig/, $pid_to_kill);";
1595
1596                 # On Windows use the indirect object plus LIST form to guarantee
1597                 # that perl is launched directly rather than via the shell (see
1598                 # perlfunc.pod), and ensure that the LIST has multiple elements
1599                 # since the indirect object plus COMMANDSTRING form seems to
1600                 # hang (see perl #121283). Don't do this on VMS, which doesn't
1601                 # support the LIST form at all.
1602                 if ($is_mswin) {
1603                     my $runperl = which_perl();
1604                     if ($runperl =~ m/\s/) {
1605                         $runperl = qq{"$runperl"};
1606                     }
1607                     $watchdog = system({ $runperl } 1, $runperl, '-e', $prog);
1608                 }
1609                 else {
1610                     my $cmd = _create_runperl(prog => $prog);
1611                     $watchdog = system(1, $cmd);
1612                 }
1613             };
1614             if ($@ || ($watchdog <= 0)) {
1615                 _diag('Failed to start watchdog');
1616                 _diag($@) if $@;
1617                 undef($watchdog);
1618                 return;
1619             }
1620
1621             # Add END block to parent to terminate and
1622             #   clean up watchdog process
1623             eval("END { local \$! = 0; local \$? = 0;
1624                         wait() if kill('KILL', $watchdog); };");
1625             return;
1626         }
1627
1628         # Try using fork() to generate a watchdog process
1629         my $watchdog;
1630         eval { $watchdog = fork() };
1631         if (defined($watchdog)) {
1632             if ($watchdog) {   # Parent process
1633                 # Add END block to parent to terminate and
1634                 #   clean up watchdog process
1635                 eval "END { local \$! = 0; local \$? = 0;
1636                             wait() if kill('KILL', $watchdog); };";
1637                 return;
1638             }
1639
1640             ### Watchdog process code
1641
1642             # Load POSIX if available
1643             eval { require POSIX; };
1644
1645             # Execute the timeout
1646             sleep($timeout - 2) if ($timeout > 2);   # Workaround for perlbug #49073
1647             sleep(2);
1648
1649             # Kill test process if still running
1650             if (kill(0, $pid_to_kill)) {
1651                 _diag($timeout_msg);
1652                 kill('KILL', $pid_to_kill);
1653                 if ($is_cygwin) {
1654                     # sometimes the above isn't enough on cygwin
1655                     sleep 1; # wait a little, it might have worked after all
1656                     system("/bin/kill -f $pid_to_kill");
1657                 }
1658             }
1659
1660             # Don't execute END block (added at beginning of this file)
1661             $NO_ENDING = 1;
1662
1663             # Terminate ourself (i.e., the watchdog)
1664             POSIX::_exit(1) if (defined(&POSIX::_exit));
1665             exit(1);
1666         }
1667
1668         # fork() failed - fall through and try using a thread
1669     }
1670
1671     # Use a watchdog thread because either 'threads' is loaded,
1672     #   or fork() failed
1673     if (eval {require threads; 1}) {
1674         'threads'->create(sub {
1675                 # Load POSIX if available
1676                 eval { require POSIX; };
1677
1678                 # Execute the timeout
1679                 my $time_left = $timeout;
1680                 do {
1681                     $time_left = $time_left - sleep($time_left);
1682                 } while ($time_left > 0);
1683
1684                 # Kill the parent (and ourself)
1685                 select(STDERR); $| = 1;
1686                 _diag($timeout_msg);
1687                 POSIX::_exit(1) if (defined(&POSIX::_exit));
1688                 my $sig = $is_vms ? 'TERM' : 'KILL';
1689                 kill($sig, $pid_to_kill);
1690             })->detach();
1691         return;
1692     }
1693
1694     # If everything above fails, then just use an alarm timeout
1695 WATCHDOG_VIA_ALARM:
1696     if (eval { alarm($timeout); 1; }) {
1697         # Load POSIX if available
1698         eval { require POSIX; };
1699
1700         # Alarm handler will do the actual 'killing'
1701         $SIG{'ALRM'} = sub {
1702             select(STDERR); $| = 1;
1703             _diag($timeout_msg);
1704             POSIX::_exit(1) if (defined(&POSIX::_exit));
1705             my $sig = $is_vms ? 'TERM' : 'KILL';
1706             kill($sig, $pid_to_kill);
1707         };
1708     }
1709 }
1710
1711 1;