annotate limit_conn.t @ 572:ca54b445d982

Tests: masked nginx bug in proxy next upstream. When iterating through several next upstreams per a worker cycle, a previously reported event about upstream connection error may be improperly applied to the next upstream, thus leading to the invalid connection error. E.g., in kqueue, where the problem is visible, this is caused by "ev->instance" that does not tolerate more than one next upstream at once, and kevents placed on the kqueue separately for read and write events. The change is to limit test case to the only one next upstream.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 14 May 2015 11:54:24 +0300
parents b86c05516e65
children 2cd00179f4b2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
1 #!/usr/bin/perl
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
2
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
3 # (C) Sergey Kandaurov
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
4
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
5 # limit_req based tests for nginx limit_conn module.
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
6
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
7 ###############################################################################
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
8
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
9 use warnings;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
10 use strict;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
11
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
12 use Test::More;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
13
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
14 BEGIN { use FindBin; chdir($FindBin::Bin); }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
15
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
16 use lib 'lib';
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
17 use Test::Nginx;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
18
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
19 ###############################################################################
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
20
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
21 select STDERR; $| = 1;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
22 select STDOUT; $| = 1;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
23
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
24 plan(skip_all => 'win32') if $^O eq 'MSWin32';
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
25
468
684278f71783 Tests: the "limit_zone" directive was removed.
Valentin Bartenev <vbart@nginx.com>
parents: 438
diff changeset
26 my $t = Test::Nginx->new()->has(qw/http proxy limit_conn limit_req/)->plan(8);
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
27
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
28 $t->write_file_expand('nginx.conf', <<'EOF');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
29
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
30 %%TEST_GLOBALS%%
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
31
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
32 daemon off;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
33
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
34 events {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
35 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
36
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
37 http {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
38 %%TEST_GLOBALS_HTTP%%
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
39
386
1b205a3332de Tests: adjusted limit_req rate value.
Sergey Kandaurov <pluknet@nginx.com>
parents: 318
diff changeset
40 limit_req_zone $binary_remote_addr zone=req:1m rate=30r/m;
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
41
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
42 limit_conn_zone $binary_remote_addr zone=zone:1m;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
43 limit_conn_zone $binary_remote_addr zone=zone2:1m;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
44 limit_conn_zone $binary_remote_addr zone=custom:1m;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
45
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
46 server {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
47 listen 127.0.0.1:8081;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
48 server_name localhost;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
49
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
50 location /w {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
51 limit_req zone=req burst=10;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
52 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
53 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
54
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
55 server {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
56 listen 127.0.0.1:8080;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
57 server_name localhost;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
58
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
59 location / {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
60 proxy_pass http://127.0.0.1:8081;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
61 limit_conn zone 1;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
62 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
63
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
64 location /1 {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
65 limit_conn zone 1;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
66 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
67
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
68 location /zone {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
69 limit_conn zone2 1;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
70 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
71
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
72 location /unlim {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
73 limit_conn zone 5;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
74 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
75
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
76 location /custom {
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
77 proxy_pass http://127.0.0.1:8081/;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
78 limit_conn_log_level info;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
79 limit_conn_status 501;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
80 limit_conn custom 1;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
81 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
82 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
83 }
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
84
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
85 EOF
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
86
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
87 $t->run();
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
88
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
89 ###############################################################################
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
90
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
91 # charge limit_req
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
92
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
93 http_get('/w');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
94
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
95 # same and other zones in different locations
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
96
438
60888e2c3f5a Tests: new http_start() and http_end() functions.
Sergey Kandaurov <pluknet@nginx.com>
parents: 386
diff changeset
97 my $s = http_get('/w', start => 1);
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
98 like(http_get('/'), qr/^HTTP\/1.. 503 /, 'rejected');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
99 like(http_get('/1'), qr/^HTTP\/1.. 503 /, 'rejected different location');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
100 unlike(http_get('/zone'), qr/^HTTP\/1.. 503 /, 'passed different zone');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
101
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
102 close $s;
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
103 unlike(http_get('/1'), qr/^HTTP\/1.. 503 /, 'passed');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
104
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
105 # custom error code and log level
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
106
438
60888e2c3f5a Tests: new http_start() and http_end() functions.
Sergey Kandaurov <pluknet@nginx.com>
parents: 386
diff changeset
107 $s = http_get('/custom/w', start => 1);
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
108 like(http_get('/custom'), qr/^HTTP\/1.. 501 /, 'limit_conn_status');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
109
469
1c5a8265f386 Tests: fixed matching for limit_conn_log_level.
Valentin Bartenev <vbart@nginx.com>
parents: 468
diff changeset
110 like($t->read_file('error.log'),
1c5a8265f386 Tests: fixed matching for limit_conn_log_level.
Valentin Bartenev <vbart@nginx.com>
parents: 468
diff changeset
111 qr/\[info\].*limiting connections by zone "custom"/,
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
112 'limit_conn_log_level');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
113
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
114 # limited after unlimited
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
115
438
60888e2c3f5a Tests: new http_start() and http_end() functions.
Sergey Kandaurov <pluknet@nginx.com>
parents: 386
diff changeset
116 $s = http_get('/w', start => 1);
313
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
117 like(http_get('/unlim'), qr/404 Not Found/, 'unlimited passed');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
118 like(http_get('/'), qr/503 Service/, 'limited rejected');
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
119
9daf28f20766 Tests: added tests for limit_conn module.
Sergey Kandaurov <pluknet@nginx.com>
parents:
diff changeset
120 ###############################################################################