feat(apisix): add Cloudron package
- Implements Apache APISIX packaging for Cloudron platform. - Includes Dockerfile, CloudronManifest.json, and start.sh. - Configured to use Cloudron's etcd addon. 🤖 Generated with Gemini CLI Co-Authored-By: Gemini <noreply@google.com>
This commit is contained in:
104
CloudronPackages/APISIX/apisix-source/t/plugin/server-info.t
Normal file
104
CloudronPackages/APISIX/apisix-source/t/plugin/server-info.t
Normal file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
our $SkipReason;
|
||||
|
||||
BEGIN {
|
||||
if ($ENV{TEST_NGINX_CHECK_LEAK}) {
|
||||
$SkipReason = "unavailable for the hup tests";
|
||||
|
||||
} else {
|
||||
$ENV{TEST_NGINX_USE_HUP} = 1;
|
||||
undef $ENV{TEST_NGINX_USE_STAP};
|
||||
}
|
||||
}
|
||||
use Test::Nginx::Socket::Lua $SkipReason ? (skip_all => $SkipReason) : ();
|
||||
use t::APISIX 'no_plan';
|
||||
|
||||
repeat_each(1);
|
||||
no_long_string();
|
||||
no_root_location();
|
||||
no_shuffle();
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
if (!defined $block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
$block;
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: sanity check
|
||||
--- yaml_config
|
||||
apisix:
|
||||
id: 123456
|
||||
plugins:
|
||||
- server-info
|
||||
plugin_attr:
|
||||
server-info:
|
||||
report_ttl: 60
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
ngx.sleep(2)
|
||||
local core = require("apisix.core")
|
||||
local key = "/data_plane/server_info/" .. core.id.get()
|
||||
local res, err = core.etcd.get(key)
|
||||
if err ~= nil then
|
||||
ngx.status = 500
|
||||
ngx.say(err)
|
||||
return
|
||||
end
|
||||
|
||||
local value = res.body.node.value
|
||||
local json = require("toolkit.json")
|
||||
ngx.say(json.encode(value))
|
||||
}
|
||||
}
|
||||
--- response_body eval
|
||||
qr/^{"boot_time":\d+,"etcd_version":"[\d\.]+","hostname":"[a-zA-Z\-0-9\.]+","id":[a-zA-Z\-0-9]+,"version":"[\d\.]+"}$/
|
||||
|
||||
|
||||
|
||||
=== TEST 2: get server_info from plugin control API
|
||||
--- yaml_config
|
||||
apisix:
|
||||
id: 123456
|
||||
plugins:
|
||||
- server-info
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin").test
|
||||
local code, _, body = t("/v1/server_info")
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
end
|
||||
|
||||
body = json.decode(body)
|
||||
ngx.say(json.encode(body))
|
||||
}
|
||||
}
|
||||
--- response_body eval
|
||||
qr/^{"boot_time":\d+,"etcd_version":"[\d\.]+","hostname":"[a-zA-Z\-0-9\.]+","id":[a-zA-Z\-0-9]+,"version":"[\d\.]+"}$/
|
Reference in New Issue
Block a user