#!/usr/bin/perl
#
# This file is part of POE-Component-SSLify
#
# This software is copyright (c) 2014 by Apocalypse.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
use strict; use warnings;
use strict; use warnings;
# this tests the connection fail hook on the server-side
use Test::More 1.001002; # new enough for sanity in done_testing()
use POE 1.267;
use POE::Component::TLSify qw/Server_TLSify TLSify_GetSocket/;
# TODO rewrite this to use Test::POE::Server::TCP and stuff :)
my $port;
POE::Component::Server::TCP->new
(
Alias => 'myserver',
Address => '127.0.0.1',
Port => 0,
Started => sub
{
use Socket qw/sockaddr_in/;
$port = (sockaddr_in($_[HEAP]->{listener}->getsockname))[0];
},
ClientConnected => sub
{
ok(1, 'SERVER: accepted');
},
ClientPreConnect => sub
{
my $args = {
SSL_cert_file => 'mylib/ircd.crt',
SSL_key_file => 'mylib/ircd.key',
};
my $socket = eval { Server_TLSify( $_[ARG0], $args, sub {
my( $socket, $status, $errval ) = @_;
pass( "SERVER: Got callback hook" );
is( $status, 0, "SERVER: Status received from callback is ERR - $errval" );
$poe_kernel->post( 'myserver' => 'shutdown');
} ) };
ok(!$@, "SERVER: Server_TLSify $@");
return ($socket);
},
ClientDisconnected => sub
{
ok(1, 'SERVER: client disconnected');
},
ClientInput => sub
{
my ($kernel, $heap, $line) = @_[KERNEL, HEAP, ARG0];
die "Should have never got any input from the client!";
},
ClientError => sub
{
# Thanks to H. Merijn Brand for spotting this FAIL in 5.12.0!
# The default PoCo::Server::TCP handler will throw a warning, which causes Test::NoWarnings to FAIL :(
my ($syscall, $errno, $error) = @_[ ARG0..ARG2 ];
$error = "Normal disconnection" unless $error;
diag( "Got SERVER $syscall error $errno: $error" ) if $ENV{TEST_VERBOSE};
},
);
POE::Component::Client::TCP->new
(
Alias => 'myclient',
RemoteAddress => '127.0.0.1',
RemotePort => $port,
Connected => sub
{
ok(1, 'CLIENT: connected');
# purposefully send garbage so we screw up the ssl connect on the client-side
$_[HEAP]->{server}->put( 'garbage in, garbage out' );
},
ServerInput => sub
{
my ($kernel, $heap, $line) = @_[KERNEL, HEAP, ARG0];
# purposefully send garbage so we screw up the ssl connect on the client-side
$heap->{server}->put( 'garbage in, garbage out' );
},
ServerError => sub
{
# Thanks to H. Merijn Brand for spotting this FAIL in 5.12.0!
# The default PoCo::Client::TCP handler will throw a warning, which causes Test::NoWarnings to FAIL :(
my ($syscall, $errno, $error) = @_[ ARG0..ARG2 ];
$error = "Normal disconnection" unless $error;
diag( "Got CLIENT $syscall error $errno: $error" ) if $ENV{TEST_VERBOSE};
},
);
$poe_kernel->run();
done_testing;