summaryrefslogtreecommitdiff
path: root/ngx_stream_lua-0.0.16/t/161-load-resty-core.t
blob: c239492420f46e99e0cf0c5e914dc3704375d7d2 (plain)
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
use Test::Nginx::Socket::Lua::Stream;

repeat_each(2);

plan tests => repeat_each() * (blocks() * 3);

our $HtmlDir = html_dir;

add_block_preprocessor(sub {
    my $block = shift;

    if (!defined $block->no_error_log) {
        $block->set_value("no_error_log", "[error]");
    }
});

no_long_string();
run_tests();

__DATA__

=== TEST 1: lua_load_resty_core is automatically loaded in the Lua VM
--- stream_server_config
    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)
    }
--- stream_response
resty.core loaded: true



=== TEST 2: resty.core is automatically loaded in the Lua VM when 'lua_shared_dict' is used
--- stream_config
    lua_shared_dict dogs 128k;
--- stream_server_config
    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)
    }
--- stream_response
resty.core loaded: true



=== TEST 3: resty.core is automatically loaded in the Lua VM with 'lua_code_cache off'
--- stream_config
    lua_code_cache off;
--- stream_server_config
    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 ~= nil)
    }
--- stream_response
resty.core loaded: true



=== TEST 4: resty.core loading honors the lua_package_path directive
--- stream_config eval
    "lua_package_path '$::HtmlDir/?.lua;;';"
--- stream_server_config
    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()
    }
--- stream_response
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
--- stream_config eval
    "lua_package_path '$::HtmlDir/?.lua;';"
--- stream_server_config
    content_by_lua_block {
        ngx.say("ok")
    }
--- 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'
--- stream_config
    lua_code_cache off;

    init_by_lua_block {
        package.path = ""
    }
--- stream_server_config
    content_by_lua_block {
        ngx.say("ok")
    }
--- 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)
--- stream_config
    lua_load_resty_core on;
--- stream_server_config
    content_by_lua_block {
        ngx.say("ok")
    }
--- 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_stream_lua v0\.0\.8\) in .*?nginx\.conf:\d+/,
""
]



=== TEST 8: lua_load_resty_core logs a deprecation warning when specified (off)
--- stream_config
    lua_load_resty_core off;
--- stream_server_config
    content_by_lua_block {
        ngx.say("ok")
    }
--- 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_stream_lua v0\.0\.8\) in .*?nginx\.conf:\d+/,
""
]