-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: rerun rewrite phase for newly added plugins in consumer (#6502)
- Loading branch information
1 parent
61a5908
commit 65cd5d0
Showing
3 changed files
with
249 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,240 @@ | ||
# | ||
# 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'; | ||
|
||
log_level('info'); | ||
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->response_body) { | ||
$block->set_value("response_body", "passed\n"); | ||
} | ||
|
||
if (!$block->no_error_log && !$block->error_log) { | ||
$block->set_value("no_error_log", "[error]\n[alert]"); | ||
} | ||
}); | ||
|
||
|
||
our $debug_config = t::APISIX::read_file("conf/debug.yaml"); | ||
$debug_config =~ s/basic:\n enable: false/basic:\n enable: true/; | ||
$debug_config =~ s/hook_conf:\n enable: false/hook_conf:\n enable: true/; | ||
|
||
run_tests; | ||
|
||
__DATA__ | ||
=== TEST 1: configure non-auth plugins in the consumer and run it's rewrite phase | ||
--- config | ||
location /t { | ||
content_by_lua_block { | ||
local t = require("lib.test_admin").test | ||
local code, body = t('/apisix/admin/consumers/jack', | ||
ngx.HTTP_PUT, | ||
[[{ | ||
"username": "jack", | ||
"plugins": { | ||
"key-auth": { | ||
"key": "auth-jack" | ||
}, | ||
"proxy-rewrite": { | ||
"uri": "/uri/plugin_proxy_rewrite", | ||
"headers": { | ||
"X-Api-Engine": "APISIX", | ||
"X-CONSUMER-ID": "1" | ||
} | ||
} | ||
} | ||
}]] | ||
) | ||
local code, body = t('/apisix/admin/routes/1', | ||
ngx.HTTP_PUT, | ||
[[{ | ||
"plugins": { | ||
"key-auth": {} | ||
}, | ||
"upstream": { | ||
"nodes": { | ||
"127.0.0.1:1980": 1 | ||
}, | ||
"type": "roundrobin" | ||
}, | ||
"uri": "/hello" | ||
}]] | ||
) | ||
if code >= 300 then | ||
ngx.status = code | ||
end | ||
ngx.say(body) | ||
} | ||
} | ||
--- response_body | ||
passed | ||
=== TEST 2: hit routes | ||
--- request | ||
GET /hello | ||
--- more_headers | ||
apikey: auth-jack | ||
--- response_body | ||
uri: /uri/plugin_proxy_rewrite | ||
apikey: auth-jack | ||
host: localhost | ||
x-api-engine: APISIX | ||
x-consumer-id: 1 | ||
x-real-ip: 127.0.0.1 | ||
=== TEST 3: trace plugins info for debug | ||
--- debug_config eval: $::debug_config | ||
--- config | ||
location /t { | ||
content_by_lua_block { | ||
local json = require("toolkit.json") | ||
local ngx_re = require("ngx.re") | ||
local http = require "resty.http" | ||
local httpc = http.new() | ||
local headers = {} | ||
headers["apikey"] = "auth-jack" | ||
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello" | ||
local res, err = httpc:request_uri(uri, { | ||
method = "GET", | ||
headers = headers, | ||
}) | ||
local debug_header = res.headers["Apisix-Plugins"] | ||
local arr = ngx_re.split(debug_header, ", ") | ||
local hash = {} | ||
for i, v in ipairs(arr) do | ||
hash[v] = true | ||
end | ||
ngx.status = res.status | ||
ngx.say(json.encode(hash)) | ||
} | ||
} | ||
--- response_body | ||
{"key-auth":true,"proxy-rewrite":true} | ||
=== TEST 4: configure non-auth plugins in the route and run it's rewrite phase | ||
--- config | ||
location /t { | ||
content_by_lua_block { | ||
local t = require("lib.test_admin").test | ||
local code, body = t('/apisix/admin/consumers/jack', | ||
ngx.HTTP_PUT, | ||
[[{ | ||
"username": "jack", | ||
"plugins": { | ||
"key-auth": { | ||
"key": "auth-jack" | ||
} | ||
} | ||
}]] | ||
) | ||
local code, body = t('/apisix/admin/routes/1', | ||
ngx.HTTP_PUT, | ||
[[{ | ||
"plugins": { | ||
"key-auth": {}, | ||
"proxy-rewrite": { | ||
"uri": "/uri/plugin_proxy_rewrite", | ||
"headers": { | ||
"X-Api-Engine": "APISIX", | ||
"X-CONSUMER-ID": "1" | ||
} | ||
} | ||
}, | ||
"upstream": { | ||
"nodes": { | ||
"127.0.0.1:1980": 1 | ||
}, | ||
"type": "roundrobin" | ||
}, | ||
"uri": "/hello" | ||
}]] | ||
) | ||
if code >= 300 then | ||
ngx.status = code | ||
end | ||
ngx.say(body) | ||
} | ||
} | ||
--- response_body | ||
passed | ||
=== TEST 5: hit routes | ||
--- request | ||
GET /hello | ||
--- more_headers | ||
apikey: auth-jack | ||
--- response_body | ||
uri: /uri/plugin_proxy_rewrite | ||
apikey: auth-jack | ||
host: localhost | ||
x-api-engine: APISIX | ||
x-consumer-id: 1 | ||
x-real-ip: 127.0.0.1 | ||
=== TEST 6: trace plugins info for debug | ||
--- debug_config eval: $::debug_config | ||
--- config | ||
location /t { | ||
content_by_lua_block { | ||
local json = require("toolkit.json") | ||
local ngx_re = require("ngx.re") | ||
local http = require "resty.http" | ||
local httpc = http.new() | ||
local headers = {} | ||
headers["apikey"] = "auth-jack" | ||
local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello" | ||
local res, err = httpc:request_uri(uri, { | ||
method = "GET", | ||
headers = headers, | ||
}) | ||
local debug_header = res.headers["Apisix-Plugins"] | ||
local arr = ngx_re.split(debug_header, ", ") | ||
local hash = {} | ||
for i, v in ipairs(arr) do | ||
hash[v] = true | ||
end | ||
ngx.status = res.status | ||
ngx.say(json.encode(hash)) | ||
} | ||
} | ||
--- response_body | ||
{"key-auth":true,"proxy-rewrite":true} |