#!/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 is an extension of the simple.t test to test for large responses
use Test::More 1.001002; # new enough for sanity in done_testing()
use POE 1.267;
use POE::Component::TLSify qw/Client_TLSify Server_TLSify TLSify_GetCipher TLSify_GetSocket/;
# TODO rewrite this to use Test::POE::Server::TCP and stuff :)
my $port;
# length $bigpacket = 2079998 ( just need to go over 42643B as reported in RT#58243 but... =)
my $bigpacket = join( '-', ('a' .. 'z') x 10000, ('A' .. 'Z') x 10000 ) x 2;
POE::Component::Server::TCP->new
(
Alias => 'myserver',
Address => '127.0.0.1',
Port => 0,
ClientFilter => ['POE::Filter::Block', 'BlockSize' => length $bigpacket],
Started => sub
{
use Socket qw/sockaddr_in/;
$port = (sockaddr_in($_[HEAP]->{listener}->getsockname))[0];
},
ClientConnected => sub
{
ok(1, 'SERVER: accepted');
},
ClientDisconnected => sub
{
ok(1, 'SERVER: client disconnected');
$_[KERNEL]->post(myserver => 'shutdown');
},
ClientPreConnect => sub
{
my $args = {
SSL_cert_file => 'mylib/ircd.crt',
SSL_key_file => 'mylib/ircd.key',
};
ok(!$@, "SERVER: TLSify_Options $@");
my $socket = eval { Server_TLSify($_[ARG0], $args) };
ok(!$@, "SERVER: Server_TLSify $@");
ok(1, 'SERVER: TLSify_GetCipher: '. TLSify_GetCipher($socket));
# We pray that IO::Handle is sane...
ok( TLSify_GetSocket( $socket )->blocking == 0, 'SERVER: SSLified socket is non-blocking?') if $^O ne 'MSWin32';
return ($socket);
},
ClientInput => sub
{
my ($kernel, $heap, $line) = @_[KERNEL, HEAP, ARG0];
if ( $line eq $bigpacket ) {
ok(1, "SERVER: recv BIGPACKET");
## At this point, connection MUST be encrypted.
my $cipher = TLSify_GetCipher($heap->{client}->get_output_handle);
ok($cipher ne '(NONE)', "SERVER: TLSify_GetCipher: $cipher");
$heap->{client}->put($bigpacket);
} else {
die "Unknown line from CLIENT: $line";
}
},
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 ];
# TODO are there other "errors" that is harmless?
$error = "Normal disconnection" unless $error;
my $msg = "Got SERVER $syscall error $errno: $error";
unless ( $syscall eq 'read' and $errno == 0 ) {
fail( $msg );
} else {
diag( $msg ) if $ENV{TEST_VERBOSE};
}
},
);
POE::Component::Client::TCP->new
(
Alias => 'myclient',
RemoteAddress => '127.0.0.1',
RemotePort => $port,
Filter => ['POE::Filter::Block', 'BlockSize' => length $bigpacket],
Connected => sub
{
ok(1, 'CLIENT: connected');
$_[HEAP]->{server}->put($bigpacket);
},
PreConnect => sub
{
require IO::Socket::SSL;
my $args = { SSL_verify_mode => IO::Socket::SSL::SSL_VERIFY_NONE() };
my $socket = eval { Client_TLSify($_[ARG0], $args) };
ok(!$@, "CLIENT: Client_TLSify $@");
ok(1, 'CLIENT: TLSify_GetCipher: '. TLSify_GetCipher($socket));
# We pray that IO::Handle is sane...
ok( TLSify_GetSocket( $socket )->blocking == 0, 'CLIENT: SSLified socket is non-blocking?') if $^O ne 'MSWin32';
return ($socket);
},
ServerInput => sub
{
my ($kernel, $heap, $line) = @_[KERNEL, HEAP, ARG0];
if ($line eq $bigpacket) {
ok(1, "CLIENT: recv BIGPACKET");
## At this point, connection MUST be encrypted.
my $cipher = TLSify_GetCipher($heap->{server}->get_output_handle);
ok($cipher ne '(NONE)', "CLIENT: TLSify_GetCipher: $cipher");
diag( TLSify_GetSocket( $heap->{server}->get_output_handle )->dump_peer_certificate() ) if $ENV{TEST_VERBOSE};
$kernel->yield('shutdown');
} else {
die "Unknown line from SERVER: $line";
}
},
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 ];
# TODO are there other "errors" that is harmless?
$error = "Normal disconnection" unless $error;
my $msg = "Got CLIENT $syscall error $errno: $error";
unless ( $syscall eq 'read' and $errno == 0 ) {
fail( $msg );
} else {
diag( $msg ) if $ENV{TEST_VERBOSE};
}
},
);
$poe_kernel->run();
done_testing;