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:
@@ -0,0 +1,141 @@
|
||||
#
|
||||
# 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';
|
||||
|
||||
workers(3);
|
||||
repeat_each(1);
|
||||
no_long_string();
|
||||
no_root_location();
|
||||
no_shuffle();
|
||||
log_level("info");
|
||||
worker_connections(1024);
|
||||
|
||||
$ENV{"PATH"} = $ENV{PATH} . ":" . $ENV{TEST_NGINX_HTML_DIR};
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
$block->set_value("stream_conf_enable", 1);
|
||||
|
||||
if (!defined $block->extra_stream_config) {
|
||||
my $stream_config = <<_EOC_;
|
||||
server {
|
||||
listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
|
||||
_EOC_
|
||||
$block->set_value("extra_stream_config", $stream_config);
|
||||
}
|
||||
|
||||
my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock";
|
||||
my $orig_extra_yaml_config = $block->extra_yaml_config // "";
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
path_for_test: $unix_socket_path
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
$extra_yaml_config = $extra_yaml_config . $orig_extra_yaml_config;
|
||||
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: sanity
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {"a":"b"}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 2: share conf token in different workers
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local http = require "resty.http"
|
||||
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello"
|
||||
|
||||
local t = {}
|
||||
for i = 1, 16 do
|
||||
local th = assert(ngx.thread.spawn(function(i)
|
||||
local httpc = http.new()
|
||||
local res, err = httpc:request_uri(uri)
|
||||
if not res then
|
||||
ngx.log(ngx.ERR, err)
|
||||
return
|
||||
end
|
||||
end, i))
|
||||
table.insert(t, th)
|
||||
end
|
||||
for i, th in ipairs(t) do
|
||||
ngx.thread.wait(th)
|
||||
end
|
||||
ngx.say("done")
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
done
|
||||
--- grep_error_log eval
|
||||
qr/fetch token from shared dict, token: 233/
|
||||
--- grep_error_log_out eval
|
||||
qr/(fetch token from shared dict, token: 233){1,}/
|
@@ -0,0 +1,355 @@
|
||||
#
|
||||
# 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();
|
||||
no_shuffle();
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
$block->set_value("stream_conf_enable", 1);
|
||||
|
||||
if (!defined $block->extra_stream_config) {
|
||||
my $stream_config = <<_EOC_;
|
||||
server {
|
||||
listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
|
||||
_EOC_
|
||||
$block->set_value("extra_stream_config", $stream_config);
|
||||
}
|
||||
|
||||
my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock";
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
path_for_test: $unix_socket_path
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: add route
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 2: var
|
||||
--- request
|
||||
GET /hello?x=
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "var", name = "server_addr", result = "127.0.0.1"},
|
||||
{type = "var", name = "remote_addr", result = "127.0.0.1"},
|
||||
{type = "var", name = "route_id", result = "1"},
|
||||
{type = "var", name = "arg_x", result = ""},
|
||||
}
|
||||
ext.go({extra_info = actions, stop = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
send extra info req successfully
|
||||
send extra info req successfully
|
||||
send extra info req successfully
|
||||
|
||||
|
||||
|
||||
=== TEST 3: ask nonexistent var
|
||||
--- request
|
||||
GET /hello
|
||||
--- more_headers
|
||||
X-Change: foo
|
||||
X-Delete: foo
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "var", name = "erver_addr"},
|
||||
}
|
||||
ext.go({extra_info = actions, rewrite = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /uri
|
||||
host: localhost
|
||||
x-add: bar
|
||||
x-change: bar
|
||||
x-real-ip: 127.0.0.1
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
|
||||
|
||||
|
||||
=== TEST 4: network is down in the middle
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "var", name = "server_addr", result = "127.0.0.1"},
|
||||
{type = "closed"},
|
||||
}
|
||||
ext.go({extra_info = actions, stop = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 503
|
||||
--- error_log
|
||||
failed to receive RPC_HTTP_REQ_CALL: closed
|
||||
|
||||
|
||||
|
||||
=== TEST 5: ask response body (not exist)
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "respbody", result = nil}
|
||||
}
|
||||
ext.go({extra_info = actions})
|
||||
}
|
||||
}
|
||||
--- error_log: failed to read response body: not exits
|
||||
|
||||
|
||||
|
||||
=== TEST 6: add route with ext-plugin-post-resp
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/*",
|
||||
"plugins": {
|
||||
"ext-plugin-post-resp": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 7: ask var
|
||||
--- request
|
||||
GET /hello?x=
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "var", name = "server_addr", result = "127.0.0.1"},
|
||||
{type = "var", name = "remote_addr", result = "127.0.0.1"},
|
||||
{type = "var", name = "route_id", result = "1"},
|
||||
{type = "var", name = "arg_x", result = ""},
|
||||
}
|
||||
ext.go({extra_info = actions})
|
||||
}
|
||||
}
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
send extra info req successfully
|
||||
send extra info req successfully
|
||||
send extra info req successfully
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 8: ask response body
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "respbody", result = "hello world\n"},
|
||||
}
|
||||
ext.go({extra_info = actions})
|
||||
}
|
||||
}
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 9: ask response body (chunked)
|
||||
--- request
|
||||
GET /hello_chunked
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "respbody", result = "hello world\n"},
|
||||
}
|
||||
ext.go({extra_info = actions})
|
||||
}
|
||||
}
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 10: ask request body (empty)
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "reqbody", result = nil}
|
||||
}
|
||||
ext.go({extra_info = actions})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
=== TEST 11: ask request body
|
||||
--- request
|
||||
POST /hello
|
||||
123
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "reqbody", result = "123"}
|
||||
}
|
||||
ext.go({extra_info = actions})
|
||||
}
|
||||
}
|
@@ -0,0 +1,809 @@
|
||||
#
|
||||
# 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();
|
||||
no_shuffle();
|
||||
log_level("info");
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
$block->set_value("stream_conf_enable", 1);
|
||||
|
||||
if (!defined $block->extra_stream_config) {
|
||||
my $stream_config = <<_EOC_;
|
||||
server {
|
||||
listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
|
||||
_EOC_
|
||||
$block->set_value("extra_stream_config", $stream_config);
|
||||
}
|
||||
|
||||
my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock";
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
path_for_test: $unix_socket_path
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: add route
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 2: stop
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body chomp
|
||||
cat
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({stop = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- response_headers
|
||||
X-Resp: foo
|
||||
X-Req: bar
|
||||
|
||||
|
||||
|
||||
=== TEST 3: check input
|
||||
--- request
|
||||
PUT /hello?xx=y&xx=z&&y=&&z
|
||||
--- more_headers
|
||||
X-Req: foo
|
||||
X-Req: bar
|
||||
X-Resp: cat
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({check_input = true})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
=== TEST 4: check input (ipv6)
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local t = require("lib.test_admin").test_ipv6
|
||||
t('/hello')
|
||||
}
|
||||
}
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({check_input_ipv6 = true})
|
||||
}
|
||||
}
|
||||
--- listen_ipv6
|
||||
|
||||
|
||||
|
||||
=== TEST 5: rewrite
|
||||
--- request
|
||||
GET /hello
|
||||
--- more_headers
|
||||
X-Change: foo
|
||||
X-Delete: foo
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /uri
|
||||
host: localhost
|
||||
x-add: bar
|
||||
x-change: bar
|
||||
x-real-ip: 127.0.0.1
|
||||
|
||||
|
||||
|
||||
=== TEST 6: rewrite host
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_host = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /uri
|
||||
host: 127.0.0.1
|
||||
x-real-ip: 127.0.0.1
|
||||
|
||||
|
||||
|
||||
=== TEST 7: rewrite args
|
||||
--- request
|
||||
GET /hello?c=foo&d=bar
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_args = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /plugin_proxy_rewrite_args
|
||||
a: foo,bar
|
||||
c: bar
|
||||
|
||||
|
||||
|
||||
=== TEST 8: proxy-rewrite + rewrite host
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"proxy-rewrite": {
|
||||
"host": "test.com"
|
||||
},
|
||||
"ext-plugin-post-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 9: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_host = true, check_input_rewrite_host = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /uri
|
||||
host: 127.0.0.1
|
||||
x-real-ip: 127.0.0.1
|
||||
|
||||
|
||||
|
||||
=== TEST 10: proxy-rewrite + rewrite path
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"proxy-rewrite": {
|
||||
"uri": "/xxx"
|
||||
},
|
||||
"ext-plugin-post-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 11: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_host = true, check_input_rewrite_path = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /uri
|
||||
host: 127.0.0.1
|
||||
x-real-ip: 127.0.0.1
|
||||
|
||||
|
||||
|
||||
=== TEST 12: proxy-rewrite + rewrite path with args
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"proxy-rewrite": {
|
||||
"uri": "/xxx?x=z"
|
||||
},
|
||||
"ext-plugin-post-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 13: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_args = true, check_input_rewrite_args = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /plugin_proxy_rewrite_args
|
||||
a: foo,bar
|
||||
c: bar
|
||||
x: z
|
||||
|
||||
|
||||
|
||||
=== TEST 14: rewrite args only
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/plugin_proxy_rewrite_args",
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 15: hit
|
||||
--- request
|
||||
GET /plugin_proxy_rewrite_args
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_args_only = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
uri: /plugin_proxy_rewrite_args
|
||||
a: foo,bar
|
||||
c: bar
|
||||
|
||||
|
||||
|
||||
=== TEST 16: rewrite, bad path
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 17: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_bad_path = true})
|
||||
}
|
||||
}
|
||||
--- error_log
|
||||
undefined path in test server, uri: /plugin_proxy_rewrite_args%3Fa=2
|
||||
--- error_code: 404
|
||||
|
||||
|
||||
|
||||
=== TEST 18: stop without setting status code
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body chomp
|
||||
cat
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({stop = true, check_default_status = true})
|
||||
}
|
||||
}
|
||||
--- response_headers
|
||||
X-Resp: foo
|
||||
X-Req: bar
|
||||
|
||||
|
||||
|
||||
=== TEST 19: rewrite response header and call the upstream service
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_resp_header = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
plugin_proxy_rewrite_resp_header
|
||||
--- response_headers
|
||||
X-Resp: foo
|
||||
X-Req: bar
|
||||
|
||||
|
||||
|
||||
=== TEST 20: rewrite non-important response headers and call the upstream service
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_vital_resp_header = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
plugin_proxy_rewrite_resp_header
|
||||
--- response_headers
|
||||
X-Resp: foo
|
||||
X-Req: bar
|
||||
Content-Type: text/plain
|
||||
Content-Encoding:
|
||||
|
||||
|
||||
|
||||
=== TEST 21: trace stopped request
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"zipkin": {
|
||||
"endpoint": "http://127.0.0.1:1980/mock_zipkin",
|
||||
"sample_ratio": 1
|
||||
},
|
||||
"ext-plugin-pre-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 22: hit
|
||||
--- extra_init_by_lua
|
||||
local prev_new = require("opentracing.tracer").new
|
||||
local function new(...)
|
||||
ngx.log(ngx.WARN, "tracer attached to stopped request")
|
||||
return prev_new(...)
|
||||
end
|
||||
require("opentracing.tracer").new = new
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({stop = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- error_log
|
||||
tracer attached to stopped request
|
||||
|
||||
|
||||
|
||||
=== TEST 23: set header with OpenResty API should invalidate the cache
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"serverless-pre-function": {
|
||||
"functions" : ["return function(conf, ctx)
|
||||
require('apisix.core').request.headers();
|
||||
ngx.req.set_header('X-Req', 'foo');
|
||||
require('ngx.req').add_header('X-Req', 'bar');
|
||||
ngx.req.set_header('X-Resp', 'cat');
|
||||
end"]
|
||||
},
|
||||
"ext-plugin-post-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 24: check input
|
||||
--- request
|
||||
PUT /hello?xx=y&xx=z&&y=&&z
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({check_input = true})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
=== TEST 25: rewrite same response headers and call the upstream service
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_same_resp_header = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
plugin_proxy_rewrite_resp_header
|
||||
--- response_headers
|
||||
X-Resp: foo
|
||||
X-Req: bar
|
||||
X-Same: one, two
|
||||
|
||||
|
||||
|
||||
=== TEST 26: stop with modify same response headers
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body chomp
|
||||
cat
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({stop = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- response_headers
|
||||
X-Resp: foo
|
||||
X-Req: bar
|
||||
X-Same: one, two
|
||||
|
||||
|
||||
|
||||
=== TEST 27: add route
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/echo",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 28: test rewrite request body
|
||||
--- request
|
||||
GET /echo
|
||||
--- response_body chomp
|
||||
cat
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({rewrite_request_body = true})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
abc
|
@@ -0,0 +1,201 @@
|
||||
#
|
||||
# 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();
|
||||
no_shuffle();
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
$block->set_value("stream_conf_enable", 1);
|
||||
|
||||
if (!defined $block->extra_stream_config) {
|
||||
my $stream_config = <<_EOC_;
|
||||
server {
|
||||
listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
|
||||
_EOC_
|
||||
$block->set_value("extra_stream_config", $stream_config);
|
||||
}
|
||||
|
||||
my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock";
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
path_for_test: $unix_socket_path
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: add route
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 2: request body(text)
|
||||
--- request
|
||||
POST /hello
|
||||
123
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "reqbody", result = "123"},
|
||||
}
|
||||
ext.go({extra_info = actions, stop = true, get_request_body = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
|
||||
|
||||
|
||||
=== TEST 3: request body(x-www-form-urlencoded)
|
||||
--- request
|
||||
POST /hello
|
||||
foo=bar
|
||||
--- more_headers
|
||||
Content-Type: application/x-www-form-urlencoded
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "reqbody", result = "foo=bar"},
|
||||
}
|
||||
ext.go({extra_info = actions, stop = true, get_request_body = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
|
||||
|
||||
|
||||
=== TEST 4: request body(json)
|
||||
--- request
|
||||
POST /hello
|
||||
{"foo":"bar"}
|
||||
--- more_headers
|
||||
Content-Type: application/json
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "reqbody", result = "{\"foo\":\"bar\"}"},
|
||||
}
|
||||
ext.go({extra_info = actions, stop = true, get_request_body = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
||||
|
||||
|
||||
|
||||
=== TEST 5: request body(nil)
|
||||
--- request
|
||||
POST /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
local actions = {
|
||||
{type = "reqbody", result = nil},
|
||||
}
|
||||
ext.go({extra_info = actions, stop = true, get_request_body = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 405
|
||||
--- grep_error_log eval
|
||||
qr/send extra info req successfully/
|
||||
--- grep_error_log_out
|
||||
send extra info req successfully
|
@@ -0,0 +1,432 @@
|
||||
#
|
||||
# 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();
|
||||
no_shuffle();
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
$block->set_value("stream_conf_enable", 1);
|
||||
|
||||
if (!defined $block->extra_stream_config) {
|
||||
my $stream_config = <<_EOC_;
|
||||
server {
|
||||
listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
|
||||
_EOC_
|
||||
$block->set_value("extra_stream_config", $stream_config);
|
||||
}
|
||||
|
||||
my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock";
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
path_for_test: $unix_socket_path
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: add route
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/*",
|
||||
"plugins": {
|
||||
"ext-plugin-post-resp": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 2: check input
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({check_input = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 200
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 3: modify body
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({modify_body = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 200
|
||||
--- response_body chomp
|
||||
cat
|
||||
|
||||
|
||||
|
||||
=== TEST 4: modify header
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({modify_header = true})
|
||||
}
|
||||
}
|
||||
--- more_headers
|
||||
resp-X-Runner: Go-runner
|
||||
--- error_code: 200
|
||||
--- response_headers
|
||||
X-Runner: Test-Runner
|
||||
Content-Type: application/json
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 5: modify same response headers
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({modify_header = true, same_header = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 200
|
||||
--- response_headers
|
||||
X-Same: one, two
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 6: modify status
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({modify_status = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 304
|
||||
|
||||
|
||||
|
||||
=== TEST 7: default allow_degradation
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-post-resp": {
|
||||
"conf": [
|
||||
{"name":"foo", "value":"bar"}
|
||||
]
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 8: ext-plugin-resp wrong, req reject
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock1;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
--- error_code: 503
|
||||
--- error_log eval
|
||||
qr/failed to connect to the unix socket/
|
||||
|
||||
|
||||
|
||||
=== TEST 9: open allow_degradation
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
"conf": [
|
||||
{"name":"foo", "value":"bar"}
|
||||
],
|
||||
"allow_degradation": true
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 10: ext-plugin-resp wrong, req access
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock1;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
hello world
|
||||
--- error_log eval
|
||||
qr/Plugin Runner.*allow degradation/
|
||||
|
||||
|
||||
|
||||
=== TEST 11: add route: wrong upstream
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/*",
|
||||
"plugins": {
|
||||
"ext-plugin-post-resp": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:3980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 12: request upstream failed
|
||||
--- request
|
||||
GET /hello
|
||||
--- error_code: 502
|
||||
--- error_log eval
|
||||
qr/failed to request/
|
||||
|
||||
|
||||
|
||||
=== TEST 13: add route
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/*",
|
||||
"plugins": {
|
||||
"ext-plugin-post-resp": {
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 14: body_reader error
|
||||
--- request
|
||||
GET /hello1
|
||||
--- more_headers
|
||||
resp-Content-Length: 14
|
||||
--- error_code: 502
|
||||
--- error_log eval
|
||||
qr/read response failed/
|
||||
|
||||
|
||||
|
||||
=== TEST 15: response chunked
|
||||
--- request
|
||||
GET /hello_chunked
|
||||
--- error_code: 200
|
||||
--- response_body
|
||||
hello world
|
||||
|
||||
|
||||
|
||||
=== TEST 16: check upstream uri with args
|
||||
--- request
|
||||
GET /plugin_proxy_rewrite_args?aaa=bbb&ccc=ddd
|
||||
--- error_code: 200
|
||||
--- response_body
|
||||
uri: /plugin_proxy_rewrite_args
|
||||
aaa: bbb
|
||||
ccc: ddd
|
23
CloudronPackages/APISIX/apisix-source/t/plugin/ext-plugin/runner.sh
Executable file
23
CloudronPackages/APISIX/apisix-source/t/plugin/ext-plugin/runner.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
echo "LISTEN $APISIX_LISTEN_ADDRESS"
|
||||
echo "EXPIRE $APISIX_CONF_EXPIRE_TIME"
|
||||
echo "MY_ENV_VAR $MY_ENV_VAR"
|
||||
sleep "$1"
|
||||
exit 111
|
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
term() {
|
||||
eval sleep 1800
|
||||
}
|
||||
trap term SIGTERM
|
||||
sleep 1800
|
@@ -0,0 +1,713 @@
|
||||
#
|
||||
# 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;
|
||||
|
||||
my $nginx_binary = $ENV{'TEST_NGINX_BINARY'} || 'nginx';
|
||||
my $version = eval { `$nginx_binary -V 2>&1` };
|
||||
|
||||
if ($version !~ m/\/apisix-nginx-module/) {
|
||||
plan(skip_all => "apisix-nginx-module not installed");
|
||||
} else {
|
||||
plan('no_plan');
|
||||
}
|
||||
|
||||
repeat_each(1);
|
||||
no_long_string();
|
||||
no_root_location();
|
||||
no_shuffle();
|
||||
log_level("info");
|
||||
|
||||
$ENV{"PATH"} = $ENV{PATH} . ":" . $ENV{TEST_NGINX_HTML_DIR};
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
$block->set_value("stream_conf_enable", 1);
|
||||
|
||||
if (!defined $block->extra_stream_config) {
|
||||
my $stream_config = <<_EOC_;
|
||||
server {
|
||||
listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
|
||||
_EOC_
|
||||
$block->set_value("extra_stream_config", $stream_config);
|
||||
}
|
||||
|
||||
my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock";
|
||||
my $orig_extra_yaml_config = $block->extra_yaml_config // "";
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
path_for_test: $unix_socket_path
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
$extra_yaml_config = $extra_yaml_config . $orig_extra_yaml_config;
|
||||
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: sanity
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {"a":"b"},
|
||||
"ext-plugin-post-req": {"c":"d"},
|
||||
"ext-plugin-post-resp": {"e":"f"}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 2: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body
|
||||
hello world
|
||||
--- error_log
|
||||
get conf token: 233
|
||||
--- no_error_log
|
||||
flush conf token lrucache
|
||||
[error]
|
||||
--- grep_error_log eval
|
||||
qr/(sending|receiving) rpc type: \d data length:/
|
||||
--- grep_error_log_out
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 2 data length:
|
||||
receiving rpc type: 2 data length:
|
||||
sending rpc type: 2 data length:
|
||||
receiving rpc type: 2 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 2 data length:
|
||||
receiving rpc type: 2 data length:
|
||||
sending rpc type: 2 data length:
|
||||
receiving rpc type: 2 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 4 data length:
|
||||
receiving rpc type: 4 data length:
|
||||
sending rpc type: 4 data length:
|
||||
receiving rpc type: 4 data length:
|
||||
|
||||
|
||||
|
||||
=== TEST 3: header too short
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.header_too_short()
|
||||
}
|
||||
}
|
||||
--- request
|
||||
GET /hello
|
||||
--- error_code: 503
|
||||
--- error_log
|
||||
failed to receive RPC_PREPARE_CONF
|
||||
|
||||
|
||||
|
||||
=== TEST 4: data too short
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.data_too_short()
|
||||
}
|
||||
}
|
||||
--- request
|
||||
GET /hello
|
||||
--- error_code: 503
|
||||
--- error_log
|
||||
failed to receive RPC_PREPARE_CONF
|
||||
|
||||
|
||||
|
||||
=== TEST 5: not listen
|
||||
--- extra_stream_config
|
||||
--- request
|
||||
GET /hello
|
||||
--- error_code: 503
|
||||
--- error_log
|
||||
failed to connect to the unix socket
|
||||
|
||||
|
||||
|
||||
=== TEST 6: spawn runner
|
||||
--- ext_plugin_cmd
|
||||
["t/plugin/ext-plugin/runner.sh", "3600"]
|
||||
--- config
|
||||
location /t {
|
||||
access_by_lua_block {
|
||||
-- ensure the runner is spawned before the request finishes
|
||||
ngx.sleep(0.1)
|
||||
ngx.exit(200)
|
||||
}
|
||||
}
|
||||
--- grep_error_log eval
|
||||
qr/LISTEN unix:\S+/
|
||||
--- grep_error_log_out eval
|
||||
qr/LISTEN unix:.+\/nginx.sock/
|
||||
--- error_log
|
||||
EXPIRE 3600
|
||||
|
||||
|
||||
|
||||
=== TEST 7: respawn runner when it exited
|
||||
--- ext_plugin_cmd
|
||||
["t/plugin/ext-plugin/runner.sh", "0.1"]
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
ngx.sleep(0.2)
|
||||
}
|
||||
}
|
||||
--- error_log
|
||||
runner exited with reason: exit, status: 111
|
||||
respawn runner 3 seconds later with cmd: ["t/plugin/ext-plugin/runner.sh","0.1"]
|
||||
|
||||
|
||||
|
||||
=== TEST 8: flush cache when runner exited
|
||||
--- ext_plugin_cmd
|
||||
["t/plugin/ext-plugin/runner.sh", "0.4"]
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local http = require "resty.http"
|
||||
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello"
|
||||
local function r()
|
||||
local httpc = http.new()
|
||||
local res, err = httpc:request_uri(uri)
|
||||
if not res then
|
||||
ngx.log(ngx.ERR, err)
|
||||
return
|
||||
else
|
||||
ngx.print(res.body)
|
||||
end
|
||||
end
|
||||
|
||||
r()
|
||||
r()
|
||||
ngx.sleep(0.5)
|
||||
r()
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
hello world
|
||||
hello world
|
||||
hello world
|
||||
--- grep_error_log eval
|
||||
qr/(sending|receiving) rpc type: 1 data length:/
|
||||
--- grep_error_log_out
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
sending rpc type: 1 data length:
|
||||
receiving rpc type: 1 data length:
|
||||
--- error_log
|
||||
flush conf token lrucache
|
||||
flush conf token in shared dict
|
||||
|
||||
|
||||
|
||||
=== TEST 9: prepare conf
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {
|
||||
"conf": [
|
||||
{"name":"foo", "value":"bar"},
|
||||
{"name":"cat", "value":"dog"}
|
||||
]
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 10: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body
|
||||
hello world
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({with_conf = true, expect_key_pattern = [[^route#1#ext-plugin-pre-req#]]})
|
||||
}
|
||||
}
|
||||
--- error_log eval
|
||||
qr/get conf token: 233 conf: \[(\{"value":"bar","name":"foo"\}|\{"name":"foo","value":"bar"\}),(\{"value":"dog","name":"cat"\}|\{"name":"cat","value":"dog"\})\]/
|
||||
|
||||
|
||||
|
||||
=== TEST 11: handle error code
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({inject_error = true})
|
||||
}
|
||||
}
|
||||
--- error_code: 503
|
||||
--- error_log
|
||||
failed to receive RPC_PREPARE_CONF: bad request
|
||||
|
||||
|
||||
|
||||
=== TEST 12: refresh token
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body
|
||||
hello world
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
if not package.loaded.count then
|
||||
package.loaded.count = 1
|
||||
else
|
||||
package.loaded.count = package.loaded.count + 1
|
||||
end
|
||||
|
||||
if package.loaded.count == 1 then
|
||||
ext.go({no_token = true})
|
||||
else
|
||||
ext.go({with_conf = true})
|
||||
end
|
||||
}
|
||||
}
|
||||
--- error_log
|
||||
refresh cache and try again
|
||||
flush conf token in shared dict
|
||||
|
||||
|
||||
|
||||
=== TEST 13: runner can access the environment variable
|
||||
--- main_config
|
||||
env MY_ENV_VAR=foo;
|
||||
--- ext_plugin_cmd
|
||||
["t/plugin/ext-plugin/runner.sh", "3600"]
|
||||
--- config
|
||||
location /t {
|
||||
access_by_lua_block {
|
||||
-- ensure the runner is spawned before the request finishes
|
||||
ngx.sleep(0.1)
|
||||
ngx.exit(200)
|
||||
}
|
||||
}
|
||||
--- error_log
|
||||
MY_ENV_VAR foo
|
||||
|
||||
|
||||
|
||||
=== TEST 14: bad conf
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-pre-req": {
|
||||
"conf": [
|
||||
{"value":"bar"}
|
||||
]
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.say(message)
|
||||
end
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
"conf": [
|
||||
{"name":"bar"}
|
||||
]
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.print(message)
|
||||
end
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
{"error_msg":"failed to check the configuration of plugin ext-plugin-pre-req err: property \"conf\" validation failed: failed to validate item 1: property \"name\" is required"}
|
||||
|
||||
{"error_msg":"failed to check the configuration of plugin ext-plugin-post-req err: property \"conf\" validation failed: failed to validate item 1: property \"value\" is required"}
|
||||
|
||||
|
||||
|
||||
=== TEST 15: spawn runner which can't be terminated, ensure APISIX won't be blocked
|
||||
--- ext_plugin_cmd
|
||||
["t/plugin/ext-plugin/runner_can_not_terminated.sh"]
|
||||
--- config
|
||||
location /t {
|
||||
return 200;
|
||||
}
|
||||
|
||||
|
||||
|
||||
=== TEST 16: prepare conf with global rule
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/global_rules/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
"conf": [
|
||||
{"name":"foo", "value":"bar"},
|
||||
{"name":"cat", "value":"dog"}
|
||||
]
|
||||
}
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 17: hit
|
||||
--- request
|
||||
GET /hello
|
||||
--- response_body
|
||||
hello world
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({with_conf = true, expect_key_pattern = [[^global_rule#1#ext-plugin-post-req#]]})
|
||||
}
|
||||
}
|
||||
--- error_log eval
|
||||
qr/get conf token: 233 conf: \[(\{"value":"bar","name":"foo"\}|\{"name":"foo","value":"bar"\}),(\{"value":"dog","name":"cat"\}|\{"name":"cat","value":"dog"\})\]/
|
||||
|
||||
|
||||
|
||||
=== TEST 18: clean global rule
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/global_rules/1',
|
||||
ngx.HTTP_DELETE)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
=== TEST 19: default allow_degradation
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
"conf": [
|
||||
{"name":"foo", "value":"bar"},
|
||||
{"name":"cat", "value":"dog"}
|
||||
]
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 20: ext-plugin wrong, req reject
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock1;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
--- error_code: 503
|
||||
--- error_log eval
|
||||
qr/failed to connect to the unix socket/
|
||||
|
||||
|
||||
|
||||
=== TEST 21: open allow_degradation
|
||||
--- config
|
||||
location /t {
|
||||
content_by_lua_block {
|
||||
local json = require("toolkit.json")
|
||||
local t = require("lib.test_admin")
|
||||
|
||||
local code, message, res = t.test('/apisix/admin/routes/1',
|
||||
ngx.HTTP_PUT,
|
||||
[[{
|
||||
"uri": "/hello",
|
||||
"plugins": {
|
||||
"ext-plugin-post-req": {
|
||||
"conf": [
|
||||
{"name":"foo", "value":"bar"},
|
||||
{"name":"cat", "value":"dog"}
|
||||
],
|
||||
"allow_degradation": true
|
||||
}
|
||||
},
|
||||
"upstream": {
|
||||
"nodes": {
|
||||
"127.0.0.1:1980": 1
|
||||
},
|
||||
"type": "roundrobin"
|
||||
}
|
||||
}]]
|
||||
)
|
||||
|
||||
if code >= 300 then
|
||||
ngx.status = code
|
||||
ngx.say(message)
|
||||
return
|
||||
end
|
||||
|
||||
ngx.say(message)
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
passed
|
||||
|
||||
|
||||
|
||||
=== TEST 22: ext-plugin wrong, req access
|
||||
--- request
|
||||
GET /hello
|
||||
--- extra_stream_config
|
||||
server {
|
||||
listen unix:$TEST_NGINX_HTML_DIR/nginx.sock1;
|
||||
|
||||
content_by_lua_block {
|
||||
local ext = require("lib.ext-plugin")
|
||||
ext.go({})
|
||||
}
|
||||
}
|
||||
--- response_body
|
||||
hello world
|
||||
--- error_log eval
|
||||
qr/Plugin Runner.*allow degradation/
|
@@ -0,0 +1,65 @@
|
||||
#
|
||||
# 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;
|
||||
|
||||
my $nginx_binary = $ENV{'TEST_NGINX_BINARY'} || 'nginx';
|
||||
my $version = eval { `$nginx_binary -V 2>&1` };
|
||||
|
||||
if ($version !~ m/\/apisix-nginx-module/) {
|
||||
plan(skip_all => "apisix-nginx-module not installed");
|
||||
} else {
|
||||
plan('no_plan');
|
||||
}
|
||||
|
||||
repeat_each(1);
|
||||
no_long_string();
|
||||
no_root_location();
|
||||
no_shuffle();
|
||||
log_level("info");
|
||||
|
||||
add_block_preprocessor(sub {
|
||||
my ($block) = @_;
|
||||
|
||||
my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']";
|
||||
my $extra_yaml_config = <<_EOC_;
|
||||
ext-plugin:
|
||||
cmd: $cmd
|
||||
_EOC_
|
||||
$block->set_value("extra_yaml_config", $extra_yaml_config);
|
||||
|
||||
if (!$block->request) {
|
||||
$block->set_value("request", "GET /t");
|
||||
}
|
||||
|
||||
if (!$block->error_log) {
|
||||
$block->set_value("no_error_log", "[error]\n[alert]");
|
||||
}
|
||||
});
|
||||
|
||||
run_tests;
|
||||
|
||||
__DATA__
|
||||
|
||||
=== TEST 1: terminate spawn runner
|
||||
--- ext_plugin_cmd
|
||||
["t/plugin/ext-plugin/runner.sh", "3600"]
|
||||
--- config
|
||||
location /t {
|
||||
return 200;
|
||||
}
|
||||
--- shutdown_error_log eval
|
||||
qr/terminate runner \d+ with SIGTERM/
|
Reference in New Issue
Block a user