-
Notifications
You must be signed in to change notification settings - Fork 351
/
api.go
230 lines (187 loc) · 4.44 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
package kubernetestest
import (
"encoding/json"
"errors"
"io"
"net/http"
"regexp"
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{})
for _, spec := range specs {
d := yaml.NewDecoder(spec)
for {
var o map[string]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
}
meta, ok := o["metadata"].(map[interface{}]interface{})
if !ok {
return nil, errInvalidFixture
}
namespace, ok := meta["namespace"]
if !ok || namespace == "" {
namespace = "default"
} else {
if _, ok := namespace.(string); !ok {
return nil, 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)
}
}
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 = ns.services
case "ingresses":
b = ns.ingresses
case "routegroups":
b = ns.routeGroups
case "endpoints":
b = ns.endpoints
case "secrets":
b = ns.secrets
default:
w.WriteHeader(http.StatusNotFound)
return
}
w.Write(b)
}
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
}