File: unixsocket.t

package info (click to toggle)
memcached 1.6.39-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,320 kB
  • sloc: ansic: 62,281; perl: 12,500; sh: 4,569; makefile: 468; python: 402; xml: 59
file content (35 lines) | stat: -rwxr-xr-x 746 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env perl

use strict;
use Test::More;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;

my $filename = "/tmp/memcachetest$$";

if (supports_unix_socket()) {
    plan tests => 3;

    my $server = new_memcached("-s $filename");
    my $sock = $server->sock;

    ok(-S $filename, "creating unix domain socket $filename");

    # set foo (and should get it)
    print $sock "set foo 0 0 6\r\nfooval\r\n";

    is(scalar <$sock>, "STORED\r\n", "stored foo");
    mem_get_is($sock, "foo", "fooval");

    unlink($filename);

    ## Just some basic stuff for now...
} else {
    plan tests => 1;

    eval {
        my $server = new_memcached("-s $filename");
    };
    ok($@, "Died connecting to unsupported unix socket.");
}