This is an automated email from the ASF dual-hosted git repository. ronething pushed a commit to branch test/add_e2e in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
commit 2c4a91bf1ebe470321bc45eccfb24215793d91bf Author: Ashing Zheng <[email protected]> AuthorDate: Mon Sep 29 14:23:29 2025 +0800 test: add e2e test case for webhook Signed-off-by: Ashing Zheng <[email protected]> --- test/e2e/apisix/e2e_test.go | 1 + test/e2e/{gatewayapi/webhook.go => webhook/gateway.go} | 2 +- test/e2e/{ingress/webhook.go => webhook/ingress.go} | 2 +- test/e2e/{ingress/ingressclass_webhook.go => webhook/ingressclass.go} | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/test/e2e/apisix/e2e_test.go b/test/e2e/apisix/e2e_test.go index 03fe0ca6..fde91636 100644 --- a/test/e2e/apisix/e2e_test.go +++ b/test/e2e/apisix/e2e_test.go @@ -30,6 +30,7 @@ import ( _ "github.com/apache/apisix-ingress-controller/test/e2e/gatewayapi" _ "github.com/apache/apisix-ingress-controller/test/e2e/ingress" "github.com/apache/apisix-ingress-controller/test/e2e/scaffold" + _ "github.com/apache/apisix-ingress-controller/test/e2e/webhook" ) // TestAPISIXE2E runs e2e tests using the APISIX standalone mode diff --git a/test/e2e/gatewayapi/webhook.go b/test/e2e/webhook/gateway.go similarity index 99% rename from test/e2e/gatewayapi/webhook.go rename to test/e2e/webhook/gateway.go index 92f65f93..09bfc3ce 100644 --- a/test/e2e/gatewayapi/webhook.go +++ b/test/e2e/webhook/gateway.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -package gatewayapi +package webhook import ( "fmt" diff --git a/test/e2e/ingress/webhook.go b/test/e2e/webhook/ingress.go similarity index 99% rename from test/e2e/ingress/webhook.go rename to test/e2e/webhook/ingress.go index 310b6629..37608fb2 100644 --- a/test/e2e/ingress/webhook.go +++ b/test/e2e/webhook/ingress.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -package ingress +package webhook import ( "fmt" diff --git a/test/e2e/ingress/ingressclass_webhook.go b/test/e2e/webhook/ingressclass.go similarity index 99% rename from test/e2e/ingress/ingressclass_webhook.go rename to test/e2e/webhook/ingressclass.go index 9c1f3174..8192a51b 100644 --- a/test/e2e/ingress/ingressclass_webhook.go +++ b/test/e2e/webhook/ingressclass.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -package ingress +package webhook import ( "fmt"
