⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
nginx
/
src
/
lua_nginx_module
/
t
/
View File Name :
051-sub-jit.t
# 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(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.sub("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 5678: 1 --- error_log pcre JIT compiling result: 1 === TEST 2: not matched with j --- config location /re { content_by_lua ' local s, n = ngx.re.sub("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.sub("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 5678: 1 --- 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.sub("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.sub("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.sub( "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]