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 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
|
# vim:set ft= ts=4 sw=4 et fdm=marker:
use Test::Nginx::Socket::Lua;
#worker_connections(1014);
master_on();
#workers(2);
#log_level('warn');
repeat_each(1);
plan tests => repeat_each() * (blocks() * 4 + 4);
$ENV{TEST_NGINX_MEMCACHED_PORT} ||= 11211;
$ENV{TEST_NGINX_RESOLVER} ||= '8.8.8.8';
our $ServerRoot = server_root();
#no_diff();
no_long_string();
run_tests();
__DATA__
=== TEST 1: set a global lua var
--- http_config
init_worker_by_lua '
foo = ngx.md5("hello world")
';
--- config
location /t {
content_by_lua '
ngx.say("foo = ", foo)
';
}
--- request
GET /t
--- response_body
foo = 5eb63bbbe01eeed093cb22bb8f5acdc3
--- no_error_log
[error]
=== TEST 2: no ngx.say()
--- http_config
init_worker_by_lua '
ngx.say("hello")
';
--- config
location /t {
content_by_lua '
ngx.say("foo = ", foo)
';
}
--- request
GET /t
--- response_body
foo = nil
--- error_log
API disabled in the context of init_worker_by_lua*
=== TEST 3: timer.at
--- http_config
init_worker_by_lua '
_G.my_counter = 0
local function warn(...)
ngx.log(ngx.WARN, ...)
end
local function handler(premature)
warn("timer expired (premature: ", premature, "; counter: ",
_G.my_counter, ")")
_G.my_counter = _G.my_counter + 1
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
ngx.log(ngx.ERR, "failed to create timer: ", err)
end
warn("created timer: ", ok)
';
--- config
location /t {
content_by_lua '
-- ngx.sleep(0.001)
ngx.say("my_counter = ", _G.my_counter)
_G.my_counter = _G.my_counter + 1
';
}
--- request
GET /t
--- response_body
my_counter = 1
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): created timer: 1
warn(): timer expired (premature: false; counter: 0)
--- no_error_log
[error]
=== TEST 4: timer.at + cosocket
--- http_config
init_worker_by_lua '
_G.done = false
local function warn(...)
ngx.log(ngx.WARN, ...)
end
local function error(...)
ngx.log(ngx.ERR, ...)
end
local function handler(premature)
warn("timer expired (premature: ", premature, ")")
local sock = ngx.socket.tcp()
local ok, err = sock:connect("127.0.0.1", $TEST_NGINX_MEMCACHED_PORT)
if not ok then
error("failed to connect: ", err)
_G.done = true
return
end
local req = "flush_all\\r\\n"
local bytes, err = sock:send(req)
if not bytes then
error("failed to send request: ", err)
_G.done = true
return
end
warn("request sent: ", bytes)
local line, err, part = sock:receive()
if line then
warn("received: ", line)
else
error("failed to receive a line: ", err, " [", part, "]")
end
_G.done = true
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
error("failed to create timer: ", err)
end
warn("created timer: ", ok)
';
--- config
location = /t {
content_by_lua '
local waited = 0
local sleep = ngx.sleep
while not _G.done do
local delay = 0.001
sleep(delay)
waited = waited + delay
if waited > 1 then
ngx.say("timed out")
return
end
end
ngx.say("ok")
';
}
--- request
GET /t
--- response_body
ok
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): created timer: 1
warn(): timer expired (premature: false)
warn(): request sent: 11
warn(): received: OK
--- log_level: debug
--- error_log
lua tcp socket connect timeout: 60000
lua tcp socket send timeout: 60000
lua tcp socket read timeout: 60000
--- no_error_log
[error]
=== TEST 5: init_worker_by_lua_file (simple global var)
--- http_config
init_worker_by_lua_file html/foo.lua;
--- config
location /t {
content_by_lua '
ngx.say("foo = ", foo)
';
}
--- user_files
>>> foo.lua
foo = ngx.md5("hello world")
--- request
GET /t
--- response_body
foo = 5eb63bbbe01eeed093cb22bb8f5acdc3
--- no_error_log
[error]
=== TEST 6: timer.at + cosocket (by_lua_file)
--- main_config
env TEST_NGINX_MEMCACHED_PORT;
--- http_config
init_worker_by_lua_file html/foo.lua;
--- user_files
>>> foo.lua
_G.done = false
local function warn(...)
ngx.log(ngx.WARN, ...)
end
local function error(...)
ngx.log(ngx.ERR, ...)
end
local function handler(premature)
warn("timer expired (premature: ", premature, ")")
local sock = ngx.socket.tcp()
local ok, err = sock:connect("127.0.0.1",
os.getenv("TEST_NGINX_MEMCACHED_PORT"))
if not ok then
error("failed to connect: ", err)
_G.done = true
return
end
local req = "flush_all\r\n"
local bytes, err = sock:send(req)
if not bytes then
error("failed to send request: ", err)
_G.done = true
return
end
warn("request sent: ", bytes)
local line, err, part = sock:receive()
if line then
warn("received: ", line)
else
error("failed to receive a line: ", err, " [", part, "]")
end
_G.done = true
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
error("failed to create timer: ", err)
end
warn("created timer: ", ok)
--- config
location = /t {
content_by_lua '
local waited = 0
local sleep = ngx.sleep
while not _G.done do
local delay = 0.001
sleep(delay)
waited = waited + delay
if waited > 1 then
ngx.say("timed out")
return
end
end
ngx.say("ok")
';
}
--- request
GET /t
--- response_body
ok
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): created timer: 1
warn(): timer expired (premature: false)
warn(): request sent: 11
warn(): received: OK
--- log_level: debug
--- error_log
lua tcp socket connect timeout: 60000
lua tcp socket send timeout: 60000
lua tcp socket read timeout: 60000
--- no_error_log
[error]
=== TEST 7: ngx.ctx
--- http_config
init_worker_by_lua '
ngx.ctx.foo = "hello world"
local function warn(...)
ngx.log(ngx.WARN, ...)
end
warn("foo = ", ngx.ctx.foo)
';
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): foo = hello world
--- no_error_log
[error]
=== TEST 8: print
--- http_config
init_worker_by_lua '
print("md5 = ", ngx.md5("hello world"))
';
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- no_error_log
[error]
--- error_log
md5 = 5eb63bbbe01eeed093cb22bb8f5acdc3
=== TEST 9: unescape_uri
--- http_config
init_worker_by_lua '
local function warn(...)
ngx.log(ngx.WARN, ...)
end
warn(ngx.unescape_uri("hello%20world"))
';
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- no_error_log
[error]
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): hello world
=== TEST 10: escape_uri
--- http_config
init_worker_by_lua '
local function warn(...)
ngx.log(ngx.WARN, ...)
end
warn(ngx.escape_uri("hello world"))
';
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- no_error_log
[error]
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): hello%20world
=== TEST 11: ngx.re
--- http_config
init_worker_by_lua '
local function warn(...)
ngx.log(ngx.WARN, ...)
end
warn((ngx.re.sub("hello world", "world", "XXX", "jo")))
';
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- no_error_log
[error]
--- grep_error_log eval: qr/warn\(\): [^,]*/
--- grep_error_log_out
warn(): hello XXX
=== TEST 12: ngx.http_time
--- http_config
init_worker_by_lua '
local function warn(...)
ngx.log(ngx.WARN, ...)
end
warn(ngx.http_time(5678))
';
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- no_error_log
[error]
--- grep_error_log eval: qr/warn\(\): .*?(?=, context)/
--- grep_error_log_out
warn(): Thu, 01 Jan 1970 01:34:38 GMT
=== TEST 13: cosocket with resolver
--- timeout: 10
--- http_config
server_tokens off;
resolver $TEST_NGINX_RESOLVER ipv6=off;
resolver_timeout 3s;
init_worker_by_lua '
-- global
logs = ""
done = false
local function say(...)
logs = logs .. table.concat({...}) .. "\\n"
end
local function handler()
local sock = ngx.socket.tcp()
local port = 80
local ok, err = sock:connect("agentzh.org", port)
if not ok then
say("failed to connect: ", err)
done = true
return
end
say("connected: ", ok)
local req = "GET / HTTP/1.0\\r\\nHost: agentzh.org\\r\\nConnection: close\\r\\n\\r\\n"
-- req = "OK"
local bytes, err = sock:send(req)
if not bytes then
say("failed to send request: ", err)
done = true
return
end
say("request sent: ", bytes)
local line, err = sock:receive()
if line then
say("first line received: ", line)
else
say("failed to receive the first line: ", err)
end
line, err = sock:receive()
if line then
say("second line received: ", line)
else
say("failed to receive the second line: ", err)
end
done = true
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
say("failed to create timer: ", err)
else
say("timer created")
end
';
--- config
location = /t {
content_by_lua '
local i = 0
while not done and i < 3000 do
ngx.sleep(0.001)
i = i + 1
end
ngx.print(logs)
';
}
--- request
GET /t
--- response_body
timer created
connected: 1
request sent: 56
first line received: HTTP/1.1 200 OK
second line received: Server: openresty
--- no_error_log
[error]
--- timeout: 10
=== TEST 14: connection refused (tcp) - log_errors on by default
--- http_config
init_worker_by_lua '
logs = ""
done = false
local function say(...)
logs = logs .. table.concat{...} .. "\\n"
end
local function handler()
local sock = ngx.socket.tcp()
local ok, err = sock:connect("127.0.0.1", 16787)
if not ok then
say("failed to connect: ", err)
else
say("connect: ", ok, " ", err)
end
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
say("failed to create timer: ", err)
else
say("timer created")
end
';
--- config
location = /t {
content_by_lua '
local i = 0
while not done and i < 1000 do
ngx.sleep(0.001)
i = i + 1
end
ngx.print(logs)
';
}
--- request
GET /t
--- response_body
timer created
failed to connect: connection refused
--- error_log eval
qr/connect\(\) failed \(\d+: Connection refused\), context: ngx\.timer$/
=== TEST 15: connection refused (tcp) - log_errors explicitly on
--- http_config
lua_socket_log_errors on;
init_worker_by_lua '
logs = ""
done = false
local function say(...)
logs = logs .. table.concat{...} .. "\\n"
end
local function handler()
local sock = ngx.socket.tcp()
local ok, err = sock:connect("127.0.0.1", 16787)
if not ok then
say("failed to connect: ", err)
else
say("connect: ", ok, " ", err)
end
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
say("failed to create timer: ", err)
else
say("timer created")
end
';
--- config
location = /t {
content_by_lua '
local i = 0
while not done and i < 1000 do
ngx.sleep(0.001)
i = i + 1
end
ngx.print(logs)
';
}
--- request
GET /t
--- response_body
timer created
failed to connect: connection refused
--- error_log eval
qr/connect\(\) failed \(\d+: Connection refused\)/
=== TEST 16: connection refused (tcp) - log_errors explicitly off
--- http_config
lua_socket_log_errors off;
init_worker_by_lua '
logs = ""
done = false
local function say(...)
logs = logs .. table.concat{...} .. "\\n"
end
local function handler()
local sock = ngx.socket.tcp()
local ok, err = sock:connect("127.0.0.1", 16787)
if not ok then
say("failed to connect: ", err)
else
say("connect: ", ok, " ", err)
end
end
local ok, err = ngx.timer.at(0, handler)
if not ok then
say("failed to create timer: ", err)
else
say("timer created")
end
';
--- config
location = /t {
content_by_lua '
local i = 0
while not done and i < 1000 do
ngx.sleep(0.001)
i = i + 1
end
ngx.print(logs)
';
}
--- request
GET /t
--- response_body
timer created
failed to connect: connection refused
--- no_error_log eval
[
'qr/connect\(\) failed \(\d+: Connection refused\)/',
'[error]',
]
=== TEST 17: init_by_lua + proxy_temp_path which has side effects in cf->cycle->paths
--- http_config eval
qq{
proxy_temp_path $::ServerRoot/proxy_temp;
init_worker_by_lua '
local a = 2 + 3
';
}
--- config
location /t {
echo ok;
}
--- request
GET /t
--- response_body
ok
--- no_error_log
[error]
[alert]
[emerg]
=== TEST 18: syslog error log
--- http_config
#error_log syslog:server=127.0.0.1:12345 error;
init_worker_by_lua '
done = false
os.execute("sleep 0.1")
ngx.log(ngx.ERR, "Bad bad bad")
done = true
';
--- config
location /t {
content_by_lua '
while not done do
ngx.sleep(0.001)
end
ngx.say("ok")
';
}
--- log_level: error
--- error_log_file: syslog:server=127.0.0.1:12345
--- udp_listen: 12345
--- udp_query eval: qr/Bad bad bad/
--- udp_reply: hello
--- wait: 0.1
--- request
GET /t
--- response_body
ok
--- error_log
Bad bad bad
--- skip_nginx: 4: < 1.7.1
=== TEST 19: fake module calls ngx_http_conf_get_module_srv_conf in its merge_srv_conf callback (GitHub issue #554)
This also affects merge_loc_conf
--- http_config
init_worker_by_lua return;
--- config
location = /t {
return 200 ok;
}
--- request
GET /t
--- response_body chomp
ok
--- no_error_log
[error]
=== TEST 20: destroy Lua VM in cache processes (without privileged agent or shdict)
--- http_config
lua_package_path "../lua-resty-core/lib/?.lua;../lua-resty-lrucache/lib/?.lua;;";
proxy_cache_path /tmp/cache levels=1:2 keys_zone=cache:1m;
#lua_shared_dict dummy 500k;
init_by_lua_block {
require "resty.core.regex"
assert(ngx.re.match("hello, world", [[hello, \w+]], "joi"))
assert(ngx.re.match("hi, world", [[hi, \w+]], "ji"))
}
--- config
location = /t {
return 200;
}
--- request
GET /t
--- grep_error_log eval: qr/lua close the global Lua VM \S+ in the cache helper process \d+|lua close the global Lua VM \S+$/
--- grep_error_log_out eval
qr/\A(?:lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+
lua close the global Lua VM \1
lua close the global Lua VM \1 in the cache helper process \d+
lua close the global Lua VM \1
|lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+
lua close the global Lua VM \2 in the cache helper process \d+
lua close the global Lua VM \2
lua close the global Lua VM \2
)(?:lua close the global Lua VM [0-9A-F]+
)*\z/
--- no_error_log
[error]
start privileged agent process
=== TEST 21: destroy Lua VM in cache processes (without privileged agent but with shdict)
--- http_config
lua_package_path "../lua-resty-core/lib/?.lua;../lua-resty-lrucache/lib/?.lua;;";
proxy_cache_path /tmp/cache levels=1:2 keys_zone=cache:1m;
lua_shared_dict dummy 500k;
init_by_lua_block {
require "resty.core.regex"
assert(ngx.re.match("hello, world", [[hello, \w+]], "joi"))
assert(ngx.re.match("hi, world", [[hi, \w+]], "ji"))
}
--- config
location = /t {
return 200;
}
--- request
GET /t
--- grep_error_log eval: qr/lua close the global Lua VM \S+ in the cache helper process \d+|lua close the global Lua VM \S+$/
--- grep_error_log_out eval
qr/\A(?:lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+
lua close the global Lua VM \1
lua close the global Lua VM \1 in the cache helper process \d+
lua close the global Lua VM \1
|lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+
lua close the global Lua VM \2 in the cache helper process \d+
lua close the global Lua VM \2
lua close the global Lua VM \2
)(?:lua close the global Lua VM [0-9A-F]+
)*\z/
--- no_error_log
[error]
start privileged agent process
=== TEST 22: destroy Lua VM in cache processes (with privileged agent)
--- http_config
lua_package_path "../lua-resty-core/lib/?.lua;../lua-resty-lrucache/lib/?.lua;;";
#lua_shared_dict dogs 1m;
proxy_cache_path /tmp/cache levels=1:2 keys_zone=cache:1m;
init_by_lua_block {
assert(require "ngx.process".enable_privileged_agent())
require "resty.core.regex"
assert(ngx.re.match("hello, world", [[hello, \w+]], "joi"))
assert(ngx.re.match("hi, world", [[hi, \w+]], "ji"))
}
--- config
location = /t {
return 200;
}
--- request
GET /t
--- grep_error_log eval: qr/lua close the global Lua VM \S+ in the cache helper process \d+|lua close the global Lua VM \S+$/
--- grep_error_log_out eval
qr/\A(?:lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+
lua close the global Lua VM \1
lua close the global Lua VM \1 in the cache helper process \d+
lua close the global Lua VM \1
|lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+
lua close the global Lua VM \2 in the cache helper process \d+
lua close the global Lua VM \2
lua close the global Lua VM \2
)(?:lua close the global Lua VM [0-9A-F]+
)*\z/
--- error_log eval
qr/start privileged agent process \d+/
--- no_error_log
[error]
=== TEST 23: destroy Lua VM in cache processes (with init worker and privileged agent)
--- http_config
lua_package_path "../lua-resty-core/lib/?.lua;../lua-resty-lrucache/lib/?.lua;;";
#lua_shared_dict dogs 1m;
proxy_cache_path /tmp/cache levels=1:2 keys_zone=cache:1m;
init_by_lua_block {
assert(require "ngx.process".enable_privileged_agent())
require "resty.core.regex"
assert(ngx.re.match("hello, world", [[hello, \w+]], "joi"))
assert(ngx.re.match("hi, world", [[hi, \w+]], "ji"))
}
init_worker_by_lua_block {
ngx.log(ngx.WARN, "hello from init worker by lua")
}
--- config
location = /t {
return 200;
}
--- request
GET /t
--- grep_error_log eval: qr/hello from init worker by lua/
--- grep_error_log_out
hello from init worker by lua
hello from init worker by lua
--- error_log eval
[
qr/start privileged agent process \d+$/,
qr/lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+$/,
qr/lua close the global Lua VM ([0-9A-F]+)$/,
]
--- no_error_log
[error]
=== TEST 24: destroy Lua VM in cache processes (with init worker but without privileged agent)
--- http_config
lua_package_path "../lua-resty-core/lib/?.lua;../lua-resty-lrucache/lib/?.lua;;";
#lua_shared_dict dogs 1m;
proxy_cache_path /tmp/cache levels=1:2 keys_zone=cache:1m;
init_by_lua_block {
require "resty.core.regex"
assert(ngx.re.match("hello, world", [[hello, \w+]], "joi"))
assert(ngx.re.match("hi, world", [[hi, \w+]], "ji"))
}
init_worker_by_lua_block {
ngx.log(ngx.WARN, "hello from init worker by lua")
}
--- config
location = /t {
return 200;
}
--- request
GET /t
--- grep_error_log eval: qr/hello from init worker by lua/
--- grep_error_log_out
hello from init worker by lua
--- error_log eval
[
qr/lua close the global Lua VM ([0-9A-F]+) in the cache helper process \d+$/,
qr/lua close the global Lua VM ([0-9A-F]+)$/,
]
--- no_error_log
[error]
start privileged agent process
|