annotate realip.t @ 718:ba822b2e899c

Tests: rewrote HTTP/2 response CONTINUATION tests. Notably, parsing a header block is postponed until after all header block fragments are read. Tests replaced to check a reconstructed header list.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 28 Sep 2015 17:15:40 +0300
parents 3b6ff3b7367d
children cf9183219c59
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
1 #!/usr/bin/perl
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
2
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
3 # (C) Maxim Dounin
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
4
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
5 # Tests for nginx realip module.
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
6
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
7 ###############################################################################
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
8
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
9 use warnings;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
10 use strict;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
11
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
12 use Test::More;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
13
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
14 BEGIN { use FindBin; chdir($FindBin::Bin); }
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
15
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
16 use lib 'lib';
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
17 use Test::Nginx;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
18
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
19 ###############################################################################
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
20
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
21 select STDERR; $| = 1;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
22 select STDOUT; $| = 1;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
23
217
ea574aae77cb Tests: unbreak geo and realip tests in jails.
Maxim Dounin <mdounin@mdounin.ru>
parents: 216
diff changeset
24 my $t = Test::Nginx->new()->has(qw/http realip/);
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
25
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
26 $t->write_file_expand('nginx.conf', <<'EOF');
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
27
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
28 %%TEST_GLOBALS%%
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
29
249
6a0d934950bc Tests: remove extra spaces in "daemon off".
Maxim Dounin <mdounin@mdounin.ru>
parents: 247
diff changeset
30 daemon off;
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
31
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
32 events {
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
33 }
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
34
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
35 http {
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
36 %%TEST_GLOBALS_HTTP%%
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
37
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
38 add_header X-IP $remote_addr;
717
3b6ff3b7367d Tests: fixed multiple header field values representation in h2.t.
Sergey Kandaurov <pluknet@nginx.com>
parents: 690
diff changeset
39 add_header X-Port $remote_port;
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
40 set_real_ip_from 127.0.0.1/32;
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
41 set_real_ip_from 10.0.1.0/24;
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
42
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
43 server {
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
44 listen 127.0.0.1:8080;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
45 server_name localhost;
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
46
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
47 location / { }
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
48 location /custom {
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
49 real_ip_header X-Real-IP-Custom;
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
50 }
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
51
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
52 location /1 {
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
53 real_ip_header X-Forwarded-For;
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
54 real_ip_recursive off;
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
55 }
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
56
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
57 location /2 {
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
58 real_ip_header X-Forwarded-For;
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
59 real_ip_recursive on;
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
60 }
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
61 }
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
62 }
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
63
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
64 EOF
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
65
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
66 $t->write_file('index.html', '');
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
67 $t->write_file('custom', '');
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
68 $t->write_file('1', '');
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
69 $t->write_file('2', '');
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
70 $t->run();
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
71
217
ea574aae77cb Tests: unbreak geo and realip tests in jails.
Maxim Dounin <mdounin@mdounin.ru>
parents: 216
diff changeset
72 plan(skip_all => 'no 127.0.0.1 on host')
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
73 if http_get('/') !~ /X-IP: 127.0.0.1/m;
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
74
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
75 $t->plan(7);
217
ea574aae77cb Tests: unbreak geo and realip tests in jails.
Maxim Dounin <mdounin@mdounin.ru>
parents: 216
diff changeset
76
ea574aae77cb Tests: unbreak geo and realip tests in jails.
Maxim Dounin <mdounin@mdounin.ru>
parents: 216
diff changeset
77 ###############################################################################
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
78
690
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
79 like(http(<<EOF), qr/^X-IP: 192.0.2.1/m, 'realip');
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
80 GET / HTTP/1.0
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
81 Host: localhost
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
82 X-Real-IP: 192.0.2.1
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
83
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
84 EOF
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
85
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
86 like(http(<<EOF), qr/^X-IP: 192.0.2.1/m, 'realip custom');
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
87 GET /custom HTTP/1.0
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
88 Host: localhost
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
89 X-Real-IP-Custom: 192.0.2.1
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
90
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
91 EOF
a894f041244e Tests: corrected simple realip tests.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 590
diff changeset
92
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
93 like(http_xff('/1', '10.0.0.1, 192.0.2.1'), qr/^X-IP: 192.0.2.1/m,
590
dc2f8aac0553 Tests: whitespace fixes.
Andrey Zelenkov <zelenkov@nginx.com>
parents: 317
diff changeset
94 'realip multi');
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
95 like(http_xff('/1', '192.0.2.1, 10.0.1.1, 127.0.0.1'),
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
96 qr/^X-IP: 127.0.0.1/m, 'realip recursive off');
247
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
97 like(http_xff('/2', '10.0.1.1, 192.0.2.1, 127.0.0.1'),
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
98 qr/^X-IP: 192.0.2.1/m, 'realip recursive on');
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
99
247
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
100 like(http(<<EOF), qr/^X-IP: 10.0.1.1/m, 'realip multi xff recursive off');
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
101 GET /1 HTTP/1.0
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
102 Host: localhost
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
103 X-Forwarded-For: 192.0.2.1
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
104 X-Forwarded-For: 127.0.0.1, 10.0.1.1
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
105
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
106 EOF
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
107
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
108 like(http(<<EOF), qr/^X-IP: 192.0.2.1/m, 'realip multi xff recursive on');
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
109 GET /2 HTTP/1.0
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
110 Host: localhost
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
111 X-Forwarded-For: 10.0.1.1
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
112 X-Forwarded-For: 192.0.2.1
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
113 X-Forwarded-For: 127.0.0.1
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
114
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
115 EOF
bf6b05f03458 Tests: add realip tests for multiple X-Forwarded-For headers.
Andrei Belov <defan@nginx.com>
parents: 245
diff changeset
116
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
117 ###############################################################################
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
118
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
119 sub http_xff {
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
120 my ($uri, $xff) = @_;
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
121 return http(<<EOF);
245
7189255c1b91 Tests: added real_ip_recursive test.
Andrei Belov <defan@nginx.com>
parents: 217
diff changeset
122 GET $uri HTTP/1.0
216
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
123 Host: localhost
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
124 X-Forwarded-For: $xff
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
125
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
126 EOF
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
127 }
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
128
f2f37a52e42e Tests: basic tests for geo and realip modules.
Maxim Dounin <mdounin@mdounin.ru>
parents:
diff changeset
129 ###############################################################################