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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
#!./perl -w
use Config;
BEGIN {
if (!$Config{'d_fork'}
# open2/3 supported on win32
&& $^O ne 'MSWin32')
{
print "1..0\n";
exit 0;
}
# make warnings fatal
$SIG{__WARN__} = sub { die @_ };
}
use strict;
use Test::More tests => 53;
use IO::Handle;
use IPC::Open3;
use POSIX ":sys_wait_h";
my $perl = $^X;
sub cmd_line {
if ($^O eq 'MSWin32') {
my $cmd = shift;
$cmd =~ tr/\r\n//d;
$cmd =~ s/"/\\"/g;
return qq/"$cmd"/;
}
else {
return $_[0];
}
}
my ($pid, $reaped_pid);
STDOUT->autoflush;
STDERR->autoflush;
# basic
$pid = open3 'WRITE', 'READ', 'ERROR', $perl, '-e', cmd_line(<<'EOF');
$| = 1;
print scalar <STDIN>;
print STDERR "hi error\n";
EOF
cmp_ok($pid, '!=', 0);
isnt((print WRITE "hi kid\n"), 0);
like(scalar <READ>, qr/^hi kid\r?\n$/);
like(scalar <ERROR>, qr/^hi error\r?\n$/);
is(close(WRITE), 1) or diag($!);
is(close(READ), 1) or diag($!);
is(close(ERROR), 1) or diag($!);
$reaped_pid = waitpid $pid, 0;
is($reaped_pid, $pid);
is($?, 0);
my $desc = "read and error together, both named";
$pid = open3 'WRITE', 'READ', 'READ', $perl, '-e', cmd_line(<<'EOF');
$| = 1;
print scalar <STDIN>;
print STDERR scalar <STDIN>;
EOF
print WRITE "$desc\n";
like(scalar <READ>, qr/\A$desc\r?\n\z/);
print WRITE "$desc [again]\n";
like(scalar <READ>, qr/\A$desc \[again\]\r?\n\z/);
waitpid $pid, 0;
$desc = "read and error together, error empty";
$pid = open3 'WRITE', 'READ', '', $perl, '-e', cmd_line(<<'EOF');
$| = 1;
print scalar <STDIN>;
print STDERR scalar <STDIN>;
EOF
print WRITE "$desc\n";
like(scalar <READ>, qr/\A$desc\r?\n\z/);
print WRITE "$desc [again]\n";
like(scalar <READ>, qr/\A$desc \[again\]\r?\n\z/);
waitpid $pid, 0;
is(pipe(PIPE_READ, PIPE_WRITE), 1);
$pid = open3 '<&PIPE_READ', 'READ', '',
$perl, '-e', cmd_line('print scalar <STDIN>');
close PIPE_READ;
print PIPE_WRITE "dup writer\n";
close PIPE_WRITE;
like(scalar <READ>, qr/\Adup writer\r?\n\z/);
waitpid $pid, 0;
{
is(pipe(my $PIPE_READ, my $PIPE_WRITE), 1);
$pid = open3 ['&', $PIPE_READ], my $READ, '',
$perl, '-e', cmd_line('print scalar <STDIN>');
close $PIPE_READ;
print $PIPE_WRITE "lex dup writer\n";
close $PIPE_WRITE;
like(scalar <$READ>, qr/\Alex dup writer\r?\n\z/);
waitpid $pid, 0;
}
my $TB = Test::Builder->new();
my $test = $TB->current_test;
# dup reader
$pid = open3 'WRITE', '>&STDOUT', 'ERROR',
$perl, '-e', cmd_line('print scalar <STDIN>');
++$test;
print WRITE "ok $test\n";
waitpid $pid, 0;
{
$pid = open3 my $WRITE, ['&', *STDOUT], ['&', *STDERR],
$perl, '-e', cmd_line('print scalar <STDIN>');
++$test;
print $WRITE "ok $test\n";
waitpid $pid, 0;
}
{
package YAAH;
$pid = IPC::Open3::open3('QWACK_WAAK_WAAK', '>&STDOUT', 'ERROR',
$perl, '-e', main::cmd_line('print scalar <STDIN>'));
++$test;
no warnings 'once';
print QWACK_WAAK_WAAK "ok $test # filenames qualified to their package\n";
waitpid $pid, 0;
}
# dup error: This particular case, duping stderr onto the existing
# stdout but putting stdout somewhere else, is a good case because it
# used not to work.
$pid = open3 'WRITE', 'READ', '>&STDOUT',
$perl, '-e', cmd_line('print STDERR scalar <STDIN>');
++$test;
print WRITE "ok $test\n";
waitpid $pid, 0;
{
$pid = open3 my $WRITE, my $READ, ['&', \*STDOUT],
$perl, '-e', cmd_line('print STDERR scalar <STDIN>');
++$test;
print $WRITE "ok $test\n";
waitpid $pid, 0;
}
foreach my $spec (
['>&STDOUT', 'string'],
[['&', \*STDOUT], 'arrayref'],
) {
my ($dupout, $desc) = @$spec;
foreach ([$dupout, "both named ($desc)"],
['', "error empty ($desc)"],
) {
my ($err, $desc) = @$_;
$pid = open3 my $WRITE, $dupout, $err, $perl, '-e', cmd_line(<<'EOF');
$| = 1;
print STDOUT scalar <STDIN>;
print STDERR scalar <STDIN>;
EOF
printf $WRITE "ok %d # dup reader and error together, $desc\n", ++$test
for 0, 1;
waitpid $pid, 0;
}
}
# command line in single parameter variant of open3
# for understanding of Config{'sh'} test see exec description in camel book
my $cmd = 'print(scalar(<STDIN>))';
$cmd = $Config{'sh'} =~ /sh/ ? "'$cmd'" : cmd_line($cmd);
$pid = eval { open3 'WRITE', '>&STDOUT', 'ERROR', "$perl -e " . $cmd; };
if ($@) {
print "error $@\n";
++$test;
print WRITE "not ok $test\n";
}
else {
++$test;
print WRITE "ok $test\n";
waitpid $pid, 0;
}
$TB->current_test($test);
# RT 72016
{
local $::TODO = "$^O returns a pid and doesn't throw an exception"
if $^O eq 'MSWin32';
$pid = eval { open3 'WRITE', 'READ', 'ERROR', '/non/existent/program'; };
isnt($@, '',
'open3 of a non existent program fails with an exception in the parent')
or do {waitpid $pid, 0};
SKIP: {
skip 'open3 returned, our responsibility to reap', 1 unless $@;
is(waitpid(-1, WNOHANG), -1, 'failed exec child is reaped');
}
}
$pid = eval { open3 'WRITE', '', 'ERROR', '/non/existent/program'; };
like($@, qr/^open3: Modification of a read-only value attempted at /,
'open3 faults read-only parameters correctly') or do {waitpid $pid, 0};
package NoFetch;
my $fetchcount = 1;
sub TIESCALAR {
my $class = shift;
my $instance = shift || undef;
return bless \$instance => $class;
}
sub FETCH {
my $cmd; #dont let "@args = @DB::args;" in Carp::caller_info fire this die
#fetchcount may need to be increased to 2 if this code is being stepped with
#a perl debugger
if($fetchcount == 1 && (caller(1))[3] ne 'Carp::caller_info') {
#Carp croak reports the errors as being in IPC-Open3.t, so it is
#unacceptable for testing where the FETCH failure occured, we dont want
#it failing in a $foo = $_[0]; #later# system($foo), where the failure
#is supposed to be triggered in the inner most syscall, aka system()
my ($package, $filename, $line, $subroutine) = caller(2);
die("FETCH not allowed in ".((caller(1))[3])." in ".((caller(2))[3])."\n");
} else {
$fetchcount++;
return tie($cmd, 'NoFetch');
}
}
package main;
{
my $cmd;
tie($cmd, 'NoFetch');
$pid = eval { open3 'WRITE', 'READ', 'ERROR', $cmd; };
like($@, qr/^(?:open3: IO::Pipe: Can't spawn-NOWAIT: FETCH not allowed in \(eval\) (?x:
)in IPC::Open3::spawn_with_handles|FETCH not allowed in \(eval\) in IPC::Open3::_open3)/,
'dieing inside Tied arg propagates correctly') or do {waitpid $pid, 0};
}
foreach my $handle (qw (DUMMY STDIN STDOUT STDERR)) {
local $::{$handle};
my $out = IO::Handle->new();
my $pid = eval {
local $SIG{__WARN__} = sub {
open my $fh, '>', '/dev/tty';
return if "@_" =~ m!^Use of uninitialized value \$fd.*IO/Handle\.pm!;
print $fh "@_";
die @_
};
open3 undef, $out, undef, $perl, '-le', "print q _# ${handle}_"
};
is($@, '', "No errors with localised $handle");
cmp_ok($pid, '>', 0, "Got a pid with localised $handle");
if ($handle eq 'STDOUT') {
is(<$out>, undef, "Expected no output with localised $handle");
} else {
like(<$out>, qr/\A# $handle\r?\n\z/,
"Expected output with localised $handle");
}
waitpid $pid, 0;
}
# Test that tied STDIN, STDOUT, and STDERR do not cause open3 any discomfort.
# In particular, tied STDERR used to be able to prevent open3 from working
# correctly. RT #119843.
SKIP: {
if (&IPC::Open3::DO_SPAWN) {
skip "Calling open3 with tied filehandles does not work here", 6
}
{ # This just throws things out
package My::Tied::FH;
sub TIEHANDLE { bless \my $self }
sub PRINT {}
# Note the absence of OPEN and FILENO
}
my $message = "japh\n";
foreach my $handle (*STDIN, *STDOUT, *STDERR) {
tie $handle, 'My::Tied::FH';
my ($in, $out);
my $pid = eval {
open3 $in, $out, undef, $perl, '-ne', 'print';
};
is($@, '', "no errors calling open3 with tied $handle");
print $in $message;
close $in;
my $japh = <$out>;
waitpid $pid, 0;
is($japh, $message, "read input correctly");
untie $handle;
}
}
|