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
|
# vim:set ft= ts=4 sw=4 et fdm=marker:
use Test::Nginx::Socket::Lua;
repeat_each(2);
plan tests => repeat_each() * (blocks() * 3);
our $HtmlDir = html_dir;
add_block_preprocessor(sub {
my $block = shift;
if (!defined $block->request) {
$block->set_value("request", "GET /t");
}
if (!defined $block->no_error_log) {
$block->set_value("no_error_log", "[error]");
}
});
no_long_string();
run_tests();
__DATA__
=== TEST 1: resty.core is automatically loaded in the Lua VM
--- config
location = /t {
content_by_lua_block {
local loaded_resty_core = package.loaded["resty.core"]
local resty_core = require "resty.core"
ngx.say("resty.core loaded: ", loaded_resty_core == resty_core)
}
}
--- response_body
resty.core loaded: true
=== TEST 2: resty.core is automatically loaded in the Lua VM when 'lua_shared_dict' is used
--- http_config
lua_shared_dict dogs 128k;
--- config
location = /t {
content_by_lua_block {
local loaded_resty_core = package.loaded["resty.core"]
local resty_core = require "resty.core"
ngx.say("resty.core loaded: ", loaded_resty_core == resty_core)
}
}
--- response_body
resty.core loaded: true
=== TEST 3: resty.core is automatically loaded in the Lua VM with 'lua_code_cache off'
--- http_config
lua_code_cache off;
--- config
location = /t {
content_by_lua_block {
local loaded_resty_core = package.loaded["resty.core"]
local resty_core = require "resty.core"
ngx.say("resty.core loaded: ", loaded_resty_core == resty_core)
}
}
--- response_body
resty.core loaded: true
=== TEST 4: resty.core loading honors the lua_package_path directive
--- http_config eval
"lua_package_path '$::HtmlDir/?.lua;;';"
--- config
location = /t {
content_by_lua_block {
local loaded_resty_core = package.loaded["resty.core"]
local resty_core = require "resty.core"
ngx.say("resty.core loaded: ", loaded_resty_core == resty_core)
resty_core.go()
}
}
--- response_body
resty.core loaded: true
loaded from html dir
--- user_files
>>> resty/core.lua
return {
go = function ()
ngx.say("loaded from html dir")
end
}
=== TEST 5: resty.core not loading aborts the initialization
--- http_config eval
"lua_package_path '$::HtmlDir/?.lua;';"
--- config
location = /t {
return 200;
}
--- must_die
--- error_log eval
qr/\[alert\] .*? failed to load the 'resty\.core' module .*? \(reason: module 'resty\.core' not found:/
=== TEST 6: resty.core not loading produces an error with 'lua_code_cache off'
--- http_config
lua_code_cache off;
init_by_lua_block {
package.path = ""
}
--- config
location = /t {
content_by_lua_block {
ngx.say("ok")
}
}
--- error_code: 500
--- error_log eval
qr/\[error\] .*? failed to load the 'resty\.core' module .*? \(reason: module 'resty\.core' not found:/
--- no_error_log eval
qr/\[alert\] .*? failed to load the 'resty\.core' module/
=== TEST 7: lua_load_resty_core logs a deprecation warning when specified (on)
--- http_config
lua_load_resty_core on;
--- config
location = /t {
return 200;
}
--- grep_error_log eval: qr/\[warn\] .*? lua_load_resty_core is deprecated.*/
--- grep_error_log_out eval
[
qr/\[warn\] .*? lua_load_resty_core is deprecated \(the lua-resty-core library is required since ngx_lua v0\.10\.16\) in .*?nginx\.conf:\d+/,
""
]
=== TEST 8: lua_load_resty_core logs a deprecation warning when specified (off)
--- http_config
lua_load_resty_core off;
--- config
location = /t {
return 200;
}
--- grep_error_log eval: qr/\[warn\] .*? lua_load_resty_core is deprecated.*/
--- grep_error_log_out eval
[
qr/\[warn\] .*? lua_load_resty_core is deprecated \(the lua-resty-core library is required since ngx_lua v0\.10\.16\) in .*?nginx\.conf:\d+/,
""
]
|