mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-05 05:27:35 +08:00
5e85e93eac
* change: don't strip square brackets from the IPv6 The OpenResty APIs require the IPv6 literal wrapped inside a square brackets. Also add tests for IPv6 upstream and update lua-resty-ipmatcher to 0.3. Fix #816.
71 lines
2.4 KiB
Raku
71 lines
2.4 KiB
Raku
#
|
|
# 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(1);
|
|
no_long_string();
|
|
no_root_location();
|
|
log_level("info");
|
|
|
|
run_tests;
|
|
|
|
__DATA__
|
|
|
|
=== TEST 1: sanity
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
local get_seed = require("apisix.core.utils").get_seed_from_urandom
|
|
|
|
ngx.say("random seed ", get_seed())
|
|
ngx.say("twice: ", get_seed() == get_seed())
|
|
}
|
|
}
|
|
--- request
|
|
GET /t
|
|
--- response_body_like eval
|
|
qr/random seed \d+\ntwice: false/
|
|
|
|
|
|
|
|
=== TEST 2: parse_addr
|
|
--- config
|
|
location /t {
|
|
content_by_lua_block {
|
|
local parse_addr = require("apisix.core.utils").parse_addr
|
|
local cases = {
|
|
{addr = "127.0.0.1", host = "127.0.0.1", port = 80},
|
|
{addr = "127.0.0.1:90", host = "127.0.0.1", port = 90},
|
|
{addr = "www.test.com", host = "www.test.com", port = 80},
|
|
{addr = "www.test.com:90", host = "www.test.com", port = 90},
|
|
{addr = "[127.0.0.1:90", host = "[127.0.0.1:90", port = 80},
|
|
{addr = "[::1]", host = "[::1]", port = 80},
|
|
{addr = "[::1]:1234", host = "[::1]", port = 1234},
|
|
{addr = "[::1234:1234]:12345", host = "[::1234:1234]", port = 12345},
|
|
}
|
|
for _, case in ipairs(cases) do
|
|
local host, port = parse_addr(case.addr)
|
|
assert(host == case.host, string.format("host %s mismatch %s", host, case.host))
|
|
assert(port == case.port, string.format("port %s mismatch %s", port, case.port))
|
|
end
|
|
}
|
|
}
|
|
--- request
|
|
GET /t
|
|
--- no_error_log
|
|
[error]
|