blob: e2c2e227cb15d98f13702066ea5e67dfe6bcd8b9 [file] [log] [blame] [raw]
# vim:set ft= ts=4 sw=4 et fdm=marker:
use lib 'lib';
use Test::Nginx::Socket::Lua;
#worker_connections(1014);
#master_on();
#workers(2);
#log_level('warn');
repeat_each(2);
plan tests => repeat_each() * (blocks() * 2 + 6);
#no_diff();
no_long_string();
run_tests();
__DATA__
=== TEST 1: matched with j
--- config
location /re {
content_by_lua '
local s, n = ngx.re.gsub("hello, 1234 5678", "([0-9]+)", "world", "j")
if n then
ngx.say(s, ": ", n)
else
ngx.say(s)
end
';
}
--- request
GET /re
--- response_body
hello, world world: 2
--- error_log
pcre JIT compiling result: 1
=== TEST 2: not matched with j
--- config
location /re {
content_by_lua '
local s, n = ngx.re.gsub("hello, world", "[0-9]+", "hiya", "j")
if n then
ngx.say(s, ": ", n)
else
ngx.say(s)
end
';
}
--- request
GET /re
--- response_body
hello, world: 0
--- error_log
pcre JIT compiling result: 1
=== TEST 3: matched with jo
--- config
location /re {
content_by_lua '
local s, n = ngx.re.gsub("hello, 1234 5678", "([0-9]+)", "world", "jo")
if n then
ngx.say(s, ": ", n)
else
ngx.say(s)
end
';
}
--- request
GET /re
--- response_body
hello, world world: 2
--- grep_error_log eval
qr/pcre JIT compiling result: \d+/
--- grep_error_log_out eval
["pcre JIT compiling result: 1\n", ""]
=== TEST 4: not matched with jo
--- config
location /re {
content_by_lua '
local s, n = ngx.re.gsub("hello, world", "[0-9]+", "hiya", "jo")
if n then
ngx.say(s, ": ", n)
else
ngx.say(s)
end
';
}
--- request
GET /re
--- response_body
hello, world: 0
--- grep_error_log eval
qr/pcre JIT compiling result: \d+/
--- grep_error_log_out eval
["pcre JIT compiling result: 1\n", ""]
=== TEST 5: bad pattern
--- config
location /re {
content_by_lua '
local s, n, err = ngx.re.gsub("hello\\nworld", "(abc", "world", "j")
if s then
ngx.say(s, ": ", n)
else
ngx.say("error: ", err)
end
';
}
--- request
GET /re
--- response_body
error: pcre_compile() failed: missing ) in "(abc"
--- no_error_log
[error]
=== TEST 6: bad pattern + o
--- config
location /re {
content_by_lua '
local s, n, err = ngx.re.gsub("hello\\nworld", "(abc", "world", "jo")
if s then
ngx.say(s, ": ", n)
else
ngx.say("error: ", err)
end
';
}
--- request
GET /re
--- response_body
error: pcre_compile() failed: missing ) in "(abc"
--- no_error_log
[error]