21 lines
781 B
Perl
21 lines
781 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use Test::More tests => 7;
|
|
use FindBin qw($Bin);
|
|
use lib "$Bin/lib";
|
|
use MemcachedTest;
|
|
|
|
my $server = new_memcached("-R 1");
|
|
my $sock = $server->sock;
|
|
|
|
print $sock "set foobar 0 0 5\r\nBubba\r\nset foobar 0 0 5\r\nBubba\r\nset foobar 0 0 5\r\nBubba\r\nset foobar 0 0 5\r\nBubba\r\nset foobar 0 0 5\r\nBubba\r\nset foobar 0 0 5\r\nBubba\r\n";
|
|
is (scalar <$sock>, "STORED\r\n", "stored foobar");
|
|
is (scalar <$sock>, "STORED\r\n", "stored foobar");
|
|
is (scalar <$sock>, "STORED\r\n", "stored foobar");
|
|
is (scalar <$sock>, "STORED\r\n", "stored foobar");
|
|
is (scalar <$sock>, "STORED\r\n", "stored foobar");
|
|
is (scalar <$sock>, "STORED\r\n", "stored foobar");
|
|
my $stats = mem_stats($sock);
|
|
is ($stats->{"conn_yields"}, "5", "Got a decent number of yields");
|