File: misbehave.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 (29 lines) | stat: -rwxr-xr-x 643 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
#!/usr/bin/env perl

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

if (!enabled_tls_testing() && supports_drop_priv()) {
    plan tests => 1;
} else {
    plan skip_all => 'Privilege drop not supported';
    exit 0;
}

my $server = new_memcached('-o drop_privileges');
my $sock = $server->sock;

print $sock "misbehave\r\n";
sleep(1);

# check if the socket is dead now
my $buff;
my $ret = recv($sock, $buff, 1, MSG_PEEK | MSG_DONTWAIT);
# ret = 0 means read 0 bytes, which means a closed socket
ok($ret == 0, "did not allow misbehaving");

$server->DESTROY();