blob: 80f01a5d2ae46c4bad5ce6eb5c83138179161fa4 [file] [log] [blame]
#
# 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();
add_block_preprocessor(sub {
my ($block) = @_;
if (!$block->request) {
$block->set_value("request", "GET /t");
}
if (!$block->no_error_log && !$block->error_log) {
$block->set_value("no_error_log", "[error]\n[alert]");
}
});
run_tests;
__DATA__
=== TEST 1: parse_time_unit
--- config
location /t {
content_by_lua_block {
local parse_time_unit = require("apisix.core.config_util").parse_time_unit
for _, case in ipairs({
{exp = 1, input = "1"},
{exp = 1, input = "1s"},
{exp = 60, input = "60s"},
{exp = 1.1, input = "1s100ms"},
{exp = 10.001, input = "10s1ms"},
{exp = 3600, input = "60m"},
{exp = 3600.11, input = "60m110ms"},
{exp = 3710, input = "1h110"},
{exp = 5400, input = "1h 30m"},
{exp = 34822861.001, input = "1y1M1w1d1h1m1s1ms"},
}) do
assert(case.exp == parse_time_unit(case.input),
string.format("input %s, got %s", case.input,
parse_time_unit(case.input)))
end
for _, case in ipairs({
{exp = "invalid data: -", input = "-1"},
{exp = "unexpected unit: h", input = "1m1h"},
{exp = "invalid data: ", input = ""},
{exp = "specific unit conflicts with the default unit second", input = "1s1"},
}) do
local _, err = parse_time_unit(case.input)
assert(case.exp == err,
string.format("input %s, got %s", case.input, err))
end
}
}