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
|
# vim:set ft= ts=4 sw=4 et fdm=marker:
BEGIN {
if (!defined $ENV{LD_PRELOAD}) {
$ENV{LD_PRELOAD} = '';
}
if ($ENV{LD_PRELOAD} !~ /\bmockeagain\.so\b/) {
$ENV{LD_PRELOAD} = "mockeagain.so $ENV{LD_PRELOAD}";
}
if ($ENV{MOCKEAGAIN} eq 'r') {
$ENV{MOCKEAGAIN} = 'rw';
} else {
$ENV{MOCKEAGAIN} = 'w';
}
$ENV{TEST_NGINX_EVENT_TYPE} = 'poll';
$ENV{MOCKEAGAIN_WRITE_TIMEOUT_PATTERN} = 'hello, world';
$ENV{TEST_NGINX_POSTPONE_OUTPUT} = 1;
}
use Test::Nginx::Socket::Lua;
use t::StapThread;
our $GCScript = $t::StapThread::GCScript;
our $StapScript = $t::StapThread::StapScript;
#worker_connections(1014);
#master_on();
#workers(2);
#log_level('warn');
repeat_each(2);
plan tests => repeat_each() * 17;
#no_diff();
no_long_string();
run_tests();
__DATA__
=== TEST 1: flush wait - timeout
--- config
send_timeout 100ms;
location /test {
content_by_lua '
ngx.say("hello, world")
ngx.flush(true)
ngx.say("hiya")
';
}
--- request
GET /test
--- ignore_response
--- error_log eval
qr/client timed out \(\d+: .*?timed out\)/
--- no_error_log
[error]
=== TEST 2: send timeout timer got removed in time
--- config
send_timeout 1234ms;
location /test {
content_by_lua '
ngx.say(string.rep("blah blah blah", 10))
-- ngx.flush(true)
ngx.eof()
for i = 1, 20 do
ngx.sleep(0.1)
end
';
}
--- request
GET /test
--- stap
global evtime
F(ngx_http_handler) {
delete evtime
}
M(timer-add) {
if ($arg2 == 1234) {
printf("add timer %d\n", $arg2)
evtime[$arg1] = $arg2
}
}
M(timer-del) {
time = evtime[$arg1]
if (time == 1234) {
printf("del timer %d\n", time)
}
}
M(timer-expire) {
time = evtime[$arg1]
if (time == 1234) {
printf("expire timer %d\n", time)
#print_ubacktrace()
}
}
/*
probe syscall.writev.return {
if (pid() == target()) {
printf("writev: %s\n", retstr)
}
}
*/
--- stap_out
add timer 1234
del timer 1234
--- ignore_response
--- no_error_log
[error]
--- timeout: 3
=== TEST 3: exit in user thread (entry thread is still pending on ngx.flush)
--- config
send_timeout 200ms;
location /lua {
content_by_lua '
function f()
ngx.say("hello in thread")
ngx.sleep(0.1)
ngx.exit(0)
end
ngx.say("before")
ngx.thread.spawn(f)
ngx.say("after")
ngx.say("hello, world!")
ngx.flush(true)
ngx.say("end")
';
}
--- request
GET /lua
--- stap2 eval: $::StapScript
--- stap eval
<<'_EOC_' . $::GCScript;
global timers
F(ngx_http_free_request) {
println("free request")
}
M(timer-add) {
if ($arg2 == 200 || $arg2 == 100) {
timers[$arg1] = $arg2
printf("add timer %d\n", $arg2)
}
}
M(timer-del) {
tm = timers[$arg1]
if (tm == 200 || tm == 100) {
printf("delete timer %d\n", tm)
delete timers[$arg1]
}
}
M(timer-expire) {
tm = timers[$arg1]
if (tm == 200 || tm == 100) {
printf("expire timer %d\n", timers[$arg1])
delete timers[$arg1]
}
}
F(ngx_http_lua_coctx_cleanup) {
println("lua tcp socket cleanup")
}
/*
F(ngx_http_finalize_request) {
printf("finalize request: c:%d, a:%d, cb:%d, rb:%d\n", $r->main->count,
$r == $r->connection->data, $r->connection->buffered, $r->buffered)
}
F(ngx_http_set_write_handler) {
println("set write handler")
}
*/
F(ngx_http_lua_flush_cleanup) {
println("lua flush cleanup")
}
_EOC_
--- stap_out
create 2 in 1
spawn user thread 2 in 1
add timer 100
add timer 200
expire timer 100
terminate 2: ok
delete thread 2
lua flush cleanup
delete timer 200
delete thread 1
add timer 200
expire timer 200
free request
--- ignore_response
--- no_error_log
[error]
=== TEST 4: flush wait - return "timeout" error
--- config
send_timeout 100ms;
location /test {
content_by_lua '
ngx.say("hello, world")
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "failed to flush: ", err)
return
end
ngx.say("hiya")
';
}
--- request
GET /test
--- ignore_response
--- error_log eval
[
qr/client timed out \(\d+: .*?timed out\)/,
'failed to flush: timeout',
]
--- no_error_log
[alert]
=== TEST 5: flush wait in multiple user threads - return "timeout" error
--- config
send_timeout 100ms;
location /test {
content_by_lua '
ngx.say("hello, world")
local function run(tag)
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "thread ", tag, ": failed to flush: ", err)
return
end
ngx.say("hiya")
end
local function new_thread(tag)
local ok, err = ngx.thread.spawn(run, tag)
if not ok then
return error("failed to spawn thread: ", err)
end
end
new_thread("A")
new_thread("B")
run("main")
';
}
--- request
GET /test
--- ignore_response
--- error_log eval
[
qr/client timed out \(\d+: .*?timed out\)/,
'thread main: failed to flush: timeout',
'thread A: failed to flush: timeout',
'thread B: failed to flush: timeout',
]
--- no_error_log
[alert]
=== TEST 6: flush wait - client abort connection prematurely
--- config
#send_timeout 100ms;
location /test {
limit_rate 2;
content_by_lua '
ngx.say("hello, lua")
local ok, err = ngx.flush(true)
if not ok then
ngx.log(ngx.ERR, "failed to flush: ", err)
return
end
ngx.say("hiya")
';
}
--- request
GET /test
--- ignore_response
--- error_log eval
[
qr/writev\(\) failed .*? Broken pipe/i,
qr/failed to flush: client aborted/,
]
--- no_error_log
[alert]
--- timeout: 0.2
--- abort
--- wait: 1
|