File: 50-fork_safe.t

package info (click to toggle)
libredis-perl 2%3A1.9910-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 348 kB
  • ctags: 89
  • sloc: perl: 2,334; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (4)
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
use strict;
use warnings;
use Test::More;
use Redis;
use lib 't/tlib';
use Test::SpawnRedisServer;
use Test::SharedFork;

my ($c, $srv) = redis();
END { $c->() if $c }
my $o = Redis->new(server => $srv, name => 'my_name_is_glorious');
is $o->info->{connected_clients}, 1;
my $localport = $o->{sock}->sockport;

note "fork safe"; {
    if (my $pid = fork) {
        $o->incr("test-fork");
        is $o->{sock}->sockport, $localport, "same port on parent";
        waitpid($pid, 0);
    }
    else {
        $o->incr("test-fork");
        isnt $o->{sock}->sockport, $localport, "different port on child";
        is $o->info->{connected_clients}, 2, "2 clients connected";
        exit 0;
    }

    is $o->get('test-fork'), 2;
};

done_testing;