-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/3.3.x' into release/3.3.1
- Loading branch information
Showing
12 changed files
with
1,436 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
name: Backport | ||
on: | ||
pull_request_target: | ||
types: | ||
- closed | ||
- labeled | ||
|
||
types: [closed] | ||
permissions: | ||
contents: write # so it can comment | ||
pull-requests: write # so it can create pull requests | ||
jobs: | ||
backport: | ||
name: Backport | ||
runs-on: ubuntu-latest | ||
if: > | ||
github.event.pull_request.merged | ||
&& ( | ||
github.event.action == 'closed' | ||
|| ( | ||
github.event.action == 'labeled' | ||
&& contains(github.event.label.name, 'backport') | ||
) | ||
) | ||
if: github.event.pull_request.merged | ||
steps: | ||
- uses: tibdex/backport@2e217641d82d02ba0603f46b1aeedefb258890ac # v2.0.3 | ||
- uses: actions/checkout@v4 | ||
- name: Create backport pull requests | ||
uses: korthout/backport-action@cb79e4e5f46c7d7d653dd3d5fa8a9b0a945dfe4b # v2.1.0 | ||
with: | ||
github_token: ${{ secrets.PAT }} | ||
pull_title: '[backport -> ${target_branch}] ${pull_title}' | ||
merge_commits: 'skip' | ||
copy_labels_pattern: ^(?!backport ).* # copies all labels except those starting with "backport " | ||
label_pattern: ^backport (release\/[^ ]+)$ # filters for labels starting with "backport " and extracts the branch name | ||
pull_description: |- | ||
Automated backport to `${target_branch}`, triggered by a label in #${pull_number}. | ||
copy_assignees: true | ||
copy_milestone: true | ||
copy_requested_reviewers: true |
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,313 @@ | ||
-- This software is copyright Kong Inc. and its licensors. | ||
-- Use of the software is subject to the agreement between your organization | ||
-- and Kong Inc. If there is no such agreement, use is governed by and | ||
-- subject to the terms of the Kong Master Software License Agreement found | ||
-- at https://konghq.com/enterprisesoftwarelicense/. | ||
-- [ END OF LICENSE 0867164ffc95e54f04670b5169c09574bdbd9bba ] | ||
|
||
local http_mock = require "spec.helpers.http_mock" | ||
local tapping = require "spec.helpers.http_mock.tapping" | ||
local pl_file = require "pl.file" | ||
|
||
for _, tls in ipairs {true, false} do | ||
describe("http_mock with " .. (tls and "https" or "http") , function() | ||
local mock, client | ||
lazy_setup(function() | ||
mock = assert(http_mock.new(nil, { | ||
["/"] = { | ||
access = [[ | ||
ngx.print("hello world") | ||
ngx.exit(200) | ||
]] | ||
}, | ||
["/404"] = { | ||
access = [[ | ||
ngx.exit(404) | ||
]] | ||
} | ||
}, { | ||
eventually_timeout = 0.5, | ||
tls = tls, | ||
gen_client = true, | ||
log_opts = { | ||
resp = true, | ||
resp_body = true | ||
} | ||
})) | ||
|
||
assert(mock:start()) | ||
end) | ||
|
||
lazy_teardown(function() | ||
assert(mock:stop()) | ||
end) | ||
|
||
before_each(function() | ||
client = mock:get_client() | ||
end) | ||
|
||
after_each(function() | ||
mock:clean() | ||
-- it's an known issue of http_client that if we do not close the client, the next request will error out | ||
client:close() | ||
mock.client = nil | ||
end) | ||
|
||
it("get response", function() | ||
local res = assert(client:send({})) | ||
assert.response(res).has.status(200) | ||
assert.same(res:read_body(), "hello world") | ||
|
||
mock.eventually:has_response_satisfy(function(resp) | ||
assert.same(resp.body, "hello world") | ||
end) | ||
end) | ||
|
||
it("clean works", function() | ||
client:send({}) | ||
client:send({}) | ||
mock:clean() | ||
|
||
assert.error(function() | ||
mock.eventually:has_response_satisfy(function(resp) | ||
assert.same(resp.body, "hello world") | ||
end) | ||
end) | ||
end) | ||
|
||
it("clean works 2", function() | ||
mock.eventually:has_no_response_satisfy(function(resp) | ||
assert.same(resp.body, "hello world") | ||
end) | ||
end) | ||
|
||
it("mutiple request", function() | ||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.response(assert(client:send({}))).has.status(200) | ||
|
||
local records = mock:retrieve_mocking_logs() | ||
|
||
assert.equal(3, #records) | ||
end) | ||
|
||
it("request field", function() | ||
assert.response(assert(client:send({}))).has.status(200) | ||
|
||
mock.eventually:has_request_satisfy(function(req) | ||
assert.match("localhost:%d+", req.headers.Host) | ||
assert(req.headers["User-Agent"]) | ||
req.headers["Host"] = nil | ||
req.headers["User-Agent"] = nil | ||
assert.same(req, { | ||
headers = {}, | ||
method = "GET", | ||
uri = "/" | ||
}) | ||
end) | ||
end) | ||
|
||
it("http_mock assertion", function() | ||
local function new_check(record, status) | ||
assert.same(record.resp.status, status) | ||
return "has a response with status " .. status | ||
end | ||
|
||
http_mock.register_assert("status", new_check) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.no_error(function() | ||
mock.eventually:has_status(200) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.error(function() | ||
mock.eventually:has_status(404) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.no_error(function() | ||
mock.eventually:has_no_status(404) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.error(function() | ||
mock.eventually:has_no_status(200) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.no_error(function() | ||
mock.eventually:all_status(200) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.response(assert(client:send({ | ||
path = "/404" | ||
}))).has.status(404) | ||
assert.error(function() | ||
mock.eventually:all_status(200) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.response(assert(client:send({ | ||
path = "/404" | ||
}))).has.status(404) | ||
assert.no_error(function() | ||
mock.eventually:not_all_status(200) | ||
end) | ||
|
||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.response(assert(client:send({}))).has.status(200) | ||
assert.error(function() | ||
mock.eventually:not_all_status(200) | ||
end) | ||
end) | ||
end) | ||
end | ||
|
||
describe("http_mock error catch", function() | ||
it("error catch", function() | ||
local mock = assert(http_mock.new(nil, [[ | ||
error("hello world") | ||
ngx.exit(200) | ||
]], { | ||
eventually_timeout = 0.5, | ||
tls = true, | ||
gen_client = true, | ||
log_opts = { | ||
resp = true, | ||
resp_body = true | ||
} | ||
})) | ||
|
||
finally(function() | ||
assert(mock:stop()) | ||
end) | ||
|
||
assert(mock:start()) | ||
local client = mock:get_client() | ||
local res = assert(client:send({})) | ||
assert.response(res).has.status(500) | ||
|
||
mock.eventually:has_error_satisfy(function(err) | ||
return assert.same("hello world", err[1][1]) | ||
end) | ||
|
||
mock:clean() | ||
-- then we have no Error | ||
mock.eventually:has_no_error() | ||
end) | ||
end) | ||
|
||
describe("http_mock config", function() | ||
it("default mocking", function() | ||
local mock = assert(http_mock.new()) | ||
assert(mock:start()) | ||
finally(function() | ||
assert(mock:stop()) | ||
end) | ||
local client = mock:get_client() | ||
local res = assert(client:send({})) | ||
assert.response(res).has.status(200) | ||
assert.same(res:read_body(), "ok") | ||
end) | ||
|
||
it("prefix", function() | ||
local mock_prefix = "servroot_mock1" | ||
local mock = assert(http_mock.new(nil, nil, { | ||
prefix = mock_prefix | ||
})) | ||
mock:start() | ||
finally(function() | ||
assert(mock:stop()) | ||
end) | ||
|
||
local pid_filename = mock_prefix .. "/logs/nginx.pid" | ||
|
||
assert(pl_file.access_time(pid_filename) ~= nil, "mocking not in the correct place") | ||
end) | ||
|
||
it("init_by_lua_block inject", function () | ||
local mock = assert(http_mock.new(nil, { | ||
["/test"] = { | ||
access = [[ | ||
ngx.print(test_value) | ||
]], | ||
}, | ||
}, { | ||
init = [[ | ||
-- Test that the mock is injected | ||
test_value = "hello world" | ||
]] | ||
})) | ||
mock:start() | ||
finally(function() | ||
assert(mock:stop()) | ||
end) | ||
|
||
local client = mock:get_client() | ||
local res = assert(client:send({ | ||
path = "/test" | ||
})) | ||
assert.response(res).has.status(200) | ||
assert.same(res:read_body(), "hello world") | ||
end) | ||
end) | ||
|
||
local function remove_volatile_headers(req_t) | ||
req_t.headers["Connection"] = nil | ||
req_t.headers["Host"] = nil | ||
req_t.headers["User-Agent"] = nil | ||
req_t.headers["Content-Length"] = nil | ||
end | ||
|
||
describe("http_mock.tapping", function() | ||
local tapped, tapped_port | ||
lazy_setup(function() | ||
tapped, tapped_port = http_mock.new(nil, nil, { | ||
log_opts = { | ||
req = true, | ||
req_body = true, | ||
req_body_large = true, | ||
} | ||
}) | ||
tapped:start() | ||
end) | ||
lazy_teardown(function() | ||
tapped:stop(true) | ||
end) | ||
|
||
it("works", function() | ||
local tapping_mock = tapping.new(tapped_port) | ||
tapping_mock:start() | ||
finally(function() | ||
tapping_mock:stop(true) | ||
end) | ||
local client = tapping_mock:get_client() | ||
local request = { | ||
headers = { | ||
["test"] = "mock_debug" | ||
}, | ||
method = "POST", | ||
path = "/test!", | ||
body = "hello world", | ||
} | ||
local res = assert(client:send(request)) | ||
assert.response(res).has.status(200) | ||
assert.same(res:read_body(), "ok") | ||
|
||
request.uri = request.path | ||
request.path = nil | ||
|
||
local record = tapping_mock:retrieve_mocking_logs() | ||
local req_t = assert(record[1].req) | ||
remove_volatile_headers(req_t) | ||
assert.same(request, req_t) | ||
|
||
local upstream_record = tapped:retrieve_mocking_logs() | ||
local upstream_req_t = assert(upstream_record[1].req) | ||
remove_volatile_headers(upstream_req_t) | ||
assert.same(request, upstream_req_t) | ||
end) | ||
end) |
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
Oops, something went wrong.