We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05f281 commit be595a2Copy full SHA for be595a2
conformance/tests/httproute-matching.go
@@ -64,6 +64,19 @@ var HTTPRouteMatching = suite.ConformanceTest{
64
Request: http.Request{Path: "/", Headers: map[string]string{"Version": "two"}},
65
Backend: "infra-backend-v2",
66
Namespace: ns,
67
+ }, {
68
+ Request: http.Request{Path: "/v2/"},
69
+ Backend: "infra-backend-v2",
70
+ Namespace: ns,
71
72
+ // Not a path segment prefix so should not match /v2.
73
+ Request: http.Request{Path: "/v2example"},
74
+ Backend: "infra-backend-v1",
75
76
77
+ Request: http.Request{Path: "/foo/v2/example"},
78
79
80
}}
81
82
for i := range testCases {
0 commit comments