-
Notifications
You must be signed in to change notification settings - Fork 351
/
api.go
323 lines (267 loc) · 7.02 KB
/
api.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
package kubernetestest
import (
"encoding/json"
"errors"
"io"
"net/http"
"regexp"
"strings"
yaml2 "github.com/ghodss/yaml"
"gopkg.in/yaml.v2"
"github.com/zalando/skipper/dataclients/kubernetes"
)
var errInvalidFixture = errors.New("invalid fixture")
type TestAPIOptions struct {
FailOn []string `yaml:"failOn"`
FindNot []string `yaml:"findNot"`
DisableRouteGroups bool `yaml:"disableRouteGroups"`
}
type namespace struct {
services []byte
ingresses []byte
routeGroups []byte
endpoints []byte
secrets []byte
}
type api struct {
failOn map[string]bool
findNot map[string]bool
namespaces map[string]namespace
all namespace
pathRx *regexp.Regexp
resourceList []byte
}
func NewAPI(o TestAPIOptions, specs ...io.Reader) (*api, error) {
a := &api{
namespaces: make(map[string]namespace),
pathRx: regexp.MustCompile(
"(/namespaces/([^/]+))?/(services|ingresses|routegroups|endpoints|secrets)",
),
}
var clr kubernetes.ClusterResourceList
if !o.DisableRouteGroups {
clr.Items = append(clr.Items, &kubernetes.ClusterResource{Name: kubernetes.RouteGroupsName})
}
a.failOn = mapStrings(o.FailOn)
a.findNot = mapStrings(o.FindNot)
clrb, err := json.Marshal(clr)
if err != nil {
return nil, err
}
a.resourceList = clrb
namespaces := make(map[string]map[string][]interface{})
all := make(map[string][]interface{})
addObject := func(o map[interface{}]interface{}) error {
kind, ok := o["kind"].(string)
if !ok {
return errInvalidFixture
}
meta, ok := o["metadata"].(map[interface{}]interface{})
if !ok {
return errInvalidFixture
}
namespace, ok := meta["namespace"]
if !ok || namespace == "" {
namespace = "default"
} else {
if _, ok := namespace.(string); !ok {
return errInvalidFixture
}
}
ns := namespace.(string)
if _, ok := namespaces[ns]; !ok {
namespaces[ns] = make(map[string][]interface{})
}
namespaces[ns][kind] = append(namespaces[ns][kind], o)
all[kind] = append(all[kind], o)
return nil
}
for _, spec := range specs {
d := yaml.NewDecoder(spec)
for {
var o map[interface{}]interface{}
if err := d.Decode(&o); err == io.EOF || err == nil && len(o) == 0 {
break
} else if err != nil {
return nil, err
}
kind, ok := o["kind"].(string)
if !ok {
return nil, errInvalidFixture
}
if kind == "List" {
items, ok := o["items"].([]interface{})
if !ok {
return nil, errInvalidFixture
}
for _, item := range items {
o, ok := item.(map[interface{}]interface{})
if !ok {
return nil, errInvalidFixture
}
if err := addObject(o); err != nil {
return nil, err
}
}
} else {
if err := addObject(o); err != nil {
return nil, err
}
}
}
}
for ns, kinds := range namespaces {
var err error
a.namespaces[ns], err = initNamespace(kinds)
if err != nil {
return nil, err
}
}
a.all, err = initNamespace(all)
if err != nil {
return nil, err
}
return a, nil
}
func (a *api) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if r.Method != "GET" {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
if a.failOn[r.URL.Path] {
w.WriteHeader(http.StatusInternalServerError)
return
}
if a.findNot[r.URL.Path] {
w.WriteHeader(http.StatusNotFound)
return
}
if r.URL.Path == kubernetes.ZalandoResourcesClusterURI {
w.Write(a.resourceList)
return
}
parts := a.pathRx.FindStringSubmatch(r.URL.Path)
if len(parts) == 0 {
w.WriteHeader(http.StatusNotFound)
return
}
ns := a.all
if parts[2] != "" {
ns = a.namespaces[parts[2]]
}
var b []byte
switch parts[3] {
case "services":
b = filterBySelectors(ns.services, parseSelectors(r))
case "ingresses":
b = filterBySelectors(ns.ingresses, parseSelectors(r))
case "routegroups":
b = filterBySelectors(ns.routeGroups, parseSelectors(r))
case "endpoints":
b = filterBySelectors(ns.endpoints, parseSelectors(r))
case "secrets":
b = filterBySelectors(ns.secrets, parseSelectors(r))
default:
w.WriteHeader(http.StatusNotFound)
return
}
w.Write(b)
}
// Parses an optional parameter with `label selectors` into a map if present or, if not present, returns nil.
func parseSelectors(r *http.Request) map[string]string {
rawSelector := r.URL.Query().Get("labelSelector")
if rawSelector == "" {
return nil
}
selectors := map[string]string{}
for _, selector := range strings.Split(rawSelector, ",") {
kv := strings.Split(selector, "=")
selectors[kv[0]] = kv[1]
}
return selectors
}
// Filters all resources that are already set in k8s namespace using the given selectors map.
// All resources are initially set to `namespace` as slices of bytes and for most tests it's not needed to make it any more complex.
// This helper function deserializes resources, finds a metadata with labels in them and check if they have all
// requested labels. If they do, they are returned.
func filterBySelectors(resources []byte, selectors map[string]string) []byte {
if len(selectors) == 0 {
return resources
}
labels := struct {
Items []struct {
Metadata struct {
Labels map[string]string `json:"labels"`
} `json:"metadata"`
} `json:"items"`
}{}
// every resource but top level is deserialized because we need access to the indexed array
allItems := struct {
Items []interface{} `json:"items"`
}{}
if json.Unmarshal(resources, &labels) != nil || json.Unmarshal(resources, &allItems) != nil {
return resources
}
// go over each item's label and check if all selectors with their values are present
var filteredItems []interface{}
for idx, item := range labels.Items {
allMatch := true
for k, v := range selectors {
label, ok := item.Metadata.Labels[k]
allMatch = allMatch && ok && label == v
}
if allMatch {
filteredItems = append(filteredItems, allItems.Items[idx])
}
}
var result []byte
if err := itemsJSON(&result, filteredItems); err != nil {
return resources
}
return result
}
func initNamespace(kinds map[string][]interface{}) (ns namespace, err error) {
if err = itemsJSON(&ns.services, kinds["Service"]); err != nil {
return
}
if err = itemsJSON(&ns.ingresses, kinds["Ingress"]); err != nil {
return
}
if err = itemsJSON(&ns.routeGroups, kinds["RouteGroup"]); err != nil {
return
}
if err = itemsJSON(&ns.endpoints, kinds["Endpoints"]); err != nil {
return
}
if err = itemsJSON(&ns.secrets, kinds["Secret"]); err != nil {
return
}
return
}
func itemsJSON(b *[]byte, o []interface{}) error {
items := map[string]interface{}{"items": o}
// converting back to YAML, because we have YAMLToJSON() for bytes, and
// the data in `o` contains YAML parser style keys of type interface{}
y, err := yaml.Marshal(items)
if err != nil {
return err
}
*b, err = yaml2.YAMLToJSON(y)
return err
}
func readAPIOptions(r io.Reader) (o TestAPIOptions, err error) {
var b []byte
b, err = io.ReadAll(r)
if err != nil {
return
}
err = yaml.Unmarshal(b, &o)
return
}
func mapStrings(s []string) map[string]bool {
m := make(map[string]bool)
for _, si := range s {
m[si] = true
}
return m
}