mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-05 05:27:35 +08:00
22ee20c480
Signed-off-by: spacewander <spacewanderlzx@gmail.com>
85 lines
2.4 KiB
Perl
Vendored
85 lines
2.4 KiB
Perl
Vendored
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
use t::APISIX 'no_plan';
|
|
|
|
repeat_each(2);
|
|
no_long_string();
|
|
no_root_location();
|
|
log_level("info");
|
|
|
|
add_block_preprocessor(sub {
|
|
my ($block) = @_;
|
|
|
|
if (!$block->request) {
|
|
$block->set_value("request", "GET /t");
|
|
}
|
|
|
|
if (!$block->error_log && !$block->no_error_log) {
|
|
$block->set_value("no_error_log", "[error]\n[alert]");
|
|
}
|
|
});
|
|
|
|
run_tests;
|
|
|
|
__DATA__
|
|
|
|
=== TEST 1: ip_def
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
local schema_def = require("apisix.schema_def")
|
|
local core = require("apisix.core")
|
|
local schema = {
|
|
type = "object",
|
|
properties = {
|
|
ip = {
|
|
type = "string",
|
|
anyOf = schema_def.ip_def,
|
|
}
|
|
},
|
|
}
|
|
|
|
local cases = {
|
|
"127.0.0.1/1",
|
|
"127.0.0.1/10",
|
|
"127.0.0.1/11",
|
|
"127.0.0.1/20",
|
|
"127.0.0.1/21",
|
|
"127.0.0.1/30",
|
|
"127.0.0.1/32",
|
|
}
|
|
for _, c in ipairs(cases) do
|
|
local ok, err = core.schema.check(schema, {ip = c})
|
|
assert(ok, c)
|
|
assert(err == nil, c)
|
|
end
|
|
|
|
local cases = {
|
|
"127.0.0.1/33",
|
|
}
|
|
for _, c in ipairs(cases) do
|
|
local ok, err = core.schema.check(schema, {ip = c})
|
|
assert(not ok, c)
|
|
assert(err ~= nil, c)
|
|
end
|
|
|
|
ngx.say("passed")
|
|
}
|
|
}
|
|
--- response_body
|
|
passed
|