2 # This is a testing framework.
4 # Copyright (C) 1998, 2000-2002, 2004-2012 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 use vars
qw($VERSION @ISA @EXPORT);
23 use File::Compare qw(compare);
26 ($VERSION = '$Revision: 1.5 $ ') =~ tr/[0-9].//cd;
27 @EXPORT = qw
(run_tests triple_test getlimits
);
29 my $debug = $ENV{DEBUG
};
31 my @Types = qw
(IN IN_PIPE OUT ERR AUX CMP EXIT PRE POST OUT_SUBST
32 ERR_SUBST ENV ENV_DEL
);
33 my %Types = map {$_ => 1} @Types;
34 my %Zero_one_type = map {$_ => 1}
35 qw
(OUT ERR EXIT PRE POST OUT_SUBST ERR_SUBST ENV
);
36 my $srcdir = $ENV{srcdir
};
39 # When running in a DJGPP environment, make $ENV{SHELL} point to bash.
40 # Otherwise, a bad shell might be used (e.g. command.com) and many
43 and $ENV{SHELL
} = "$ENV{DJDIR}/bin/bash.exe";
45 # A file spec: a scalar or a reference to a single-keyed hash
47 # 'contents' contents only (file name is derived from test name)
48 # {filename => 'contents'} filename and contents
49 # {filename => undef} filename only -- $(srcdir)/filename must exist
51 # FIXME: If there is more than one input file, then you can't specify 'REDIR'.
54 # I/O spec: a hash ref with the following properties
56 # - one key/value pair
57 # - the key must be one of these strings: IN, OUT, ERR, AUX, CMP, EXIT
58 # - the value must be a file spec
59 # {OUT => 'data'} put data in a temp file and compare it to stdout from cmd
60 # {OUT => {'filename'=>undef}} compare contents of existing filename to
62 # {OUT => {'filename'=>[$CTOR, $DTOR]}} $CTOR and $DTOR are references to
63 # functions, each which is passed the single argument 'filename'.
64 # $CTOR must create `filename'.
65 # DTOR may be omitted in which case 'sub{unlink @_[0]}' is used.
66 # FIXME: implement this
68 # Same as for OUT, but compare with stderr, not stdout.
69 # {OUT_SUBST => 's/variable_output/expected_output/'}
70 # Transform actual standard output before comparing it against expected.
71 # This is useful e.g. for programs like du that produce output that
72 # varies a lot from system. E.g., an empty file may consume zero file
73 # blocks, or more, depending on the OS and on the file system type.
74 # {ERR_SUBST => 's/variable_output/expected_output/'}
75 # Transform actual stderr output before comparing it against expected.
76 # This is useful when verifying that we get a meaningful diagnostic.
77 # For example, in rm/fail-2eperm, we have to account for three different
78 # diagnostics: Operation not permitted, Not owner, and Permission denied.
79 # {EXIT => N} expect exit status of cmd to be N
80 # {ENV => 'VAR=val ...'}
81 # Prepend 'VAR=val ...' to the command that we execute via `system'.
83 # Remove VAR from the environment just before running the corresponding
84 # command, and restore any value just afterwards.
86 # There may be many input file specs. File names from the input specs
87 # are concatenated in order on the command line.
88 # There may be at most one of the OUT-, ERR-, and EXIT-keyed specs.
89 # If the OUT-(or ERR)-keyed hash ref is omitted, then expect no output
90 # on stdout (or stderr).
91 # If the EXIT-keyed one is omitted, then expect the exit status to be zero.
93 # FIXME: Make sure that no junkfile is also listed as a
94 # non-junkfile (i.e. with undef for contents)
99 $string =~ s/\'/\'\\\'\'/g;
103 sub _create_file
($$$$)
105 my ($program_name, $test_name, $file_name, $data) = @_;
107 if (defined $file_name)
113 $file = "$test_name.$Global_count";
117 warn "creating file `$file' with contents `$data'\n" if $debug;
119 # The test spec gave a string.
120 # Write it to a temp file and return tempfile name.
121 my $fh = new FileHandle
"> $file";
122 die "$program_name: $file: $!\n" if ! $fh;
124 $fh->close || die "$program_name: $file: $!\n";
129 sub _compare_files
($$$$$)
131 my ($program_name, $test_name, $in_or_out, $actual, $expected) = @_;
133 my $differ = compare
($expected, $actual);
136 my $info = (defined $in_or_out ?
"std$in_or_out " : '');
137 warn "$program_name: test $test_name: ${info}mismatch, comparing "
138 . "$actual (actual) and $expected (expected)\n";
139 # Ignore any failure, discard stderr.
140 system "diff -c $actual $expected 2>/dev/null";
146 sub _process_file_spec
($$$$$)
148 my ($program_name, $test_name, $file_spec, $type, $junk_files) = @_;
150 my ($file_name, $contents);
153 ($file_name, $contents) = (undef, $file_spec);
155 elsif (ref $file_spec eq 'HASH')
157 my $n = keys %$file_spec;
158 die "$program_name: $test_name: $type spec has $n elements --"
161 ($file_name, $contents) = each %$file_spec;
163 # This happens for the AUX hash in an io_spec like this:
164 # {CMP=> ['zy123utsrqponmlkji', {'@AUX@'=> undef}]},
166 or return $file_name;
170 die "$program_name: $test_name: invalid RHS in $type-spec\n"
173 my $is_junk_file = (! defined $file_name
174 || (($type eq 'IN' || $type eq 'AUX' || $type eq 'CMP')
175 && defined $contents));
176 my $file = _create_file
($program_name, $test_name,
177 $file_name, $contents);
181 push @
$junk_files, $file
185 # FIXME: put $srcdir in here somewhere
186 warn "$program_name: $test_name: specified file `$file' does"
188 if ! -f
"$srcdir/$file";
197 foreach my $eo (qw
(AUX OUT ERR
))
202 and $s =~ s/\@$eo\@/$f/g;
210 open $NV, "getlimits |" or die "Error running getlimits\n";
211 my %limits = map {split /=|\n/} <$NV>;
215 # FIXME: cleanup on interrupt
216 # FIXME: extract 'do_1_test' function
218 # FIXME: having to include $program_name here is an expedient kludge.
219 # Library code doesn't 'die'.
220 sub run_tests
($$$$$)
222 my ($program_name, $prog, $t_spec, $save_temps, $verbose) = @_;
224 # To indicate that $prog is a shell built-in, you'd make it a string 'ref'.
225 # E.g., call run_tests ($prog, \$prog, \@Tests, $save_temps, $verbose);
226 # If it's a ref, invoke it via "env":
227 my @prog = ref $prog ?
(qw(env --), $$prog) : $prog;
229 # Warn about empty t_spec.
232 # Remove all temp files upon interrupt.
235 # Verify that test names are distinct.
236 my $bad_test_name = 0;
240 foreach $t (@
$t_spec)
242 my $test_name = $t->[0];
243 if ($seen{$test_name})
245 warn "$program_name: $test_name: duplicate test name\n";
248 $seen{$test_name} = 1;
252 my $t8 = lc substr $test_name, 0, 8;
253 if ($seen_8dot3{$t8})
255 warn "$program_name: 8.3 test name conflict: "
256 . "$test_name, $seen_8dot3{$t8}\n";
259 $seen_8dot3{$t8} = $test_name;
262 # The test name may be no longer than 30 bytes.
263 # Yes, this is an arbitrary limit. If it causes trouble,
264 # consider removing it.
266 if ($max < length $test_name)
268 warn "$program_name: $test_name: test name is too long (> $max)\n";
272 return 1 if $bad_test_name;
274 # FIXME check exit status
275 system (@prog, '--version') if $verbose;
279 foreach my $tt (@
$t_spec)
284 my $test_name = shift @
$t;
288 # FIXME: maybe don't reset this.
296 foreach $io_spec (@
$t)
300 push @args, $io_spec;
304 if (ref $io_spec ne 'HASH')
306 eval 'use Data::Dumper';
307 die "$program_name: $test_name: invalid entry in test spec; "
308 . "expected HASH-ref,\nbut got this:\n"
309 . Data
::Dumper
->Dump ([\
$io_spec], ['$io_spec']) . "\n";
312 my $n = keys %$io_spec;
313 die "$program_name: $test_name: spec has $n elements --"
316 my ($type, $val) = each %$io_spec;
317 die "$program_name: $test_name: invalid key `$type' in test spec\n"
320 # Make sure there's no more than one of OUT, ERR, EXIT, etc.
321 die "$program_name: $test_name: more than one $type spec\n"
322 if $Zero_one_type{$type} and $seen_type{$type}++;
324 if ($type eq 'PRE' or $type eq 'POST')
326 $expect->{$type} = $val;
334 or die "$program_name: $test_name: invalid CMP spec\n";
336 or die "$program_name: $test_name: invalid CMP list; must have"
337 . " exactly 2 elements\n";
339 foreach my $e (@
$val)
343 and die "$program_name: $test_name: invalid element ($r)"
344 . " in CMP list; only scalars and hash references "
346 if ($r && $r eq 'HASH')
350 or die "$program_name: $test_name: CMP spec has $n "
351 . "elements -- expected 1\n";
353 # Replace any `@AUX@' in the key of %$e.
354 my ($ff, $val) = each %$e;
355 my $new_ff = _at_replace
$expect, $ff;
358 $e->{$new_ff} = $val;
362 my $cmp_file = _process_file_spec
($program_name, $test_name,
363 $e, $type, \
@junk_files);
364 push @cmp_files, $cmp_file;
366 push @post_compare, [@cmp_files];
368 $expect->{$type} = $val;
374 die "$program_name: $test_name: invalid EXIT code\n"
376 # FIXME: make sure $data is numeric
377 $expect->{EXIT
} = $val;
381 if ($type =~ /^(OUT|ERR)_SUBST$/)
383 $expect->{RESULT_SUBST
} ||= {};
384 $expect->{RESULT_SUBST
}->{$1} = $val;
390 $env_prefix = "$val ";
394 if ($type eq 'ENV_DEL')
396 push @env_delete, $val;
400 my $file = _process_file_spec
($program_name, $test_name, $val,
401 $type, \
@junk_files);
403 if ($type eq 'IN' || $type eq 'IN_PIPE')
405 my $quoted_file = _shell_quote
$file;
406 if ($type eq 'IN_PIPE')
408 defined $input_pipe_cmd
409 and die "$program_name: $test_name: only one input"
410 . " may be specified with IN_PIPE\n";
411 $input_pipe_cmd = "cat $quoted_file |";
415 push @args, $quoted_file;
418 elsif ($type eq 'AUX' || $type eq 'OUT' || $type eq 'ERR')
420 $expect->{$type} = $file;
424 die "$program_name: $test_name: invalid type: $type\n"
428 # Expect an exit status of zero if it's not specified.
429 $expect->{EXIT
} ||= 0;
431 # Allow ERR to be omitted -- in that case, expect no error output.
432 foreach my $eo (qw
(OUT ERR
))
434 if (!exists $expect->{$eo})
436 $expect->{$eo} = _create_file
($program_name, $test_name,
438 push @junk_files, $expect->{$eo};
442 # FIXME: Does it ever make sense to specify a filename *and* contents
443 # in OUT or ERR spec?
445 # FIXME: this is really suboptimal...
447 foreach my $a (@args)
449 $a = _at_replace
$expect, $a;
454 warn "$test_name...\n" if $verbose;
455 &{$expect->{PRE
}} if $expect->{PRE
};
457 $actual{OUT
} = "$test_name.O";
458 $actual{ERR
} = "$test_name.E";
459 push @junk_files, $actual{OUT
}, $actual{ERR
};
460 my @cmd = (@prog, @args, "> $actual{OUT}", "2> $actual{ERR}");
462 and unshift @cmd, $env_prefix;
463 defined $input_pipe_cmd
464 and unshift @cmd, $input_pipe_cmd;
465 my $cmd_str = join (' ', @cmd);
467 # Delete from the environment any symbols specified by syntax
468 # like this: {ENV_DEL => 'TZ'}.
470 foreach my $env_sym (@env_delete)
472 my $val = delete $ENV{$env_sym};
474 and $pushed_env{$env_sym} = $val;
477 warn "Running command: `$cmd_str'\n" if $debug;
478 my $rc = 0xffff & system $cmd_str;
480 # Restore any environment setting we changed via a deletion.
481 foreach my $env_sym (keys %pushed_env)
483 $ENV{$env_sym} = $pushed_env{$env_sym};
488 warn "$program_name: test $test_name failed: command failed:\n"
489 . " `$cmd_str': $!\n";
493 $rc >>= 8 if $rc > 0x80;
494 if ($expect->{EXIT
} != $rc)
496 warn "$program_name: test $test_name failed: exit status mismatch:"
497 . " expected $expect->{EXIT}, got $rc\n";
503 # Record actual stdout and stderr contents, if POST may need them.
506 foreach my $eo (qw
(OUT ERR
))
508 my $out_file = $actual{$eo};
511 "$program_name: cannot open $out_file for reading: $!\n"),
513 $actual_data{$eo} = <IN
>;
515 or (warn "$program_name: failed to read $out_file: $!\n"),
520 foreach my $eo (qw
(OUT ERR
))
522 my $subst_expr = $expect->{RESULT_SUBST
}->{$eo};
523 if (defined $subst_expr)
525 my $out = $actual{$eo};
526 my $orig = "$out.orig";
528 # Move $out aside (to $orig), then recreate $out
529 # by transforming each line of $orig via $subst_expr.
531 or (warn "$program_name: cannot rename $out to $orig: $!\n"),
534 or (warn "$program_name: cannot open $orig for reading: $!\n"),
535 $fail = 1, (unlink $orig), next;
537 or (warn "$program_name: cannot unlink $orig: $!\n"),
540 or (warn "$program_name: cannot open $out for writing: $!\n"),
542 while (defined (my $line = <IN
>))
544 eval "\$_ = \$line; $subst_expr; \$line = \$_";
549 or (warn "$program_name: failed to write $out: $!\n"),
553 my $eo_lower = lc $eo;
554 _compare_files
($program_name, $test_name, $eo_lower,
555 $actual{$eo}, $expect->{$eo})
559 foreach my $pair (@post_compare)
561 my ($expected, $actual) = @
$pair;
562 _compare_files
$program_name, $test_name, undef, $actual, $expected
568 and &{$expect->{POST
}} ($actual_data{OUT
}, $actual_data{ERR
});
572 # FIXME: maybe unlink files inside the big foreach loop?
573 unlink @junk_files if ! $save_temps;
578 # For each test in @$TESTS, generate two additional tests,
579 # one using stdin, the other using a pipe. I.e., given this one
580 # ['idem-0', {IN=>''}, {OUT=>''}],
582 # ['idem-0.r', '<', {IN=>''}, {OUT=>''}],
583 # ['idem-0.p', {IN_PIPE=>''}, {OUT=>''}],
584 # Generate new tests only if there is exactly one input spec.
585 # The returned list of tests contains each input test, followed
586 # by zero or two derived tests.
591 foreach my $t (@
$tests)
601 and push (@args, $e), next;
603 ref $e && ref $e eq 'HASH'
604 or (warn "$0: $t->[0]: unexpected entry type\n"), next;
606 and (push @in, $e->{IN
}), next;
607 push @list_of_hash, $e;
609 # Add variants IFF there is exactly one input file.
612 shift @args; # discard test name
613 push @new, ["$t->[0].r", @args, '<', {IN
=> $in[0]}, @list_of_hash];
614 push @new, ["$t->[0].p", @args, {IN_PIPE
=> $in[0]}, @list_of_hash];