Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(proxy-mirror): use with uri rewrite #8718

Merged
merged 2 commits into from
Jan 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions apisix/plugins/proxy-mirror.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,20 @@ end


local function enable_mirror(ctx, conf)
if conf.path and conf.path_concat_mode == "prefix" then
ctx.var.upstream_mirror_uri = resolver_host(conf.host) .. conf.path .. ctx.var.uri ..
ctx.var.is_args .. (ctx.var.args or '')
else
ctx.var.upstream_mirror_uri = resolver_host(conf.host) .. (conf.path or ctx.var.uri) ..
ctx.var.is_args .. (ctx.var.args or '')
local uri = (ctx.var.upstream_uri and ctx.var.upstream_uri ~= "") and
ctx.var.upstream_uri or
ctx.var.uri .. ctx.var.is_args .. (ctx.var.args or '')

if conf.path then
if conf.path_concat_mode == "prefix" then
uri = conf.path .. uri
else
uri = conf.path .. ctx.var.is_args .. (ctx.var.args or '')
end
end

ctx.var.upstream_mirror_uri = resolver_host(conf.host) .. uri

if has_mod then
apisix_ngx_client.enable_mirror()
end
Expand Down
128 changes: 128 additions & 0 deletions t/plugin/proxy-mirror2.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
#
# 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_shuffle();
no_root_location();
log_level('info');
worker_connections(1024);

add_block_preprocessor(sub {
my ($block) = @_;

my $http_config = $block->http_config // <<_EOC_;

server {
listen 1986;
server_tokens off;

location / {
content_by_lua_block {
local core = require("apisix.core")
core.log.info("upstream_http_version: ", ngx.req.http_version())

local headers_tab = ngx.req.get_headers()
local headers_key = {}
for k in pairs(headers_tab) do
core.table.insert(headers_key, k)
end
core.table.sort(headers_key)

for _, v in pairs(headers_key) do
core.log.info(v, ": ", headers_tab[v])
end

core.log.info("uri: ", ngx.var.request_uri)
ngx.say("hello world")
}
}
}
_EOC_

$block->set_value("http_config", $http_config);

if (!$block->request) {
$block->set_value("request", "GET /t");
}
});

run_tests;

__DATA__

=== TEST 1: use proxy-rewrite to change uri before mirror
--- config
location /t {
content_by_lua_block {
local t = require("lib.test_admin").test
local code, body = t('/apisix/admin/routes/1',
ngx.HTTP_PUT,
[[{
"plugins": {
"proxy-rewrite":{
"_meta": {
"priority": 1010
},
"uri": "/hello"
},
"proxy-mirror": {
"_meta": {
"priority": 1008
},
"host": "http://127.0.0.1:1986"
}
},
"upstream": {
"nodes": {
"127.0.0.1:1980": 1
},
"type": "roundrobin"
},
"uri": "/nope"
}]]
)

if code >= 300 then
ngx.status = code
end
ngx.say(body)
}
}
--- response_body
passed



=== TEST 2: hit route (with proxy-rewrite)
--- request
GET /nope
--- response_body
hello world
--- error_log
uri: /hello



=== TEST 3: hit route (with proxy-rewrite and args)
--- request
GET /nope?a=b&b=c&c=d
--- response_body
hello world
--- error_log
uri: /hello?a=b&b=c&c=d