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
|
package POE::Component::IRC::Test::Plugin;
use strict;
use warnings FATAL => 'all';
use POE::Component::IRC::Plugin qw( :ALL );
sub new {
return bless { @_[1..$#_] }, $_[0];
}
sub PCI_register {
$_[1]->plugin_register( $_[0], 'SERVER', qw(all) );
return 1;
}
sub PCI_unregister {
return 1;
}
sub _default {
return PCI_EAT_NONE;
}
1;
__END__
=head1 NAME
POE::Component::IRC::Test::Plugin - Part of the
L<POE::Component::IRC|POE::Component::IRC> test-suite.
=head1 SYNOPSIS
use Test::More tests => 16;
BEGIN { use_ok('POE::Component::IRC') };
BEGIN { use_ok('POE::Component::IRC::Test::Plugin') };
use POE;
my $self = POE::Component::IRC->spawn( );
isa_ok ( $self, 'POE::Component::IRC' );
POE::Session->create(
inline_states => { _start => \&test_start, },
package_states => [
main => [ qw(irc_plugin_add irc_plugin_del) ],
],
);
$poe_kernel->run();
sub test_start {
my ($kernel, $heap) = @_[KERNEL, HEAP];
$self->yield( 'register' => 'all' );
my $plugin = POE::Component::IRC::Test::Plugin->new();
isa_ok ( $plugin, 'POE::Component::IRC::Test::Plugin' );
$heap->{counter} = 6;
if ( !$self->plugin_add( 'TestPlugin' => $plugin ) ) {
fail( 'plugin_add' );
$self->yield( 'unregister' => 'all' );
$self->yield( 'shutdown' );
}
return:
}
sub irc_plugin_add {
my ($kernel, $heap, $desc, $plugin) = @_[KERNEL, HEAP, ARG0, ARG1];
isa_ok ( $plugin, 'POE::Component::IRC::Test::Plugin' );
if ( !$self->plugin_del( 'TestPlugin' ) ) {
fail( 'plugin_del' );
$self->yield( 'unregister' => 'all' );
$self->yield( 'shutdown' );
}
return;
}
sub irc_plugin_del {
my ($kernel, $heap, $desc, $plugin) = @_[KERNEL, HEAP, ARG0, ARG1];
isa_ok ( $plugin, 'POE::Component::IRC::Test::Plugin' );
$heap->{counter}--;
if ( $heap->{counter} <= 0 ) {
$self->yield( 'unregister' => 'all' );
$self->yield( 'shutdown' );
}
else {
if ( !$self->plugin_add( 'TestPlugin' => $plugin ) ) {
fail( 'plugin_add' );
$self->yield( 'unregister' => 'all' );
$self->yield( 'shutdown' );
}
}
return:
}
=head1 DESCRIPTION
POE::Component::IRC::Test::Plugin is a very simple
L<POE::Component::IRC|POE::Component::IRC> plugin used to test that the plugin
system is working correctly, as demonstrated in the L<SYNOPSIS>.
=head1 CONSTRUCTOR
=over
=item C<new>
No arguments required, returns an POE::Component::IRC::Test::Plugin object.
=back
=head1 AUTHOR
Chris "BinGOs" Williams
=head1 SEE ALSO
L<POE::Component::IRC|POE::Component::IRC>
=cut
|