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
|
use warnings;
use strict;
use Test::More tests => 22;
use Test::TCP;
use IO::Socket::INET;
use t::Server;
my $server = Test::TCP->new(
code => sub {
my $port = shift;
ok $port, "test case for sharedfork" for 1..10;
t::Server->new($port)->run(sub {
note "new request";
my ($remote, $line, $sock) = @_;
print {$remote} $line;
});
}
);
ok $server->port, "test case for sharedfork" for 1..10;
my $sock = IO::Socket::INET->new(
PeerPort => $server->port,
PeerAddr => '127.0.0.1',
Proto => 'tcp'
) or die "Cannot open client socket: $!";
note "send 1";
print {$sock} "foo\n";
my $res = <$sock>;
is $res, "foo\n";
note "send 2";
print {$sock} "bar\n";
my $res2 = <$sock>;
is $res2, "bar\n";
note "finalize";
print {$sock} "quit\n";
if ($?) {
# It's maybe ActivePerl's bug.
# http://ppm4.activestate.com/MSWin32-x86/5.12/1200/T/TO/TOKUHIROM/Test-TCP-1.11.d/log-20101221T221845.txt
diag "test_tcp() leaks \$?. Maybe it's Perl bug?: $?";
$? = 0;
}
done_testing;
|