mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-05 05:27:35 +08:00
31cfc145bd
* travis: init the etcd server at first. * test: grep all of the error log and check it.
104 lines
2.3 KiB
Perl
104 lines
2.3 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
|
|
--- grep_error_log eval
|
|
qr/\[error\].*/
|
|
--- grep_error_log_out eval
|
|
qr{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/
|
|
--- grep_error_log eval
|
|
qr/\[error\].*/
|
|
--- grep_error_log_out eval
|
|
qr{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
|
|
--- grep_error_log eval
|
|
qr/\[error\].*/
|
|
--- grep_error_log_out eval
|
|
qr{invalid item data of \[/apisix/routes/1\], val: mexxxxxxxxxxxxxxx, it shoud be a object}
|
|
|
|
|
|
|
|
=== TEST 4: 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]
|