⚝
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 :
164-say.t
# vim:set ft= ts=4 sw=4 et fdm=marker: use Test::Nginx::Socket::Lua; repeat_each(2); plan tests => blocks() * repeat_each() * 2; run_tests(); __DATA__ === TEST 1: ngx.say (integer) --- config location /lua { content_by_lua_block { ngx.say(2) } } --- request GET /lua --- response_body 2 === TEST 2: ngx.say (floating point number) the maximum number of significant digits is 14 in lua --- config location /lua { content_by_lua_block { ngx.say(3.1415926) ngx.say(3.14159265357939723846) } } --- request GET /lua --- response_body 3.1415926 3.1415926535794 === TEST 3: ngx.say (table with number) --- config location /lua { content_by_lua_block { local data = {123," ", 3.1415926} ngx.say(data) } } --- request GET /lua --- response_body 123 3.1415926 === TEST 4: ngx.say min int32 -2147483648 --- config location /lua { content_by_lua_block { ngx.say(-2147483648) } } --- request GET /lua --- response_body -2147483648 === TEST 5: ngx.say big integer 2147483647 --- config location /lua { content_by_lua_block { ngx.say(2147483647) } } --- request GET /lua --- response_body 2147483647 === TEST 6: ngx.say big integer -9223372036854775808 --- config location /lua { content_by_lua_block { ngx.say(-9223372036854775808) } } --- request GET /lua --- response_body -9.2233720368548e+18 === TEST 7: ngx.say big integer 18446744073709551615 --- config location /lua { content_by_lua_block { ngx.say(18446744073709551615) } } --- request GET /lua --- response_body 1.844674407371e+19