-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathmemcached_keepalive.t
193 lines (139 loc) · 5.04 KB
/
memcached_keepalive.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/usr/bin/perl
# (C) Maxim Dounin
# Test for memcached with keepalive.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
eval { require Cache::Memcached; };
plan(skip_all => 'Cache::Memcached not installed') if $@;
my $t = Test::Nginx->new()->has(qw/http memcached upstream_keepalive rewrite/)
->has_daemon('memcached')->plan(15)
->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
upstream memd {
server 127.0.0.1:8081;
keepalive 1;
}
upstream memd3 {
server 127.0.0.1:8081;
server 127.0.0.1:8082;
keepalive 1;
}
upstream memd4 {
server 127.0.0.1:8081;
server 127.0.0.1:8082;
keepalive 10;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
set $memcached_key $uri;
memcached_pass memd;
}
location /next {
set $memcached_key $uri;
memcached_next_upstream not_found;
memcached_pass memd;
}
location /memd3 {
set $memcached_key "/";
memcached_pass memd3;
}
location /memd4 {
set $memcached_key "/";
memcached_pass memd4;
}
}
}
EOF
my $memhelp = `memcached -h`;
my @memopts1 = ();
my @memopts2 = ();
if ($memhelp =~ /repcached/) {
# repcached patches adds additional listen socket memcached
# that should be different too
push @memopts1, '-X', port(8083);
push @memopts2, '-X', port(8084);
}
if ($memhelp =~ /-U/) {
# UDP ports no longer off by default in memcached 1.2.7+
push @memopts1, '-U', '0';
push @memopts2, '-U', '0';
}
if ($memhelp =~ /-t/) {
# for connection stats consistency in threaded memcached 1.3+
push @memopts1, '-t', '1';
push @memopts2, '-t', '1';
}
$t->run_daemon('memcached', '-l', '127.0.0.1', '-p', port(8081), @memopts1);
$t->run_daemon('memcached', '-l', '127.0.0.1', '-p', port(8082), @memopts2);
$t->run();
$t->waitforsocket('127.0.0.1:' . port(8081))
or die "Unable to start memcached";
$t->waitforsocket('127.0.0.1:' . port(8082))
or die "Unable to start second memcached";
###############################################################################
my $memd1 = Cache::Memcached->new(servers => [ '127.0.0.1:' . port(8081) ],
connect_timeout => 1.0);
my $memd2 = Cache::Memcached->new(servers => [ '127.0.0.1:' . port(8082) ],
connect_timeout => 1.0);
$memd1->set('/', 'SEE-THIS');
$memd2->set('/', 'SEE-THIS');
$memd1->set('/big', 'X' x 1000000);
my $total = $memd1->stats()->{total}->{total_connections};
like(http_get('/'), qr/SEE-THIS/, 'keepalive memcached request');
like(http_get('/notfound'), qr/ 404 /, 'keepalive memcached not found');
like(http_get('/next'), qr/ 404 /,
'keepalive not found with memcached_next_upstream');
like(http_get('/'), qr/SEE-THIS/, 'keepalive memcached request again');
like(http_get('/'), qr/SEE-THIS/, 'keepalive memcached request again');
like(http_get('/'), qr/SEE-THIS/, 'keepalive memcached request again');
is($memd1->stats()->{total}->{total_connections}, $total + 1,
'only one connection used');
# Since nginx doesn't read all data from connection in some situations (head
# requests, post_action, errors writing to client) we have to close such
# connections. Check if we really do close them.
$total = $memd1->stats()->{total}->{total_connections};
unlike(http_head('/'), qr/SEE-THIS/, 'head request');
like(http_get('/'), qr/SEE-THIS/, 'get after head');
is($memd1->stats()->{total}->{total_connections}, $total + 1,
'head request closes connection');
$total = $memd1->stats()->{total}->{total_connections};
unlike(http_head('/big'), qr/XXX/, 'big head');
like(http_get('/'), qr/SEE-THIS/, 'get after big head');
is($memd1->stats()->{total}->{total_connections}, $total + 1,
'big head request closes connection');
# two backends with maximum number of cached connections set to 1,
# should establish new connection on each request
$total = $memd1->stats()->{total}->{total_connections} +
$memd2->stats()->{total}->{total_connections};
http_get('/memd3');
http_get('/memd3');
http_get('/memd3');
is($memd1->stats()->{total}->{total_connections} +
$memd2->stats()->{total}->{total_connections}, $total + 3,
'3 connections should be established');
# two backends with maximum number of cached connections set to 10,
# should establish only two connections (1 per backend)
$total = $memd1->stats()->{total}->{total_connections} +
$memd2->stats()->{total}->{total_connections};
http_get('/memd4');
http_get('/memd4');
http_get('/memd4');
is($memd1->stats()->{total}->{total_connections} +
$memd2->stats()->{total}->{total_connections}, $total + 2,
'connection per backend');
###############################################################################