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
|
#!/usr/bin/perl
use strict;
use warnings;
use IO::Async::Test;
use Test::More;
use Test::Fatal;
use IO::Async::Loop;
use IO::Async::OS;
plan skip_all => "POSIX fork() is not available" unless IO::Async::OS->HAVE_POSIX_FORK;
my $loop = IO::Async::Loop->new_builtin;
testing_loop( $loop );
my $exitcode;
$loop->open_child(
code => sub { 0 },
on_finish => sub { ( undef, $exitcode ) = @_; },
);
undef $exitcode;
wait_for { defined $exitcode };
ok( ($exitcode & 0x7f) == 0, 'WIFEXITED($exitcode) after sub { 0 }' );
is( ($exitcode >> 8), 0, 'WEXITSTATUS($exitcode) after sub { 0 }' );
$loop->open_child(
command => [ $^X, "-e", 'exit 5' ],
on_finish => sub { ( undef, $exitcode ) = @_; },
);
undef $exitcode;
wait_for { defined $exitcode };
ok( ($exitcode & 0x7f) == 0, 'WIFEXITED($exitcode) after perl -e exit 5' );
is( ($exitcode >> 8), 5, 'WEXITSTATUS($exitcode) after perl -e exit 5' );
ok( exception { $loop->open_child(
command => [ $^X, "-e", 1 ]
) },
'Missing on_finish fails'
);
ok( exception { $loop->open_child(
command => [ $^X, "-e", 1 ],
on_finish => "hello"
) },
'on_finish not CODE ref fails'
);
ok( exception { $loop->open_child(
command => [ $^X, "-e", 1 ],
on_finish => sub {},
on_exit => sub {},
) },
'on_exit parameter fails'
);
done_testing;
|