forked from openresty/lua-nginx-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path056-flush.t
522 lines (449 loc) · 10.5 KB
/
056-flush.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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
# vim:set ft= ts=4 sw=4 et fdm=marker:
BEGIN {
$ENV{TEST_NGINX_POSTPONE_OUTPUT} = 1;
}
use Test::Nginx::Socket::Lua;
#worker_connections(1014);
#master_on();
#workers(2);
#log_level('warn');
repeat_each(2);
plan tests => repeat_each() * 60;
#no_diff();
no_long_string();
run_tests();
__DATA__
=== TEST 1: flush wait - content
--- config
location /test {
content_by_lua '
ngx.say("hello, world")
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "flush failed: ", err)
return
end
ngx.say("hiya")
';
}
--- request
GET /test
--- response_body
hello, world
hiya
--- no_error_log
[error]
--- error_log
lua reuse free buf chain, but reallocate memory because 5 >= 0
=== TEST 2: flush no wait - content
--- config
send_timeout 500ms;
location /test {
content_by_lua '
ngx.say("hello, world")
local ok, err = ngx.flush(false)
if not ok then
ngx.log(ngx.ERR, "flush failed: ", err)
return
end
ngx.say("hiya")
';
}
--- request
GET /test
--- response_body
hello, world
hiya
=== TEST 3: flush wait - rewrite
--- config
location /test {
rewrite_by_lua '
ngx.say("hello, world")
ngx.flush(true)
ngx.say("hiya")
';
content_by_lua return;
}
--- request
GET /test
--- response_body
hello, world
hiya
=== TEST 4: flush no wait - rewrite
--- config
location /test {
rewrite_by_lua '
ngx.say("hello, world")
ngx.flush(false)
ngx.say("hiya")
';
content_by_lua return;
}
--- request
GET /test
--- response_body
hello, world
hiya
=== TEST 5: http 1.0 (sync)
--- config
location /test {
content_by_lua '
ngx.say("hello, world")
ngx.flush(true)
ngx.say("hiya")
ngx.flush(true)
ngx.say("blah")
';
}
--- request
GET /test HTTP/1.0
--- response_body
hello, world
hiya
blah
--- response_headers
Content-Length: 23
--- timeout: 5
--- error_log
lua buffering output bufs for the HTTP 1.0 request
lua http 1.0 buffering makes ngx.flush() a no-op
=== TEST 6: http 1.0 (async)
--- config
location /test {
content_by_lua '
ngx.say("hello, world")
local ok, err = ngx.flush(false)
if not ok then
ngx.log(ngx.WARN, "1: failed to flush: ", err)
end
ngx.say("hiya")
local ok, err = ngx.flush(false)
if not ok then
ngx.log(ngx.WARN, "2: failed to flush: ", err)
end
ngx.say("blah")
';
}
--- request
GET /test HTTP/1.0
--- response_body
hello, world
hiya
blah
--- response_headers
Content-Length: 23
--- error_log
lua buffering output bufs for the HTTP 1.0 request
lua http 1.0 buffering makes ngx.flush() a no-op
1: failed to flush: buffering
2: failed to flush: buffering
--- timeout: 5
=== TEST 7: flush wait - big data
--- config
location /test {
content_by_lua '
ngx.say(string.rep("a", 1024 * 64))
ngx.flush(true)
ngx.say("hiya")
';
}
--- request
GET /test
--- response_body
hello, world
hiya
--- SKIP
=== TEST 8: flush wait - content
--- config
location /test {
content_by_lua '
ngx.say("hello, world")
ngx.flush(true)
local res = ngx.location.capture("/sub")
ngx.print(res.body)
ngx.flush(true)
';
}
location /sub {
echo sub;
}
--- request
GET /test
--- response_body
hello, world
sub
=== TEST 9: http 1.0 (sync + buffering off)
--- config
lua_http10_buffering off;
location /test {
content_by_lua '
ngx.say("hello, world")
ngx.flush(true)
ngx.say("hiya")
ngx.flush(true)
ngx.say("blah")
';
}
--- request
GET /test HTTP/1.0
--- response_body
hello, world
hiya
blah
--- response_headers
!Content-Length
--- timeout: 5
--- no_error_log
lua buffering output bufs for the HTTP 1.0 request
lua http 1.0 buffering makes ngx.flush() a no-op
=== TEST 10: http 1.0 (async)
--- config
lua_http10_buffering on;
location /test {
lua_http10_buffering off;
content_by_lua '
ngx.say("hello, world")
ngx.flush(false)
ngx.say("hiya")
ngx.flush(false)
ngx.say("blah")
';
}
--- request
GET /test HTTP/1.0
--- response_body
hello, world
hiya
blah
--- response_headers
!Content-Length
--- no_error_log
lua buffering output bufs for the HTTP 1.0 request
lua http 1.0 buffering makes ngx.flush() a no-op
--- timeout: 5
=== TEST 11: http 1.0 (sync) - buffering explicitly off
--- config
location /test {
lua_http10_buffering on;
content_by_lua '
ngx.say("hello, world")
ngx.flush(true)
ngx.say("hiya")
ngx.flush(true)
ngx.say("blah")
';
}
--- request
GET /test HTTP/1.0
--- response_body
hello, world
hiya
blah
--- response_headers
Content-Length: 23
--- timeout: 5
--- error_log
lua buffering output bufs for the HTTP 1.0 request
lua http 1.0 buffering makes ngx.flush() a no-op
=== TEST 12: http 1.0 (async) - buffering explicitly off
--- config
location /test {
lua_http10_buffering on;
content_by_lua '
ngx.say("hello, world")
ngx.flush(false)
ngx.say("hiya")
ngx.flush(false)
ngx.say("blah")
';
}
--- request
GET /test HTTP/1.0
--- response_body
hello, world
hiya
blah
--- response_headers
Content-Length: 23
--- error_log
lua buffering output bufs for the HTTP 1.0 request
lua http 1.0 buffering makes ngx.flush() a no-op
--- timeout: 5
=== TEST 13: flush wait in a user coroutine
--- config
location /test {
content_by_lua '
local function f()
ngx.say("hello, world")
ngx.flush(true)
coroutine.yield()
ngx.say("hiya")
end
local c = coroutine.create(f)
ngx.say(coroutine.resume(c))
ngx.say(coroutine.resume(c))
';
}
--- request
GET /test
--- stap2
F(ngx_http_lua_wev_handler) {
printf("wev handler: wev:%d\n", $r->connection->write->ready)
}
global ids, cur
function gen_id(k) {
if (ids[k]) return ids[k]
ids[k] = ++cur
return cur
}
F(ngx_http_handler) {
delete ids
cur = 0
}
/*
F(ngx_http_lua_run_thread) {
id = gen_id($ctx->cur_co)
printf("run thread %d\n", id)
}
probe process("/usr/local/openresty-debug/luajit/lib/libluajit-5.1.so.2").function("lua_resume") {
id = gen_id($L)
printf("lua resume %d\n", id)
}
*/
M(http-lua-user-coroutine-resume) {
p = gen_id($arg2)
c = gen_id($arg3)
printf("resume %x in %x\n", c, p)
}
M(http-lua-entry-coroutine-yield) {
println("entry coroutine yield")
}
/*
F(ngx_http_lua_coroutine_yield) {
printf("yield %x\n", gen_id($L))
}
*/
M(http-lua-user-coroutine-yield) {
p = gen_id($arg2)
c = gen_id($arg3)
printf("yield %x in %x\n", c, p)
}
F(ngx_http_lua_atpanic) {
printf("lua atpanic(%d):", gen_id($L))
print_ubacktrace();
}
M(http-lua-user-coroutine-create) {
p = gen_id($arg2)
c = gen_id($arg3)
printf("create %x in %x\n", c, p)
}
F(ngx_http_lua_ngx_exec) { println("exec") }
F(ngx_http_lua_ngx_exit) { println("exit") }
F(ngx_http_writer) { println("http writer") }
--- response_body
hello, world
true
hiya
true
--- error_log
lua reuse free buf memory 13 >= 5
=== TEST 14: flush before sending out the header
--- config
location /test {
content_by_lua '
ngx.flush()
ngx.status = 404
ngx.say("not found")
';
}
--- request
GET /test
--- response_body
not found
--- error_code: 404
--- no_error_log
[error]
=== TEST 15: flush wait - gzip
--- config
gzip on;
gzip_min_length 1;
gzip_types text/plain;
location /test {
content_by_lua '
ngx.say("hello, world")
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "flush failed: ", err)
return
end
ngx.say("hiya")
';
}
--- request
GET /test
--- more_headers
Accept-Encoding: gzip
--- response_body_like: .{15}
--- response_headers
Content-Encoding: gzip
--- no_error_log
[error]
=== TEST 16: flush wait - gunzip
--- config
location /test {
gunzip on;
content_by_lua '
local f, err = io.open(ngx.var.document_root .. "/gzip.bin", "r")
if not f then
ngx.say("failed to open file: ", err)
return
end
local data = f:read(100)
ngx.header.content_encoding = "gzip"
ngx.print(data)
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "flush failed: ", err)
return
end
data = f:read("*a")
ngx.print(data)
';
}
--- user_files eval
">>> gzip.bin
\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03\x62\x64\x62\x62\x61\x62\x64\x63\x61\xe4\xe0\xe2\xe6\xe4\x61\xe4\xe4\xe7\x63\x12\xe4\xe1\xe0\x60\x14\x12\xe3\x91\xe4\xe4\xe4\x13\x60\xe3\x95\x12\x90\x15\xe0\x11\x50\x92\xd1\x16\x17\xe2\xd3\x17\x14\x11\x95\x95\x57\x96\x63\x37\xd2\x36\xd6\x51\x34\xb1\xe6\x62\x17\x95\xb0\x77\x60\xe3\x96\x33\x95\xb6\x91\x75\x97\x30\xe4\x66\x0c\xd0\xe3\xe0\xb5\xd3\x33\xf6\x90\x16\xb2\x90\x77\x56\x31\xe7\x55\x32\x11\x74\xe0\x02\x00\x00\x00\xff\xff\xcb\xc8\xac\x4c\xe4\x02\x00\x19\x15\xa9\x77\x6a\x00\x00\x00"
--- request
GET /test
--- ignore_response
--- no_error_log
[error]
=== TEST 17: limit_rate
--- config
location /test {
limit_rate 150;
content_by_lua '
local begin = ngx.now()
for i = 1, 2 do
ngx.print(string.rep("a", 100))
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "failed to flush: ", err)
end
end
local elapsed = ngx.now() - begin
ngx.log(ngx.WARN, "lua writes elapsed ", elapsed, " sec")
';
}
--- request
GET /test
--- response_body eval
"a" x 200
--- error_log eval
[
qr/lua writes elapsed [12](?:\.\d+)? sec/,
qr/lua flush requires waiting: buffered 0x[0-9a-f]+, delayed:1/,
]
--- no_error_log
[error]
--- timeout: 4