2020-07-30 15:27:00 +08:00
|
|
|
#
|
|
|
|
# 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';
|
|
|
|
|
|
|
|
no_root_location();
|
|
|
|
|
|
|
|
run_tests;
|
|
|
|
|
|
|
|
__DATA__
|
|
|
|
|
|
|
|
=== TEST 1: auto update prev_index when other keys update
|
|
|
|
--- config
|
|
|
|
location /t {
|
|
|
|
content_by_lua_block {
|
|
|
|
local core = require("apisix.core")
|
|
|
|
|
|
|
|
local consumers, _ = core.config.new("/consumers", {
|
|
|
|
automatic = true,
|
|
|
|
item_schema = core.schema.consumer,
|
|
|
|
timeout = 0.2
|
|
|
|
})
|
|
|
|
|
|
|
|
ngx.sleep(0.6)
|
|
|
|
|
|
|
|
local idx = consumers.prev_index
|
|
|
|
local key = "/test_key"
|
|
|
|
local val = "test_value"
|
|
|
|
core.etcd.set(key, val)
|
|
|
|
|
|
|
|
ngx.sleep(2)
|
|
|
|
|
|
|
|
local new_idx = consumers.prev_index
|
|
|
|
|
|
|
|
if new_idx > idx then
|
|
|
|
ngx.say("prev_index updated")
|
2020-09-16 10:19:04 +08:00
|
|
|
else
|
|
|
|
ngx.say("prev_index not update")
|
2020-07-30 15:27:00 +08:00
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--- request
|
|
|
|
GET /t
|
|
|
|
--- response_body
|
|
|
|
prev_index updated
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 2: using default timeout
|
|
|
|
--- config
|
|
|
|
location /t {
|
|
|
|
content_by_lua_block {
|
|
|
|
local core = require("apisix.core")
|
|
|
|
|
|
|
|
local consumers, _ = core.config.new("/consumers", {
|
|
|
|
automatic = true,
|
|
|
|
item_schema = core.schema.consumer
|
|
|
|
})
|
|
|
|
|
|
|
|
ngx.sleep(0.6)
|
|
|
|
local idx = consumers.prev_index
|
|
|
|
|
|
|
|
local key = "/test_key"
|
|
|
|
local val = "test_value"
|
|
|
|
core.etcd.set(key, val)
|
|
|
|
|
|
|
|
ngx.sleep(2)
|
|
|
|
|
|
|
|
local new_idx = consumers.prev_index
|
|
|
|
|
|
|
|
if new_idx > idx then
|
|
|
|
ngx.say("prev_index updated")
|
|
|
|
else
|
|
|
|
ngx.say("prev_index not update")
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--- request
|
|
|
|
GET /t
|
|
|
|
--- response_body
|
|
|
|
prev_index not update
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|