apisix/t/node/invalid-route.t
YuanSheng Wang f560316803
test: check the service config with json schema after fetched it form etcd. (#96)
* test: check the service config with `json schema` after fetched it form etcd.
* test: sleep one more seconds waiting for the etcd sync.
2019-06-14 17:08:44 +08:00

81 lines
1.9 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 route(id: 1)
--- config
location /t {
content_by_lua_block {
local core = require("apisix.core")
local res, err = core.etcd.set("/routes/1", [[mexxxxxxxxxxxxxxx]])
if res.status >= 300 then
res.status = code
end
ngx.print(core.json.encode(res.body))
ngx.sleep(1)
}
}
--- request
GET /t
--- error_log
invalid item data of [/apisix/routes/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/routes/1], val: mexxxxxxxxxxxxxxx, it shoud be a object
=== TEST 3: set valid route(id: 1)
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test
local code, body = t('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[[{
"methods": ["GET"],
"plugins": {},
"id":1,
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/hello"
}]]
)
if code >= 300 then
ngx.status = code
end
ngx.say(body)
}
}
--- request
GET /t
--- response_body
passed
--- error_log
invalid item data of [/apisix/routes/1], val: mexxxxxxxxxxxxxxx, it shoud be a object