File: binary-get.t

package info (click to toggle)
memcached 1.4.21-1.1%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,920 kB
  • sloc: ansic: 10,394; sh: 4,359; perl: 4,054; xml: 1,634; makefile: 148
file content (23 lines) | stat: -rwxr-xr-x 499 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl

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

my $server = new_memcached();
my $sock = $server->sock;

my $count = 1;

foreach my $blob ("mooo\0", "mumble\0\0\0\0\r\rblarg", "\0", "\r") {
    my $key = "foo$count";
    my $len = length($blob);
    print "len is $len\n";
    print $sock "set $key 0 0 $len\r\n$blob\r\n";
    is(scalar <$sock>, "STORED\r\n", "stored $key");
    mem_get_is($sock, $key, $blob);
    $count++;
}