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
|
#!perl
use warnings;
use strict;
use Test::More;
use Test::Fatal;
use Redis::Fast;
use lib 't/tlib';
use Test::SpawnRedisServer;
my ($c, $srv) = redis();
END { $c->() if $c }
subtest 'REDIS_SERVER TCP' => sub {
my $n = time();
my $r = Redis::Fast->new(server => $srv);
$r->set($$ => $n);
local $ENV{REDIS_SERVER} = $srv;
is(exception { $r = Redis::Fast->new }, undef, "Direct IP/Port address on REDIS_SERVER works ($srv)",);
is($r->get($$), $n, '... connected to the expected server');
$ENV{REDIS_SERVER} = "tcp:$srv";
is(exception { $r = Redis::Fast->new }, undef, 'Direct IP/Port address (with tcp prefix) on REDIS_SERVER works',);
is($r->get($$), $n, '... connected to the expected server');
};
subtest 'REDIS_SERVER UNIX' => sub {
my $srv = $ENV{TEST_REDIS_SERVER_SOCK_PATH};
plan skip_all => 'Define ENV TEST_REDIS_SERVER_SOCK_PATH to test UNIX socket support'
unless $srv;
my $n = time();
my $r = Redis::Fast->new(sock => $srv);
$r->set($$ => $n);
local $ENV{REDIS_SERVER} = $srv;
is(exception { $r = Redis::Fast->new }, undef, 'UNIX path on REDIS_SERVER works',);
is($r->get($$), $n, '... connected to the expected server');
$ENV{REDIS_SERVER} = "unix:$srv";
is(exception { $r = Redis::Fast->new }, undef, 'UNIX path (with unix prefix) on REDIS_SERVER works',);
is($r->get($$), $n, '... connected to the expected server');
};
done_testing();
|