1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
use strict;
use warnings;
use Test::More;
use File::Spec;
use File::Temp qw( tempdir );
use Cwd qw( cwd abs_path );
use System::Command;
$ENV{TO_BE_DELETED} = 'LATER';
my $dir = abs_path( tempdir( CLEANUP => 1 ) );
my $cwd = cwd;
my $name = File::Spec->catfile( t => 'info.pl' );
my @tests = (
{ cmdline => [ $^X, $name ],
options => {},
},
{ cmdline => [
$^X, $name, { env => { SYSTEM_COMMAND => 'System::Command' } }
],
options => { env => { SYSTEM_COMMAND => 'System::Command' } },
},
{ cmdline => [
$^X, $name,
{ env => { SYSTEM_COMMAND => 'System::Command' } },
{ },
],
options => {
env => { SYSTEM_COMMAND => 'System::Command' },
},
},
{ cmdline => [
$^X,
File::Spec->catfile( $cwd => $name ),
{ cwd => $dir, name => 'powie' },
{ env => { SYSTEM_COMMAND => 'System::Command' } },
],
cwd => $dir,
name => File::Spec->catfile( $cwd => $name ),
options => {
name => 'powie',
env => { SYSTEM_COMMAND => 'System::Command' },
cwd => $dir,
},
},
{ cmdline => [
$^X, $name,
{ env => { SYSTEM_COMMAND => 'System::Command' } },
{ env => { TO_BE_DELETED => undef } },
{ env => { OTHER_ENV => 'something else' } },
],
options => {
env => {
OTHER_ENV => 'something else',
SYSTEM_COMMAND => 'System::Command',
TO_BE_DELETED => undef,
}
},
},
{ cmdline => [
$^X,
$name,
{ env => { 'SYSTEM_COMMAND_INPUT' => 1 }, input => 'test input' }
],
options =>
{ env => { 'SYSTEM_COMMAND_INPUT' => 1 }, input => 'test input' }
},
{ cmdline => [
$^X, $name,
{ env =>
{ 'SYSTEM_COMMAND_INPUT' => 1, 'TO_BE_DELETED' => undef },
input => ''
}
],
options => {
env => { 'SYSTEM_COMMAND_INPUT' => 1, 'TO_BE_DELETED' => undef },
input => ''
}
},
);
my @fail = (
{ cmdline =>
[ $^X, $name, { cwd => File::Spec->catdir( $dir, 'nothere' ) } ],
cwd => File::Spec->catdir( $dir, 'nothere' ),
fail => qr/^Can't chdir to /,
options => {},
},
);
plan tests => 14 * @tests + 2 * @fail;
for my $t ( @tests, @fail ) {
# run the command
my $cmd = eval { System::Command->new( @{ $t->{cmdline} } ) };
if ( $t->{fail} ) {
ok( !$cmd, 'command failed' );
like( $@, $t->{fail}, '... expected error message' );
next;
}
isa_ok( $cmd, 'System::Command' );
# test the handles
for my $handle (qw( stdin stdout stderr )) {
isa_ok( $cmd->$handle, 'GLOB' );
if ( $handle eq 'stdin' ) {
my $opened = !exists $t->{options}{input};
is( $cmd->$handle->opened, $opened,
"$handle @{[ !$opened && 'not ']}opened" );
}
else {
ok( $cmd->$handle->opened, "$handle opened" );
}
}
is_deeply( [ $cmd->cmdline ],
[ grep { !ref } @{ $t->{cmdline} } ], 'cmdline' );
is_deeply( $cmd->options, $t->{options}, 'options' );
# get the output
my $output = join '', $cmd->stdout->getlines();
my $errput = join '', $cmd->stderr->getlines();
is( $errput, '', 'no errput' );
my $env = { %ENV, %{ $t->{options}{env} || {} } };
delete $env->{$_}
for grep { !defined $t->{options}{env}{$_} }
keys %{ $t->{options}{env} || {} };
my $info;
eval $output;
is_deeply(
$info,
{ argv => [],
cwd => $t->{options}{cwd} || $cwd,
env => $env,
input => $t->{options}{input} || '',
name => $t->{name} || $name,
pid => $cmd->pid,
},
"perl $name"
);
# close and check
$cmd->close();
is( $cmd->exit, 0, 'exit 0' );
is( $cmd->signal, 0, 'no signal received' );
is( $cmd->core, $t->{core} || 0, 'no core dumped' );
}
|