From 0ef2c01301e1653f2356f7f82ccfb91c74c247a1 Mon Sep 17 00:00:00 2001 From: Hamzah Qudsi Date: Fri, 6 Jan 2023 12:52:55 -0500 Subject: [PATCH] enable HTTPRouteMethodMatching conformance test Signed-off-by: Hamzah Qudsi --- test/conformance/conformance_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/conformance/conformance_test.go b/test/conformance/conformance_test.go index 691e3bc37f..1bc4cce1f6 100644 --- a/test/conformance/conformance_test.go +++ b/test/conformance/conformance_test.go @@ -57,6 +57,7 @@ func TestGatewayAPIConformance(t *testing.T) { suite.SupportHTTPRouteQueryParamMatching: true, suite.SupportReferenceGrant: true, suite.SupportHTTPResponseHeaderModification: true, + suite.SupportHTTPRouteMethodMatching: true, }, }) cSuite.Setup(t) @@ -69,6 +70,7 @@ func TestGatewayAPIConformance(t *testing.T) { tests.HTTPExactPathMatching, tests.HTTPRouteCrossNamespace, tests.HTTPRouteHeaderMatching, + tests.HTTPRouteMethodMatching, tests.HTTPRouteMatchingAcrossRoutes, tests.HTTPRouteHostnameIntersection, tests.HTTPRouteListenerHostnameMatching,