forked from kubernetes-sigs/gateway-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttproute-query-param-matching.go
158 lines (143 loc) · 5.13 KB
/
httproute-query-param-matching.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
Copyright 2022 The Kubernetes Authors.
Licensed 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.
*/
package tests
import (
"testing"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/gateway-api/conformance/utils/http"
"sigs.k8s.io/gateway-api/conformance/utils/kubernetes"
"sigs.k8s.io/gateway-api/conformance/utils/suite"
"sigs.k8s.io/gateway-api/pkg/features"
)
func init() {
ConformanceTests = append(ConformanceTests, HTTPRouteQueryParamMatching)
}
var HTTPRouteQueryParamMatching = suite.ConformanceTest{
ShortName: "HTTPRouteQueryParamMatching",
Description: "A single HTTPRoute with query param matching for different backends",
Manifests: []string{"tests/httproute-query-param-matching.yaml"},
Features: []features.FeatureName{
features.SupportGateway,
features.SupportHTTPRoute,
features.SupportHTTPRouteQueryParamMatching,
},
Test: func(t *testing.T, suite *suite.ConformanceTestSuite) {
ns := "gateway-conformance-infra"
routeNN := types.NamespacedName{Namespace: ns, Name: "query-param-matching"}
gwNN := types.NamespacedName{Namespace: ns, Name: "same-namespace"}
gwAddr := kubernetes.GatewayAndHTTPRoutesMustBeAccepted(t, suite.Client, suite.TimeoutConfig, suite.ControllerName, kubernetes.NewGatewayRef(gwNN), routeNN)
kubernetes.HTTPRouteMustHaveResolvedRefsConditionsTrue(t, suite.Client, suite.TimeoutConfig, routeNN, gwNN)
testCases := []http.ExpectedResponse{{
Request: http.Request{Path: "/?animal=whale"},
Backend: "infra-backend-v1",
Namespace: ns,
}, {
Request: http.Request{Path: "/?animal=dolphin"},
Backend: "infra-backend-v2",
Namespace: ns,
}, {
Request: http.Request{Path: "/?animal=dolphin&color=blue"},
Backend: "infra-backend-v3",
Namespace: ns,
}, {
Request: http.Request{Path: "/?ANIMAL=Whale"},
Backend: "infra-backend-v3",
Namespace: ns,
}, {
Request: http.Request{Path: "/?animal=whale&otherparam=irrelevant"},
Backend: "infra-backend-v1",
Namespace: ns,
}, {
Request: http.Request{Path: "/?animal=dolphin&color=yellow"},
Backend: "infra-backend-v2",
Namespace: ns,
}, {
Request: http.Request{Path: "/?color=blue"},
Response: http.Response{StatusCode: 404},
}, {
Request: http.Request{Path: "/?animal=dog"},
Response: http.Response{StatusCode: 404},
}, {
Request: http.Request{Path: "/?animal=whaledolphin"},
Response: http.Response{StatusCode: 404},
}, {
Request: http.Request{Path: "/"},
Response: http.Response{StatusCode: 404},
}}
// Combinations of query param matching with other core matches.
testCases = append(testCases, []http.ExpectedResponse{
{
Request: http.Request{Path: "/path1?animal=whale"},
Backend: "infra-backend-v1",
Namespace: ns,
},
{
Request: http.Request{Headers: map[string]string{"version": "one"}, Path: "/?animal=whale"},
Backend: "infra-backend-v2",
Namespace: ns,
},
{
Request: http.Request{Headers: map[string]string{"version": "two"}, Path: "/path2?animal=whale"},
Backend: "infra-backend-v3",
Namespace: ns,
},
}...)
// Ensure that combinations of matches which are OR'd together match
// even if only one of them is used in the request.
testCases = append(testCases, []http.ExpectedResponse{
{
Request: http.Request{Path: "/path3?animal=shark"},
Backend: "infra-backend-v1",
Namespace: ns,
},
{
Request: http.Request{Headers: map[string]string{"version": "three"}, Path: "/path4?animal=kraken"},
Backend: "infra-backend-v1",
Namespace: ns,
},
}...)
// Ensure that combinations of match types which are ANDed together do not match
// when only a subset of match types is used in the request.
testCases = append(testCases, []http.ExpectedResponse{
{
Request: http.Request{Path: "/?animal=shark"},
Response: http.Response{StatusCode: 404},
},
{
Request: http.Request{Path: "/path4?animal=kraken"},
Response: http.Response{StatusCode: 404},
},
}...)
// For requests that satisfy multiple matches, ensure precedence order
// defined by the Gateway API spec is maintained.
testCases = append(testCases, []http.ExpectedResponse{
{
Request: http.Request{Path: "/path5?animal=hydra"},
Backend: "infra-backend-v1",
Namespace: ns,
},
{
Request: http.Request{Headers: map[string]string{"version": "four"}, Path: "/?animal=hydra"},
Backend: "infra-backend-v3",
Namespace: ns,
},
}...)
for i := range testCases {
tc := testCases[i]
t.Run(tc.GetTestCaseName(i), func(t *testing.T) {
t.Parallel()
http.MakeRequestAndExpectEventuallyConsistentResponse(t, suite.RoundTripper, suite.TimeoutConfig, gwAddr, tc)
})
}
},
}