forked from memcached/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00-startup.t
executable file
·97 lines (80 loc) · 2.08 KB
/
00-startup.t
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env perl
use strict;
use Test::More tests => 21;
use FindBin qw($Bin);
use lib "$Bin/lib";
use MemcachedTest;
eval {
my $server = new_memcached();
ok($server, "started the server");
};
is($@, '', 'Basic startup works');
eval {
my $server = new_memcached("-l fooble");
};
ok($@, "Died with illegal -l args");
eval {
my $server = new_memcached("-l 127.0.0.1");
};
is($@,'', "-l 127.0.0.1 works");
eval {
my $server = new_memcached('-C');
my $stats = mem_stats($server->sock, 'settings');
is('no', $stats->{'cas_enabled'});
};
is($@, '', "-C works");
eval {
my $server = new_memcached('-b 8675');
my $stats = mem_stats($server->sock, 'settings');
is('8675', $stats->{'tcp_backlog'});
};
is($@, '', "-b works");
foreach my $val ('auto', 'ascii') {
eval {
my $server = new_memcached("-B $val");
my $stats = mem_stats($server->sock, 'settings');
ok($stats->{'binding_protocol'} =~ /$val/, "$val works");
};
is($@, '', "$val works");
}
# For the binary test, we just verify it starts since we don't have an easy bin client.
eval {
my $server = new_memcached("-B binary");
};
is($@, '', "binary works");
eval {
my $server = new_memcached("-vv -B auto");
};
is($@, '', "auto works");
eval {
my $server = new_memcached("-vv -B ascii");
};
is($@, '', "ascii works");
# For the binary test, we just verify it starts since we don't have an easy bin client.
eval {
my $server = new_memcached("-vv -B binary");
};
is($@, '', "binary works");
# Should blow up with something invalid.
eval {
my $server = new_memcached("-B http");
};
ok($@, "Died with illegal -B arg.");
# Maximum connections must be greater than 0.
eval {
my $server = new_memcached("-c 0");
};
ok($@, "Died with invalid maximum connections 0.");
eval {
my $server = new_memcached("-c -1");
};
ok($@, "Died with invalid maximum connections -1.");
# Should not allow -t 0
eval {
my $server = new_memcached("-t 0");
};
ok($@, "Died with illegal 0 thread count");
{
my $exit_code = run_help();
is($exit_code, 0, "Help defaults are fine.");
};