mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-15 01:11:58 +08:00
26 lines
484 B
Perl
26 lines
484 B
Perl
|
use t::APISix 'no_plan';
|
||
|
|
||
|
repeat_each(1);
|
||
|
no_long_string();
|
||
|
no_root_location();
|
||
|
log_level("info");
|
||
|
|
||
|
run_tests;
|
||
|
|
||
|
__DATA__
|
||
|
|
||
|
=== TEST 1: sanity
|
||
|
--- config
|
||
|
location /t {
|
||
|
content_by_lua_block {
|
||
|
local get_seed = require("apisix.core.utils").get_seed_from_urandom
|
||
|
|
||
|
ngx.say("random seed ", get_seed())
|
||
|
ngx.say("twice: ", get_seed() == get_seed())
|
||
|
}
|
||
|
}
|
||
|
--- request
|
||
|
GET /t
|
||
|
--- response_body_like eval
|
||
|
qr/random seed \d+\ntwice: false/
|