-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbody_chunked.t
More file actions
286 lines (229 loc) · 6.88 KB
/
body_chunked.t
File metadata and controls
286 lines (229 loc) · 6.88 KB
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
#!/usr/bin/perl
# (C) Maxim Dounin
# Tests for nginx request body reading, with chunked transfer-coding.
###############################################################################
use warnings;
use strict;
use Test::More;
use Socket qw/ CRLF /;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/http proxy rewrite/)->plan(24);
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
upstream u {
server 127.0.0.1:8082;
server 127.0.0.1:8080 backup;
}
server {
listen 127.0.0.1:8080;
server_name localhost;
client_header_buffer_size 1k;
location / {
client_body_buffer_size 2k;
add_header X-Body "$request_body";
add_header X-Body-File "$request_body_file";
proxy_pass http://127.0.0.1:8081;
}
location /b {
client_body_buffer_size 2k;
client_body_in_file_only on;
add_header X-Body "$request_body";
add_header X-Body-File "$request_body_file";
proxy_pass http://127.0.0.1:8081;
}
location /single {
client_body_in_single_buffer on;
add_header X-Body "$request_body";
add_header X-Body-File "$request_body_file";
proxy_pass http://127.0.0.1:8081;
}
location /large {
client_max_body_size 1k;
client_body_buffer_size 2k;
proxy_pass http://127.0.0.1:8081;
}
location /discard {
return 200 "TEST\n";
}
location /next {
proxy_pass http://u/;
}
}
server {
listen 127.0.0.1:8081;
server_name localhost;
location / {
return 200 "TEST\n";
}
}
server {
listen 127.0.0.1:8082;
server_name localhost;
location / {
return 444;
}
}
}
EOF
$t->run();
###############################################################################
like(http_get_body('/', '0123456789'),
qr/X-Body: 0123456789\x0d?$/ms, 'body');
like(http_get_body('/', '0123456789' x 128),
qr/X-Body: (0123456789){128}\x0d?$/ms, 'body in two buffers');
like(http_get_body('/', '0123456789' x 512),
qr/X-Body-File/ms, 'body in file');
like(read_body_file(http_get_body('/b', '0123456789' x 512)),
qr/^(0123456789){512}$/s, 'body in file only');
like(http_get_body('/single', '0123456789' x 128),
qr/X-Body: (0123456789){128}\x0d?$/ms, 'body in single buffer');
like(http_get_body('/large', '0123456789' x 128), qr/ 413 /, 'body too large');
like(http_get_body('/large', 'X' x 1024), qr/ 200 /, 'body exact limit');
like(http_get_body('/large', 'X' x 1025), qr/ 413 /, 'body just above limit');
# pipelined requests
like(http_get_body('/', '0123456789', '0123456789' x 128, '0123456789' x 512,
'foobar'), qr/X-Body: foobar\x0d?$/ms, 'chunked body pipelined');
like(http_get_body('/', '0123456789' x 128, '0123456789' x 512, '0123456789',
'foobar'), qr/X-Body: foobar\x0d?$/ms, 'chunked body pipelined 2');
like(http_get_body('/discard', '0123456789', '0123456789' x 128,
'0123456789' x 512, 'foobar'), qr/(TEST.*){4}/ms,
'chunked body discard');
like(http_get_body('/discard', '0123456789' x 128, '0123456789' x 512,
'0123456789', 'foobar'), qr/(TEST.*){4}/ms,
'chunked body discard 2');
# invalid chunks
like(
http(
'GET / HTTP/1.1' . CRLF
. 'Host: localhost' . CRLF
. 'Connection: close' . CRLF
. 'Transfer-Encoding: chunked' . CRLF . CRLF
. '4' . CRLF
. 'SEE-THIS' . CRLF
. '0' . CRLF . CRLF
),
qr/400 Bad/, 'runaway chunk'
);
like(
http(
'GET /discard HTTP/1.1' . CRLF
. 'Host: localhost' . CRLF
. 'Connection: close' . CRLF
. 'Transfer-Encoding: chunked' . CRLF . CRLF
. '4' . CRLF
. 'SEE-THIS' . CRLF
. '0' . CRLF . CRLF
),
qr/400 Bad/, 'runaway chunk discard'
);
# chunk extensions and trailers
like(
http(
'GET /large HTTP/1.1' . CRLF
. 'Host: localhost' . CRLF
. 'Connection: close' . CRLF
. 'Transfer-Encoding: chunked' . CRLF . CRLF
. ('1; foo' . CRLF . 'X' . CRLF) x 16
. '0' . CRLF . CRLF
),
qr/ 200 /, 'chunk extensions'
);
like(
http(
'GET /large HTTP/1.1' . CRLF
. 'Host: localhost' . CRLF
. 'Connection: close' . CRLF
. 'Transfer-Encoding: chunked' . CRLF . CRLF
. ('1; foo' . CRLF . 'X' . CRLF) x 512
. '0' . CRLF . CRLF
),
qr/ 413 /, 'too many chunk extensions'
);
like(
http(
'GET /large HTTP/1.1' . CRLF
. 'Host: localhost' . CRLF
. 'Connection: close' . CRLF
. 'Transfer-Encoding: chunked' . CRLF . CRLF
. '1' . CRLF . 'X' . CRLF
. '0' . CRLF . ('X-Trailer: foo' . CRLF) x 16 . CRLF
),
qr/ 200 /, 'trailers'
);
like(
http(
'GET /large HTTP/1.1' . CRLF
. 'Host: localhost' . CRLF
. 'Connection: close' . CRLF
. 'Transfer-Encoding: chunked' . CRLF . CRLF
. '1' . CRLF . 'X' . CRLF
. '0' . CRLF . ('X-Trailer: foo' . CRLF) x 512 . CRLF
),
qr/ 413 /, 'too many trailers'
);
# proxy_next_upstream
like(http_get_body('/next', '0123456789'),
qr/X-Body: 0123456789\x0d?$/ms, 'body chunked next upstream');
# invalid Transfer-Encoding
like(http_transfer_encoding('identity'), qr/501 Not Implemented/,
'transfer encoding identity');
like(http_transfer_encoding("chunked\nTransfer-Encoding: chunked"),
qr/400 Bad/, 'transfer encoding repeat');
like(http_transfer_encoding('chunked, identity'), qr/501 Not Implemented/,
'transfer encoding list');
like(http_transfer_encoding("chunked\nContent-Length: 5"), qr/400 Bad/,
'transfer encoding with content-length');
like(http_transfer_encoding("chunked", "1.0"), qr/400 Bad/,
'transfer encoding in HTTP/1.0 requests');
###############################################################################
sub read_body_file {
my ($r) = @_;
return '' unless $r =~ m/X-Body-File: (.*)/;
open FILE, $1
or return "$!";
local $/;
my $content = <FILE>;
close FILE;
return $content;
}
sub http_get_body {
my $uri = shift;
my $last = pop;
return http( join '', (map {
my $body = $_;
"GET $uri HTTP/1.1" . CRLF
. "Host: localhost" . CRLF
. "Transfer-Encoding: chunked" . CRLF . CRLF
. sprintf("%x", length $body) . CRLF
. $body . CRLF
. "0" . CRLF . CRLF
} @_),
"GET $uri HTTP/1.1" . CRLF
. "Host: localhost" . CRLF
. "Connection: close" . CRLF
. "Transfer-Encoding: chunked" . CRLF . CRLF
. sprintf("%x", length $last) . CRLF
. $last . CRLF
. "0" . CRLF . CRLF
);
}
sub http_transfer_encoding {
my ($encoding, $version) = @_;
$version ||= "1.1";
http("GET / HTTP/$version" . CRLF
. "Host: localhost" . CRLF
. "Connection: close" . CRLF
. "Transfer-Encoding: $encoding" . CRLF . CRLF
. "0" . CRLF . CRLF);
}
###############################################################################