mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-14 08:51:29 +08:00
219 lines
5.7 KiB
Perl
219 lines
5.7 KiB
Perl
|
use t::APISix 'no_plan';
|
||
|
|
||
|
repeat_each(1);
|
||
|
no_long_string();
|
||
|
no_root_location();
|
||
|
no_shuffle();
|
||
|
log_level("info");
|
||
|
|
||
|
run_tests;
|
||
|
|
||
|
__DATA__
|
||
|
|
||
|
=== TEST 1: set 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"],
|
||
|
"plugin_config": {},
|
||
|
"upstream": {
|
||
|
"nodes": {
|
||
|
"127.0.0.1:8080": 1
|
||
|
},
|
||
|
"type": "roundrobin"
|
||
|
},
|
||
|
"uri": "/index.html"
|
||
|
}]],
|
||
|
[[{
|
||
|
"node": {
|
||
|
"value": {
|
||
|
"methods": [
|
||
|
"GET"
|
||
|
],
|
||
|
"uri": "/index.html",
|
||
|
"plugin_config": {},
|
||
|
"upstream": {
|
||
|
"nodes": {
|
||
|
"127.0.0.1:8080": 1
|
||
|
},
|
||
|
"type": "roundrobin"
|
||
|
}
|
||
|
},
|
||
|
"key": "/apisix/routes/1"
|
||
|
},
|
||
|
"action": "set"
|
||
|
}]]
|
||
|
)
|
||
|
|
||
|
ngx.status = code
|
||
|
ngx.say(body)
|
||
|
}
|
||
|
}
|
||
|
--- request
|
||
|
GET /t
|
||
|
--- response_body
|
||
|
passed
|
||
|
--- no_error_log
|
||
|
[error]
|
||
|
|
||
|
|
||
|
|
||
|
=== TEST 2: get 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_GET,
|
||
|
nil,
|
||
|
[[{
|
||
|
"node": {
|
||
|
"value": {
|
||
|
"methods": [
|
||
|
"GET"
|
||
|
],
|
||
|
"uri": "/index.html",
|
||
|
"plugin_config": {},
|
||
|
"upstream": {
|
||
|
"nodes": {
|
||
|
"127.0.0.1:8080": 1
|
||
|
},
|
||
|
"type": "roundrobin"
|
||
|
}
|
||
|
},
|
||
|
"key": "/apisix/routes/1"
|
||
|
},
|
||
|
"action": "get"
|
||
|
}]]
|
||
|
)
|
||
|
|
||
|
ngx.status = code
|
||
|
ngx.say(body)
|
||
|
}
|
||
|
}
|
||
|
--- request
|
||
|
GET /t
|
||
|
--- response_body
|
||
|
passed
|
||
|
--- no_error_log
|
||
|
[error]
|
||
|
|
||
|
|
||
|
|
||
|
=== TEST 3: delete route(id: 1)
|
||
|
--- config
|
||
|
location /t {
|
||
|
content_by_lua_block {
|
||
|
local t = require("lib.test_admin").test
|
||
|
code, message = t('/apisix/admin/routes/1',
|
||
|
ngx.HTTP_DELETE,
|
||
|
nil,
|
||
|
[[{
|
||
|
"action": "delete"
|
||
|
}]]
|
||
|
)
|
||
|
ngx.say("[delete] code: ", code, " message: ", message)
|
||
|
}
|
||
|
}
|
||
|
--- request
|
||
|
GET /t
|
||
|
--- response_body
|
||
|
[delete] code: 200 message: passed
|
||
|
--- no_error_log
|
||
|
[error]
|
||
|
|
||
|
|
||
|
|
||
|
=== TEST 4: delete route(id: not_found)
|
||
|
--- config
|
||
|
location /t {
|
||
|
content_by_lua_block {
|
||
|
local t = require("lib.test_admin").test
|
||
|
code = t('/apisix/admin/routes/not_found',
|
||
|
ngx.HTTP_DELETE,
|
||
|
nil,
|
||
|
[[{
|
||
|
"action": "delete"
|
||
|
}]]
|
||
|
)
|
||
|
ngx.say("[delete] code: ", code)
|
||
|
}
|
||
|
}
|
||
|
--- request
|
||
|
GET /t
|
||
|
--- response_body
|
||
|
[delete] code: 404
|
||
|
--- no_error_log
|
||
|
[error]
|
||
|
|
||
|
|
||
|
|
||
|
=== TEST 5: push route + delete
|
||
|
--- config
|
||
|
location /t {
|
||
|
content_by_lua_block {
|
||
|
local t = require("lib.test_admin").test
|
||
|
local code, message, res = t('/apisix/admin/routes/1',
|
||
|
ngx.HTTP_POST,
|
||
|
[[{
|
||
|
"methods": ["GET"],
|
||
|
"plugin_config": {},
|
||
|
"upstream": {
|
||
|
"nodes": {
|
||
|
"127.0.0.1:8080": 1
|
||
|
},
|
||
|
"type": "roundrobin"
|
||
|
},
|
||
|
"uri": "/index.html"
|
||
|
}]],
|
||
|
[[{
|
||
|
"node": {
|
||
|
"value": {
|
||
|
"methods": [
|
||
|
"GET"
|
||
|
],
|
||
|
"uri": "/index.html",
|
||
|
"plugin_config": {},
|
||
|
"upstream": {
|
||
|
"nodes": {
|
||
|
"127.0.0.1:8080": 1
|
||
|
},
|
||
|
"type": "roundrobin"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"action": "create"
|
||
|
}]]
|
||
|
)
|
||
|
|
||
|
if code ~= 200 then
|
||
|
ngx.status = code
|
||
|
ngx.say(message)
|
||
|
return
|
||
|
end
|
||
|
|
||
|
ngx.say("[push] code: ", code, " message: ", message)
|
||
|
|
||
|
local id = string.sub(res.node.key, #"/apisix/routes/" + 1)
|
||
|
code, message = t('/apisix/admin/routes/' .. id,
|
||
|
ngx.HTTP_DELETE,
|
||
|
nil,
|
||
|
[[{
|
||
|
"action": "delete"
|
||
|
}]]
|
||
|
)
|
||
|
ngx.say("[delete] code: ", code, " message: ", message)
|
||
|
}
|
||
|
}
|
||
|
--- request
|
||
|
GET /t
|
||
|
--- response_body
|
||
|
[push] code: 200 message: passed
|
||
|
[delete] code: 200 message: passed
|
||
|
--- no_error_log
|
||
|
[error]
|