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