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
|
#
# This file is part of Redis
#
# This software is Copyright (c) 2015 by Pedro Melo, Damien Krotkine.
#
# This is free software, licensed under:
#
# The Artistic License 2.0 (GPL Compatible)
#
package # Hide from PAUSE
Test::SpawnRedisTimeoutServer;
use strict;
use warnings;
use Test::TCP;
use constant SSL_AVAILABLE => eval { require IO::Socket::SSL };
sub create_server_with_timeout {
my $timeout = shift;
Test::TCP->new(
code => sub {
my $port = shift;
my %args = (
Listen => 5,
Timeout => 1,
Reuse => 1,
Blocking => 1,
LocalPort => $port,
);
my $socket_class = 'IO::Socket::INET';
if ( SSL_AVAILABLE ) {
$socket_class = 'IO::Socket::SSL';
$args{SSL_cert_file} = 't/stunnel/cert.pem';
$args{SSL_key_file} = 't/stunnel/key.pem';
}
my $socket = $socket_class->new(%args)
or die "failed to connect to RedisTimeoutServer: $!";
my $buffer;
while (1) {
my $client = $socket->accept();
next unless defined $client;
if (defined (my $got = <$client>)) {
sleep $timeout;
$client->print("+42\r\n");
}
}
},
);
}
1;
|