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
|
# vim:set ft= ts=4 sw=4 et fdm=marker:
BEGIN {
undef $ENV{TEST_NGINX_USE_STAP};
}
use lib '.';
use t::TestCore;
$ENV{TEST_NGINX_RANDOM_PORT} = Test::Nginx::Util::server_port();
#worker_connections(1014);
master_process_enabled(1);
#log_level('error');
repeat_each(2);
plan tests => repeat_each() * (blocks() * 5 - 5);
add_block_preprocessor(sub {
my $block = shift;
my $http_config = $block->http_config || '';
my $init_by_lua_block = $block->init_by_lua_block || '';
$http_config .= <<_EOC_;
lua_package_path '$t::TestCore::lua_package_path';
init_by_lua_block {
$t::TestCore::init_by_lua_block
local process = require "ngx.process"
local ok, err = process.enable_privileged_agent(8)
if not ok then
ngx.log(ngx.ERR, "enable_privileged_agent failed: ", err)
end
}
init_worker_by_lua_block {
local base = require "resty.core.base"
local v
local typ = (require "ngx.process").type
for i = 1, 400 do
v = typ()
end
if v == "privileged agent" then
ngx.log(ngx.WARN, "process type: ", v)
ngx.timer.at(0, function()
for i = 1, 4 do
local tcpsock = ngx.socket.tcp()
local ok, err = tcpsock:connect("127.0.0.1", $ENV{TEST_NGINX_RANDOM_PORT})
if ok then
ngx.log(ngx.INFO, "connect ok ")
else
ngx.log(ngx.INFO, "connect not ok " .. tostring(err))
end
end
end)
end
}
_EOC_
$block->set_value("http_config", $http_config);
});
#no_diff();
#no_long_string();
check_accum_error_log();
run_tests();
__DATA__
=== TEST 1: sanity
--- config
location = /t {
content_by_lua_block {
ngx.sleep(0.1)
local v
local typ = require "ngx.process".type
for i = 1, 200 do
v = typ()
end
ngx.say("type: ", v)
}
}
--- request
GET /t
--- response_body
type: worker
--- grep_error_log eval
qr/\[TRACE\s+\d+ init_worker_by_lua\(nginx.conf:\d+\):\d+ loop\]|\[TRACE\s+\d+ content_by_lua\(nginx\.conf:\d+\):\d+ loop\]|init_worker_by_lua\(nginx.conf:\d+\):\d+: process type: \w+/
--- grep_error_log_out eval
[
qr/\[TRACE\s+\d+ init_worker_by_lua\(nginx.conf:\d+\):\d+ loop\]
(?:\[TRACE\s+\d+ init_worker_by_lua\(nginx.conf:\d+\):\d+ loop\]
)?\[TRACE\s+\d+ content_by_lua\(nginx.conf:\d+\):\d+ loop\]
init_worker_by_lua\(nginx.conf:\d+\):10: process type: privileged
/,
qr/\[TRACE\s+\d+ init_worker_by_lua\(nginx.conf:\d+\):\d+ loop\]
(?:\[TRACE\s+\d+ init_worker_by_lua\(nginx.conf:\d+\):\d+ loop\]
)?\[TRACE\s+\d+ content_by_lua\(nginx.conf:\d+\):\d+ loop\]
init_worker_by_lua\(nginx.conf:\d+\):10: process type: privileged
/
]
--- no_error_log
[error]
-- NYI:
--- skip_nginx: 5: < 1.11.2
--- wait: 0.2
=== TEST 2: `enable_privileged_agent` disabled
--- config
location = /t {
content_by_lua_block {
local process = require "ngx.process"
local ok, err = process.enable_privileged_agent()
if not ok then
error(err)
end
}
}
--- request
GET /t
--- response_body_like: 500 Internal Server Error
--- error_code: 500
--- error_log eval
qr/\[error\] .*? API disabled in the current context/
--- skip_nginx: 3: < 1.11.2
=== TEST 3: `enable_privileged_agent` not patched
--- config
location = /t {
content_by_lua_block {
local process = require "ngx.process"
local ok, err = process.enable_privileged_agent()
if not ok then
error(err)
end
}
}
--- request
GET /t
--- response_body_like: 500 Internal Server Error
--- error_code: 500
--- error_log
missing privileged agent process patch in the nginx core
API disabled in the current context
--- skip_nginx: 4: >= 1.11.2
=== TEST 4: connections exceed limits
--- config
location = /t {
content_by_lua_block {
local process = require "ngx.process"
local ok, err = process.enable_privileged_agent()
if not ok then
error(err)
end
}
}
--- request
GET /t
--- response_body_like: 500 Internal Server Error
--- error_code: 500
--- error_log
worker_connections are not enough
--- skip_nginx: 3: < 1.11.2
|