forked from yaoweibin/nginx_upstream_check_module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfastcgi_check.t
370 lines (254 loc) · 8.44 KB
/
fastcgi_check.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
#!/usr/bin/perl
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 FCGI; };
plan(skip_all => 'FCGI not installed') if $@;
plan(skip_all => 'win32') if $^O eq 'MSWin32';
my $t = Test::Nginx->new()->has(qw/http fastcgi/)->plan(30)
->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
fastcgi_pass 127.0.0.1:8081;
fastcgi_param REQUEST_URI $request_uri;
}
}
}
EOF
$t->run_daemon(\&fastcgi_daemon);
$t->run();
###############################################################################
like(http_get('/'), qr/SEE-THIS/, 'fastcgi request');
like(http_get('/redir'), qr/302/, 'fastcgi redirect');
like(http_get('/'), qr/^3$/m, 'fastcgi third request');
unlike(http_head('/'), qr/SEE-THIS/, 'no data in HEAD');
like(http_get('/stderr'), qr/SEE-THIS/, 'large stderr handled');
$t->stop();
$t->stop_daemons();
###############################################################################
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
worker_processes auto;
events {
accept_mutex off;
}
http {
%%TEST_GLOBALS_HTTP%%
upstream fastcgi {
server 127.0.0.1:8081;
check interval=3000 rise=2 fall=3 timeout=1000 type=fastcgi default_down=false;
check_fastcgi_param "REQUEST_METHOD" "GET";
check_fastcgi_param "REQUEST_URI" "/redir";
check_http_expect_alive http_3xx;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
fastcgi_pass fastcgi;
fastcgi_param REQUEST_URI $request_uri;
}
}
}
EOF
$t->run();
$t->run_daemon(\&fastcgi_daemon);
###############################################################################
like(http_get('/'), qr/SEE-THIS/, 'fastcgi request default_down=false');
like(http_get('/redir'), qr/302/, 'fastcgi redirect default_down=false');
like(http_get('/'), qr/^3$/m, 'fastcgi third request default_down=false');
unlike(http_head('/'), qr/SEE-THIS/, 'no data in HEAD default_down=false');
like(http_get('/stderr'), qr/SEE-THIS/, 'large stderr handled default_down=false');
$t->stop();
$t->stop_daemons();
###############################################################################
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
worker_processes auto;
events {
accept_mutex off;
}
http {
%%TEST_GLOBALS_HTTP%%
upstream fastcgi {
server 127.0.0.1:8081;
check interval=3000 rise=2 fall=3 timeout=1000 type=fastcgi;
check_fastcgi_param "REQUEST_METHOD" "GET";
check_fastcgi_param "REQUEST_URI" "/redir";
check_http_expect_alive http_3xx;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
fastcgi_pass fastcgi;
fastcgi_param REQUEST_URI $request_uri;
}
}
}
EOF
$t->run();
$t->run_daemon(\&fastcgi_daemon);
###############################################################################
like(http_get('/'), qr/502/m, 'fastcgi request default_down=true');
like(http_get('/redir'), qr/502/m, 'fastcgi redirect default_down=true');
like(http_get('/'), qr/502/m, 'fastcgi third request default_down=true');
like(http_head('/'), qr/502/m, 'no data in HEAD default_down=true');
like(http_get('/stderr'), qr/502/m, 'large stderr handled default_down=true');
$t->stop();
$t->stop_daemons();
###############################################################################
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
worker_processes auto;
events {
accept_mutex off;
}
http {
%%TEST_GLOBALS_HTTP%%
upstream fastcgi {
server 127.0.0.1:8081;
check interval=3000 rise=2 fall=3 timeout=1000 type=fastcgi;
check_fastcgi_param "REQUEST_METHOD" "GET";
check_fastcgi_param "REQUEST_URI" "/redir";
check_http_expect_alive http_3xx;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
fastcgi_pass fastcgi;
fastcgi_param REQUEST_URI $request_uri;
}
}
}
EOF
$t->run();
$t->run_daemon(\&fastcgi_daemon);
###############################################################################
sleep(5);
like(http_get('/'), qr/SEE-THIS/, 'fastcgi request default_down=false check 302');
like(http_get('/redir'), qr/302/, 'fastcgi redirect default_down=false check 302');
like(http_get('/'), qr/^\d$/m, 'fastcgi third request default_down=false check 302');
unlike(http_head('/'), qr/SEE-THIS/, 'no data in HEAD default_down=false check 302');
like(http_get('/stderr'), qr/SEE-THIS/, 'large stderr handled default_down=false check 302');
$t->stop();
$t->stop_daemons();
###############################################################################
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
worker_processes auto;
events {
accept_mutex off;
}
http {
%%TEST_GLOBALS_HTTP%%
upstream fastcgi {
server 127.0.0.1:8081;
check interval=1000 rise=1 fall=1 timeout=1000 type=fastcgi;
check_fastcgi_param "REQUEST_METHOD" "GET";
check_fastcgi_param "REQUEST_URI" "/404";
check_http_expect_alive http_2xx;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
fastcgi_pass fastcgi;
fastcgi_param REQUEST_URI $request_uri;
}
}
}
EOF
$t->run();
$t->run_daemon(\&fastcgi_daemon);
###############################################################################
sleep(5);
like(http_get('/'), qr/502/m, 'fastcgi request default_down=true check status heaer');
like(http_get('/redir'), qr/502/m, 'fastcgi redirect default_down=true check status heaer');
like(http_get('/'), qr/502/m, 'fastcgi third request default_down=true check status heaer');
like(http_head('/'), qr/502/m, 'no data in HEAD default_down=true check status heaer');
like(http_get('/stderr'), qr/502/m, 'large stderr handled default_down=true check status heaer');
$t->stop();
$t->stop_daemons();
###############################################################################
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
worker_processes auto;
events {
accept_mutex off;
}
http {
%%TEST_GLOBALS_HTTP%%
upstream fastcgi {
server 127.0.0.1:8081;
check interval=1000 rise=1 fall=1 timeout=1000 type=fastcgi;
check_fastcgi_param "REQUEST_METHOD" "GET";
check_fastcgi_param "REQUEST_URI" "/";
check_http_expect_alive http_4xx;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
fastcgi_pass fastcgi;
fastcgi_param REQUEST_URI $request_uri;
}
}
}
EOF
$t->run();
$t->run_daemon(\&fastcgi_daemon);
###############################################################################
sleep(5);
like(http_get('/'), qr/SEE-THIS/, 'fastcgi request default_down=false without status header');
like(http_get('/redir'), qr/302/, 'fastcgi redirect default_down=false without status header');
like(http_get('/'), qr/^\d$/m, 'fastcgi third request default_down=false without status header');
unlike(http_head('/'), qr/SEE-THIS/, 'no data in HEAD default_down=false without status header');
like(http_get('/stderr'), qr/SEE-THIS/, 'large stderr handled default_down=false without status header');
$t->stop();
$t->stop_daemons();
###############################################################################
sub fastcgi_daemon {
my $socket = FCGI::OpenSocket('127.0.0.1:8081', 5);
my $request = FCGI::Request(\*STDIN, \*STDOUT, \*STDERR, \%ENV,
$socket);
my $count;
while ( $request->Accept() >= 0 ) {
$count++;
if ($ENV{REQUEST_URI} eq '/stderr') {
warn "sample stderr text" x 512;
}
if ($ENV{REQUEST_URI} eq '/404') {
print <<EOF;
Status: 404
EOF
}
print <<EOF;
Location: http://127.0.0.1:8080/redirect
Content-Type: text/html
SEE-THIS
$count
EOF
}
FCGI::CloseSocket($socket);
}