/usr/share/perl5/POE/Test/Sequence.pm is in libpoe-perl 2:1.3650-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package POE::Test::Sequence;
use warnings;
use strict;
use Carp qw(croak);
use POE;
sub new {
my ($class, %args) = @_;
my $sequence = delete $args{sequence};
croak "sequence required" unless defined $sequence;
return bless {
sequence => $sequence,
test_count => scalar( @$sequence ),
}, $class;
}
sub next {
my ($self, $event, $parameter) = @_;
my $expected_result = shift @{ $self->{sequence} };
unless (defined $expected_result) {
Test::More::fail(
"Got an unexpected result ($event, $parameter). Time to bye."
);
exit;
}
my $next_action = pop @$expected_result;
Test::More::note "Testing (@$expected_result)";
Test::More::is_deeply( [ $event, $parameter ], $expected_result );
return $next_action || sub { undef };
}
sub test_count {
return $_[0]{test_count};
}
sub create_generic_session {
my ($self) = @_;
POE::Session->create(
inline_states => {
_start => sub { goto $self->next( $_[STATE], 0 ) },
_default => sub { goto $self->next( $_[ARG0], 0 ) },
}
);
}
1;
__END__
=head1 NAME
POE::Test::Sequence - POE test helper to verify a sequence of events
=head1 SYNOPSIS
Sorry, there isn't a synopsis at this time.
However, see t/90_regression/whjackson-followtail.t in POE's test
suite for a full example.
=head1 DESCRIPTION
POE::Test::Sequence is a test helper that abstracts a lot of the
tedious trickery needed to verify the relative ordering of events.
With this module, one can test the sequence of events without
necessarily relying on specific times elapsing between them.
=head2 create_generic_session
The create_generic_session() method creates a POE::Session that routes
all vents through the POE::Test::Sequence object. It returns the
POE::Session object, but the test program does not need to store it
anywhere. In fact, it's recommended not to do that without
understanding the implications.
The implications can be found in the documentation for POE::Kernel and
POE::Session.
An example of create_generic_session() can be found in
POE's t/90_regression/leolo-alarm-adjust.t test program.
=head2 new
Create a new sequence object. Takes named parameter pairs, currently
just "sequence", which references an array of steps. Each step is an
array reference containing the expected event, a required parameter to
that event, and a code reference for the optional next step to take
after testing for that event.
my $sequence = POE::Test::Sequence->new(
sequence => [
[ got_idle_event => 0, sub { append_to_log("text") } ],
...,
]
);
next() uses the first two step elements to verify that steps are
occurring in the order in which they should. The third element is
returned by next() and is suitable for use as a goto() target. See
the next() method for more details.
=head2 next
The next() method requires an event name and a scalar parameter.
These are compared to the first two elements of the next sequence step
to make sure events are happening in the order in which they should.
sub handle_start_event {
goto $sequence->next("got_start_event", 0);
}
=head2 test_count
test_count() returns the number of test steps in the sequence object.
It's intended to be used for test planning.
use Test::More;
my $sequence = POE::Test::Sequence->new( ... );
plan tests => $sequence->test_count();
=head1 BUGS
create_generic_session() is hard-coded to pass only the event name and
the numeric value 0 to next(). This is fine for only the most generic
sequences.
=head1 AUTHORS & LICENSING
Please see L<POE> for more information about authors, contributors,
and POE's licensing.
=cut
# vim: ts=2 sw=2 filetype=perl expandtab
|