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
|
# vi:ft=
our $SkipReason;
BEGIN {
if ($ENV{TEST_NGINX_USE_HUP}) {
$SkipReason = "unavailable under hup test mode";
} elsif ($ENV{TEST_NGINX_CHECK_LEAK}) {
$SkipReason = "unavailable under check leak test mode";
}
}
use Test::Nginx::Socket::Lua $SkipReason ? (skip_all => $SkipReason) : ();
plan tests => 2 * blocks();
no_long_string();
run_tests();
__DATA__
=== TEST 1: SIGHUP followed by SIGQUIT
--- config
location = /t {
content_by_lua_block {
local pid = ngx.worker.pid()
os.execute("kill -HUP " .. pid)
ngx.sleep(0.01)
os.execute("kill -QUIT " .. pid)
}
}
--- request
GET /t
--- ignore_response
--- wait: 0.1
--- error_log eval
qr/\[notice\] \d+#\d+: exit$/
--- no_error_log eval
qr/\[notice\] \d+#\d+: reconfiguring/
--- curl_error eval
qr/curl: \(28\) Operation timed out after \d+ milliseconds with 0 bytes received|curl: \(56\) Recv failure: Connection reset by peer|curl: \(56\) Failure when receiving data from the peer|curl: \(55\) sendmsg\(\) returned -1 \(errno 111\)/
=== TEST 2: exit after receiving SIGHUP in single process mode
--- config
location = /t {
content_by_lua_block {
local pid = ngx.worker.pid()
os.execute("kill -HUP " .. pid)
}
}
--- request
GET /t
--- ignore_response
--- wait: 0.1
--- error_log eval
qr/\[notice\] \d+#\d+: exit$/
--- no_error_log eval
qr/\[notice\] \d+#\d+: reconfiguring/
|