# Copyright 1999-2001 Steven Knight. All rights reserved. This program # is free software; you can redistribute it and/or modify it under the # same terms as Perl itself. ######################### We start with some black magic to print on failure. use Test; BEGIN { $| = 1; plan tests => 35, onfail => sub { $? = 1 if $ENV{AEGIS_TEST} } } END {print "not ok 1\n" unless $loaded;} use Test::Cmd; $loaded = 1; ok(1); ######################### End of black magic. $here = Test::Cmd->here(); my @I_FLAGS = map(Test::Cmd->file_name_is_absolute($_) ? "-I$_" : "-I".Test::Cmd->catfile($here, $_), @INC); sub contents { my $file = shift; if (! open(FILE, $file)) { return undef; } my $string = join('', ); if (! close(FILE)) { return undef; } return $string; } my($run_env, $ret, $test, $string); $run_env = Test::Cmd->new(workdir => ''); ok($run_env); $ret = $run_env->write('run', <workdir; ok($wdir); $ret = chdir($wdir); ok($ret); # Everything before this was merely preparation of our "source # directory." Now we do some real tests. $ret = open(PERL, "|$^X -w @I_FLAGS >stdout.1 2>stderr.1"); ok($ret); $ret = print PERL <<'EOF'; use Test::Cmd; $test = Test::Cmd->new(prog => 'run', interpreter => "$^X", workdir => ''); $test->run(); Test::Cmd->no_result($? == 0); EOF ok($ret); $ret = close(PERL); ok(! $ret); ok(($? >> 8) == 2); $string = contents("stdout.1"); ok($string eq ""); $string = contents("stderr.1"); ok($string eq "NO RESULT for test at line 4 of -.\n"); # $ret = open(PERL, "|$^X -w @I_FLAGS >stdout.2 2>stderr.2"); ok($ret); $ret = print PERL <<'EOF'; use Test::Cmd; $test = Test::Cmd->new(prog => 'run', interpreter => "$^X", workdir => ''); $test->run(); $test->no_result($? == 0); EOF ok($ret); $ret = close(PERL); ok(! $ret); ok(($? >> 8) == 2); $string = contents("stdout.2"); ok($string eq ""); $string = contents("stderr.2"); ok($string eq "NO RESULT for test of run\n\tat line 4 of -.\n"); # $ret = open(PERL, "|$^X -w @I_FLAGS >stdout.3 2>stderr.3"); ok($ret); $ret = print PERL <<'EOF'; use Test::Cmd; $test = Test::Cmd->new(prog => 'run', interpreter => "$^X", string => 'xyzzy', workdir => ''); $test->run(); $test->no_result($? == 0); EOF ok($ret); $ret = close(PERL); ok(! $ret); ok(($? >> 8) == 2); $string = contents("stdout.3"); ok($string eq ""); $string = contents("stderr.3"); ok($string eq "NO RESULT for test of run [xyzzy]\n\tat line 4 of -.\n"); # $ret = open(PERL, "|$^X -w @I_FLAGS >stdout.4 2>stderr.4"); ok($ret); $ret = print PERL <<'EOF'; use Test::Cmd; $test = Test::Cmd->new(prog => 'run', interpreter => "$^X", workdir => ''); $test->run(); $test->no_result($? == 0 => sub {print STDERR "Printed on no result.\n"}); EOF ok($ret); $ret = close(PERL); ok(! $ret); ok(($? >> 8) == 2); $string = contents("stdout.4"); ok($string eq ""); $string = contents("stderr.4"); ok($string eq "Printed on no result.\nNO RESULT for test of run\n\tat line 4 of -.\n"); # $ret = open(PERL, "|$^X -w @I_FLAGS >stdout.5 2>stderr.5"); ok($ret); $ret = print PERL <<'EOF'; use Test::Cmd; sub test_it { my $self = shift; $self->run(); $self->no_result($? == 0 => undef, 1); } $test = Test::Cmd->new(prog => 'run', interpreter => "$^X", workdir => ''); &test_it($test); EOF ok($ret); $ret = close(PERL); ok(! $ret); ok(($? >> 8) == 2); $string = contents("stdout.5"); ok($string eq ""); $string = contents("stderr.5"); ok($string eq "NO RESULT for test of run\n\tat line 5 of - (main::test_it)\n\tfrom line 8 of -.\n");