2019-06-21 21:25:24 +08:00
|
|
|
use t::APISix 'no_plan';
|
|
|
|
|
|
|
|
repeat_each(1);
|
|
|
|
no_long_string();
|
|
|
|
no_root_location();
|
|
|
|
no_shuffle();
|
|
|
|
log_level("info");
|
|
|
|
|
|
|
|
run_tests;
|
|
|
|
|
|
|
|
__DATA__
|
|
|
|
|
|
|
|
=== TEST 1: get route schema
|
|
|
|
--- request
|
|
|
|
GET /apisix/admin/schema/route
|
2019-06-24 16:07:24 +08:00
|
|
|
--- response_body eval
|
|
|
|
qr/"plugins": \{"type":"object"}/
|
2019-06-21 21:25:24 +08:00
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 2: get service schema
|
|
|
|
--- request
|
|
|
|
GET /apisix/admin/schema/service
|
2019-06-24 16:07:24 +08:00
|
|
|
--- response_body eval
|
2019-06-25 06:20:44 +08:00
|
|
|
qr/"required":\["upstream"\]/
|
2019-06-21 21:25:24 +08:00
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 3: get not exist schema
|
|
|
|
--- request
|
|
|
|
GET /apisix/admin/schema/noexits
|
|
|
|
--- error_code: 404
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 4: wrong method
|
|
|
|
--- request
|
|
|
|
PUT /apisix/admin/schema/service
|
|
|
|
--- error_code: 404
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 5: wrong method
|
|
|
|
--- request
|
|
|
|
POST /apisix/admin/schema/service
|
|
|
|
--- error_code: 404
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|