mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-15 01:11:58 +08:00
16f5f27c90
* feature: used schema to check the upstream configuration in etcd. * change: used Lua table to avoid concat JSON string by manual for schema. * optimize: changed a smaller wait time, faster way to know if there has new data coming.
120 lines
2.7 KiB
Perl
120 lines
2.7 KiB
Perl
use t::APISix 'no_plan';
|
|
|
|
repeat_each(1);
|
|
log_level('info');
|
|
no_long_string();
|
|
no_root_location();
|
|
no_shuffle();
|
|
|
|
run_tests();
|
|
|
|
__DATA__
|
|
|
|
=== TEST 1: set invalid upstream(id: 1)
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
local core = require("apisix.core")
|
|
local res, err = core.etcd.set("/upstreams/1", [[mexxxxxxxxxxxxxxx]])
|
|
|
|
if res.status >= 300 then
|
|
res.status = code
|
|
end
|
|
|
|
ngx.print(core.json.encode(res.body))
|
|
ngx.sleep(0.5)
|
|
}
|
|
}
|
|
--- request
|
|
GET /t
|
|
--- error_log
|
|
invalid item data of [/apisix/upstreams/1], val: mexxxxxxxxxxxxxxx, it shoud be a object
|
|
--- response_body_like eval
|
|
qr/"value":"mexxxxxxxxxxxxxxx"/
|
|
|
|
|
|
|
|
=== TEST 2: /not_found
|
|
--- request
|
|
GET /not_found
|
|
--- error_code: 404
|
|
--- response_body_like eval
|
|
qr/404 Not Found/
|
|
--- error_log
|
|
invalid item data of [/apisix/upstreams/1], val: mexxxxxxxxxxxxxxx, it shoud be a object
|
|
|
|
|
|
|
|
=== TEST 3: set vinalid upstream(wrong type)
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
local core = require("apisix.core")
|
|
local res, err = core.etcd.set("/upstreams/1", core.json.decode([[{
|
|
"nodes": {
|
|
"127.0.0.1:1980": 1
|
|
},
|
|
"type": "roundrobin_invalid"
|
|
}]]))
|
|
|
|
if res.status >= 300 then
|
|
res.status = code
|
|
end
|
|
|
|
ngx.print(core.json.encode(res.body))
|
|
ngx.sleep(0.5)
|
|
}
|
|
}
|
|
--- request
|
|
GET /t
|
|
--- response_body_like eval
|
|
qr/"nodes":\{"127.0.0.1:1980":1\}/
|
|
--- error_log
|
|
failed to check item data of [/apisix/upstreams] err:invalid "enum" in docuement at pointer "#/type"
|
|
|
|
|
|
|
|
=== TEST 4: set valid upstream(id: 1)
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
local core = require("apisix.core")
|
|
local res, err = core.etcd.set("/upstreams/1", core.json.decode([[{
|
|
"nodes": {
|
|
"127.0.0.1:1980": 1
|
|
},
|
|
"type": "roundrobin"
|
|
}]]))
|
|
|
|
if res.status >= 300 then
|
|
res.status = code
|
|
end
|
|
|
|
ngx.print(core.json.encode(res.body))
|
|
ngx.sleep(1)
|
|
}
|
|
}
|
|
--- request
|
|
GET /t
|
|
--- response_body_like eval
|
|
qr/"nodes":\{"127.0.0.1:1980":1\}/
|
|
--- error_log
|
|
failed to check item data of [/apisix/upstreams] err:invalid "enum" in docuement at pointer "#/type"
|
|
|
|
|
|
|
|
=== TEST 5: no error log
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
ngx.sleep(1)
|
|
ngx.say("done")
|
|
}
|
|
}
|
|
--- request
|
|
GET /t
|
|
--- response_body
|
|
done
|
|
--- no_error_log
|
|
[error]
|