# Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl 1.t' ######################### # change 'tests => 1' to 'tests => last_test_to_print'; use Test::More tests => 21; BEGIN { use_ok('POE::Component::Server::IRC') }; BEGIN { use_ok('POE::Component::IRC') }; BEGIN { use_ok('POE') }; ######################### # Insert your test code below, the Test::More module is use()ed here so read # its man page ( perldoc Test::More ) for help writing this test script. my $pocosi = POE::Component::Server::IRC->spawn( auth => 0, options => { trace => 0 }, antiflood => 0, plugin_debug => 0, debug => 0 ); my $pocoirc = POE::Component::IRC->spawn( flood => 1 ); if ( $pocosi and $pocoirc ) { isa_ok( $pocosi, "POE::Component::Server::IRC" ); POE::Session->create( package_states => [ 'main' => [ qw( _start _shutdown _default irc_001 ircd_registered ircd_daemon_rehash ircd_daemon_die ircd_listener_add) ], ], options => { trace => 0 }, heap => { irc => $pocoirc, ircd => $pocosi }, ); $poe_kernel->run(); } exit 0; sub _start { my ($kernel,$heap) = @_[KERNEL,HEAP]; $heap->{irc}->yield( 'register' => 'all' ); $heap->{ircd}->yield( 'register' ); $heap->{ircd}->add_listener(); $heap->{ircd}->add_operator( { username => 'moo', password => 'fishdont' } ); $kernel->delay( '_shutdown' => 20 ); undef; } sub _shutdown { my $heap = $_[HEAP]; $_[KERNEL]->delay( '_shutdown' => undef ); $heap->{irc}->yield( 'unregister' => 'all' ); $heap->{irc}->yield( 'shutdown' ); #$heap->{ircd}->yield( 'shutdown' ); delete $heap->{irc}; delete $heap->{ircd}; undef; } sub ircd_registered { my ($heap,$object) = @_[HEAP,ARG0]; my $backend = $_[SENDER]->get_heap(); isa_ok( $object, "POE::Component::Server::IRC" ); isa_ok( $backend, "POE::Component::Server::IRC" ); undef; } sub ircd_listener_add { my ($heap,$port) = @_[HEAP,ARG0]; ok( 1, "Started a listener on $port" ); $heap->{port} = $port; $heap->{irc}->yield( connect => { server => 'localhost', port => $port, nick => __PACKAGE__ } ); undef; } sub irc_001 { $_[SENDER]->get_heap()->yield( 'oper' => 'foo' => 'fishdont' ); undef; } sub ircd_daemon_rehash { ok( 1, $_[STATE] ); $_[HEAP]->{irc}->yield( 'sl' => 'die' ); undef; } sub ircd_daemon_die { ok( 1, $_[STATE] ); $poe_kernel->yield( '_shutdown' ); undef; } sub _default { my $event = $_[ARG0]; if ( $event =~ /^irc_(00[234]|25[15]|422)/ or $event eq 'irc_isupport' ) { ok( 1, $event ); } if ( $event eq 'irc_mode' ) { ok( 1, $event ); } if ( $event eq 'irc_381' ) { ok( 1, $event ); $_[SENDER]->get_heap()->yield( 'rehash' ); } if ( $event eq 'irc_491' ) { ok( 1, $event ); $_[SENDER]->get_heap()->yield( 'oper' => 'moo' => 'fishdont' ); } if ( $event eq 'irc_disconnected' ) { ok( 1, $event ); } undef; }