NAME
Test2::Tools::Process - Unit tests for code that calls exit, exec, system or qx()
VERSION
version 0.07
SYNOPSIS
use Test2::V0 -no_srand => 1;
use Test2::Tools::Process;
process {
system 'foo', 'bar';
} [
# check that the first system call is to
# a command foo with any arguments
proc_event(system => array {
item 'foo';
etc;
}, sub {
# simulate the foo command
my($proc, @args) = @_;
note "faux bar command: @args";
# simulate a normal exit
$proc->exit(0);
}),
];
process {
exit 2;
note 'not executed';
} [
# can use any Test2 checks on the exit status
proc_event(exit => match qr/^[2-3]$/),
];
process {
exit 4;
} [
# or you can just check that the exit status matches numerically
proc_event(exit => 4),
];
process {
exit 5;
} [
# or just check that we called exit.
proc_event('exit'),
];
process {
exec 'foo bar';
exec 'baz';
note 'not executed';
} [
# emulate first exec as failed
proc_event(exec => match qr/^foo\b/, sub {
my($return, @command) = @_;
$! = 2;
return 0;
}),
# the second exec will be emulated as successful
proc_event('exec'),
];
# just intercept `exit`
is intercept_exit { exit 10 }, 10;
# just intercept `exec`
is intercept_exec { exec 'foo', 'bar', 'baz' }, ['foo','bar','baz'];
done_testing;
DESCRIPTION
This set of testing tools is intended for writing unit tests for code that interacts with other processes without using real processes that might have unwanted side effects. It also lets you test code that exits program flow without actually terminating your test. So far it allows you to test and/or mock exit
, exec
, system
, readpipe
and qx//
. Other process related tests will be added in the future.
This module borrows some ideas from Test::Exit. In particular it does not use exceptions to simulate exit
or exec
, so you can freely test code that calls these in an eval
.
FUNCTIONS
process
my $ok = process { ... } \@events, $test_name;
my $ok = process { ... } \@events;
my $ok = process { ... } $test_name;
my $ok = process { ... };
Runs the block, intercepting exit
, exec
, system
, readpipe
and qx//
calls. The calls are then matched against \@events
as the expected process events. See proc_event
below for defining individual events, and the synopsis above for examples.
named_signal
my $signame = named_signal $name;
Given a string signal name like KILL
, this will return the integer signal number. It will throw an exception if the $name
is invalid.
intercept_exit
my $status = intercept_exit { ... };
Intercept any c<exit> calls inside the block, and return the exit status. Returns undef
if there were no exec
calls.
intercept_exec
my $arrayref = intercept_exec { ... };
Intercept any exec
calls inside the block and return the command line that a was passed to it. Returns undef
if there were no exec
calls.
CHECKS
proc_event
process { ... } [
proc_event($type => $check, $callback),
proc_event($type => $check),
proc_event($type => $callback),
proc_event($type),
# additional result checks for `system` events
proc_event('system' => $check, \%result_check, $callback),
proc_event('system' => \%result_check, $callback),
proc_event('system' => $check, \%result_check),
proc_event('system' => \%result_check),
];
The proc_event
function creates a process event, with an optional check and callback. How the $check
works depends on the $type
. If no $check
is provided then it will only check that the $type
matches. Due to their nature, exit
and exec
events are emulated. system
events will actually make a system call, unless a $callback
is provided.
- exit
-
A process event for an
exit
call. The check is against the status value passed toexit
. This value will always be an integer. If no status value was passed toexit
,0
will be used as the status value.If no callback is provided then an
exit
will be emulated by terminating the process block without executing any more code. The rest of the test will then proceed.proc_event( exit => sub { my($proc, $status) = @_; $proc->terminate; });
The callback takes a
$proc
object and a$status
value. Normallyexit
should never return, so what you want to do is call theterminate
method on the$proc
object. - exec
-
A process event for an
exec
call. The check is against the command passed toexec
. Ifexec
is called with a single argument this will be a string, otherwise it will be an array reference. This way you can differentiate between the SCALAR and LIST modes ofexec
.If no callback is provided then a (successful)
exec
will be emulated by terminating the process block without executing any more code. The rest of the test will then proceed.proc_event( exec => sub { my($proc, @command) = @_; ...; });
The callback takes a
$proc
object and the arguments passed toexec
as@command
. You can emulate a failedexec
by using theerrno
method on the$proc
object:proc_event( exec => sub { my($proc, @command) = @_; $proc->errno(2); # this is the errno value });
To emulate a successful
exec
call you want to just remember to call theterminate
method on the$proc
object.proc_event( exec => sub { my($proc, @command) = @_; $proc->terminate; });
- system
-
A process event for
system
,piperead
andqx//
. The first check (as withexec
) is against the command string passed tosystem
. The second is a hash reference with result checks.- status
-
proc_event( system => { status => $check } );
The normal termination status. This is usually the value passed to
exit
in the program called. Typically a program that succeeded will return zero (0
) and a failed on will return non-zero. - errno
-
proc_event( system => { errno => $check } );
The
errno
or$!
value if the system call failed. Most commonly this is for bad command names, but it could be something else like running out of memory or other system resources. - signal
-
proc_event( system => { signal => $check } );
Set if the process was killed by a signal.
Only one check should be included because only one of these is usually valid. If you do not provide this check, then it will check that the status code is zero only.
By default the actual system call will be made, but if you provide a callback you can simulate commands, which is helpful in unit testing your script without having to call external programs which may have unwanted side effects.
proc_event( system => sub { my($proc, @command) = @_; ... });
Like the
exec
event,@command
contains the full command passed to thesystem
call. You can use the$proc
object to simulate one of three different results:- exit
-
$proc->exit($status); $proc->exit;
Exit with the given status. A status of zero (0) will be used if not provided. If no result is specified in the callback at all then a status of zero (0) will also be used.
- signal
-
$proc->signal($signal);
Terminate with the given signal.
$signal
can be either an integer value (in which case no validation that it is a real signal is done), or a string signal name likeKILL
,HUP
or any signal supported by your operating system. If you provide an invalid signal name an exception will be thrown.proc_event( system => { signal => 9 } => sub { my($proc, @args) = @_; $proc->signal('KILL'); });
Note that when you kill one of these faux processes with a signal you will want to update the expected signal check, as in the example above.
- errno
-
$proc->errno($errno);
Simulate a failed
system
call. Most oftensystem
will fail if the command is not found. The$errno
passed in should be a validerrno
value. On my system2
is the error code for command not found. Example:proc_event( system => { errno => number(2) } => sub { my($proc, @args) = @_; $proc->errno(2); });
- type
-
my $type = $proc->type;
Returns
system
orreadpipe
depending on the Perl function that triggered the system call.
CAVEATS
The exit
emulation, doesn't call END
callbacks or other destructors, since you aren't really terminating the process.
This module installs handlers for exec
, exit
, system
and readpipe
, in the CORE::GLOBAL
namespace, so if your code is also installing handlers there then things might not work.
This module is not apparently compatible with IPC::Run3. Use Capture::Tiny instead, which is better maintained in my opinion.
SEE ALSO
- Test::Exit
-
Simple
exit
emulation for tests. The most recent version does not rely on exceptions. - Test::Exec
-
Like Test::Exit, but for
exec
- Test::Mock::Cmd
-
Provides an interface to mocking
system
,qx
andexec
.
AUTHOR
Author: Graham Ollis <plicease@cpan.org>
Contributors:
Jeremy Mates (THRIG)
COPYRIGHT AND LICENSE
This software is copyright (c) 2015-2022 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.