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
|
use lib '.';
use t::TestCore;
repeat_each(2);
plan tests => repeat_each() * (blocks() * 3);
add_block_preprocessor(sub {
my $block = shift;
if (!defined $block->error_log) {
$block->set_value("no_error_log", "[error]");
}
if (!defined $block->request) {
$block->set_value("request", "GET /t");
}
});
no_long_string();
check_accum_error_log();
run_tests();
__DATA__
=== TEST 1: ngx_req.add_header (jitted)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
for i = 1, $TEST_NGINX_HOTLOOP * 20 do
ngx_req.add_header("Foo", "bar")
end
}
}
--- error_log eval
qr/\[TRACE\s+\d+ content_by_lua\(nginx\.conf:\d+\):4 loop\]/
--- no_error_log
[error]
=== TEST 2: ngx_req.add_header (single value)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx.req.set_header("Foo", "bar")
ngx_req.add_header("Foo", "baz")
ngx_req.add_header("Foo", 2)
ngx.say("Foo: ", table.concat(ngx.req.get_headers()["Foo"], ", "))
}
}
--- response_body
Foo: bar, baz, 2
=== TEST 3: ngx_req.add_header (empty single value)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx.req.set_header("Foo", "bar")
ngx_req.add_header("Foo", "")
ngx.say("Foo: [", table.concat(ngx.req.get_headers()["Foo"], ", "), ']')
}
}
--- response_body
Foo: [bar, ]
=== TEST 4: ngx_req.add_header (non-string single value)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx.req.set_header("Foo", "bar")
ngx_req.add_header("Foo", 123)
ngx.say("Foo: [", table.concat(ngx.req.get_headers()["Foo"], ", "), ']')
}
}
--- response_body
Foo: [bar, 123]
=== TEST 5: ngx_req.add_header (non-string header name)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header(123, 456)
ngx_req.add_header(123, 789)
ngx.say("123: [", table.concat(ngx.req.get_headers()[123], ", "), ']')
}
}
--- response_body
123: [456, 789]
=== TEST 6: ngx_req.add_header (multiple values)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx.req.set_header("Foo", "bar")
ngx_req.add_header("Foo", { "baz", 123 })
ngx.say("Foo: ", table.concat(ngx.req.get_headers()["Foo"], ", "))
}
}
--- response_body
Foo: bar, baz, 123
=== TEST 7: ngx_req.add_header (override builtin header)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header("User-Agent", "Mozilla/5.0 (Android; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0")
ngx.say("UA: ", ngx.var.http_user_agent)
}
}
--- response_body
UA: Mozilla/5.0 (Android; Mobile; rv:13.0) Gecko/13.0 Firefox/13.0
=== TEST 8: ngx_req.add_header (added header is inherited by subrequests)
--- config
location = /sub {
content_by_lua_block {
ngx.say("Foo: ", table.concat(ngx.req.get_headers()["Foo"], ", "))
}
}
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
ngx.req.set_header("Foo", "bar")
ngx_req.add_header("Foo", {"baz", 2})
local res = ngx.location.capture("/sub")
ngx.print(res.body)
}
}
--- response_body
Foo: bar, baz, 2
=== TEST 9: ngx_req.add_header (invalid context)
--- http_config
init_worker_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header("Foo", "baz")
}
--- config
location /t {
return 200;
}
--- response_body
--- error_log
API disabled in the current context
=== TEST 10: ngx_req.add_header (header names edge-cases)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
local function check_invalid_header_name(header_name)
local ok, err = pcall(ngx_req.add_header, header_name, "bar")
if not ok then
ngx.say(err)
else
ngx.say("ok")
end
end
check_invalid_header_name()
check_invalid_header_name("")
check_invalid_header_name({})
}
}
--- response_body
bad 'name' argument: string expected, got nil
ok
ok
=== TEST 11: ngx_req.add_header (invalid header values)
--- config
location = /t {
content_by_lua_block {
local ngx_req = require "ngx.req"
local function check_invalid_header_value(...)
local ok, err = pcall(ngx_req.add_header, "Foo", ...)
if not ok then
ngx.say(err)
else
ngx.say("ok")
end
end
check_invalid_header_value()
check_invalid_header_value(nil)
check_invalid_header_value({})
}
}
--- response_body
bad 'value' argument: string or table expected, got nil
bad 'value' argument: string or table expected, got nil
bad 'value' argument: non-empty table expected
=== TEST 12: ngx_req.add_header (header name with control characters)
--- config
location /bar {
access_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header("header\r\nabc", "value")
}
proxy_pass http://127.0.0.1:$server_port/foo;
}
location = /foo {
echo $echo_client_request_headers;
}
--- request
GET /bar
--- response_body_like chomp
\bheader%0D%0Aabc: value\r\n
=== TEST 13: ngx_req.add_header (header value with control characters)
--- config
location /bar {
access_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header("header", "value\r\nabc")
}
proxy_pass http://127.0.0.1:$server_port/foo;
}
location = /foo {
echo $echo_client_request_headers;
}
--- request
GET /bar
--- response_body_like chomp
\bheader: value%0D%0Aabc\r\n
=== TEST 14: ngx_req.add_header (header name with Chinese characters)
--- config
location /bar {
access_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header("header中文", "value")
}
proxy_pass http://127.0.0.1:$server_port/foo;
}
location = /foo {
echo $echo_client_request_headers;
}
--- request
GET /bar
--- response_body_like chomp
\bheader%E4%B8%AD%E6%96%87: value
=== TEST 15: ngx_req.add_header (header value with Chinese characters)
--- config
location /bar {
access_by_lua_block {
local ngx_req = require "ngx.req"
ngx_req.add_header("header", "value中文")
}
proxy_pass http://127.0.0.1:$server_port/foo;
}
location = /foo {
echo $echo_client_request_headers;
}
--- request
GET /bar
--- response_body_like chomp
\bheader: value中文
|