forked from agones-dev/agones
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebhooks_test.go
More file actions
140 lines (119 loc) · 3.8 KB
/
Copy pathwebhooks_test.go
File metadata and controls
140 lines (119 loc) · 3.8 KB
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
// Copyright 2018 Google Inc. All Rights Reserved.
//
// 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 webhooks
import (
"net/http"
"net/http/httptest"
"testing"
"bytes"
"encoding/json"
"github.com/stretchr/testify/assert"
"k8s.io/api/admission/v1beta1"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
)
type testServer struct {
server *httptest.Server
}
func (ts *testServer) Close() error {
ts.server.Close()
return nil
}
// ListenAndServeTLS(certFile, keyFile string) error
func (ts *testServer) ListenAndServeTLS(certFile, keyFile string) error {
ts.server.StartTLS()
return nil
}
func TestWebHookAddHandler(t *testing.T) {
t.Parallel()
type testHandler struct {
gk schema.GroupKind
op v1beta1.Operation
}
type expected struct {
count int
}
fixtures := map[string]struct {
handlers []testHandler
expected expected
}{
"single, matching": {
handlers: []testHandler{{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Create}},
expected: expected{count: 1},
},
"double, one matching op": {
expected: expected{count: 1},
handlers: []testHandler{
{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Create},
{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Update},
},
},
"double, one matching group": {
expected: expected{count: 1},
handlers: []testHandler{
{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Create},
{gk: schema.GroupKind{Group: "nope", Kind: "kind"}, op: v1beta1.Create},
},
},
"double, one matching kind": {
expected: expected{count: 1},
handlers: []testHandler{
{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Create},
{gk: schema.GroupKind{Group: "group", Kind: "nope"}, op: v1beta1.Create},
},
},
"double, both matching": {
expected: expected{count: 2},
handlers: []testHandler{
{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Create},
{gk: schema.GroupKind{Group: "group", Kind: "kind"}, op: v1beta1.Create},
},
},
}
for k, handles := range fixtures {
t.Run(k, func(t *testing.T) {
stop := make(chan struct{})
defer close(stop)
fixture := v1beta1.AdmissionReview{Request: &v1beta1.AdmissionRequest{
Kind: v1.GroupVersionKind{Kind: "kind", Group: "group", Version: "version"},
Operation: v1beta1.Create,
UID: "1234"}}
callCount := 0
wh := NewWebHook("", "")
ts := &testServer{server: httptest.NewUnstartedServer(wh.mux)}
wh.server = ts
for _, th := range handles.handlers {
wh.AddHandler("/test", th.gk, th.op, func(review v1beta1.AdmissionReview) (v1beta1.AdmissionReview, error) {
assert.Equal(t, fixture.Request, review.Request)
assert.True(t, review.Response.Allowed)
callCount++
return review, nil
})
}
err := wh.Run(0, stop)
assert.Nil(t, err)
client := ts.server.Client()
url := ts.server.URL + "/test"
buf := &bytes.Buffer{}
err = json.NewEncoder(buf).Encode(fixture)
assert.Nil(t, err)
r, err := http.NewRequest("GET", url, buf)
assert.Nil(t, err)
resp, err := client.Do(r)
assert.Nil(t, err)
assert.Equal(t, http.StatusOK, resp.StatusCode)
assert.Equal(t, handles.expected.count, callCount, "[%v] /test should have been called for %#v", k, handles)
})
}
}