generated from kubewarden/go-policy-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
validate_test.go
294 lines (278 loc) · 7 KB
/
validate_test.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
package main
import (
"encoding/json"
"testing"
kubewarden_protocol "github.com/kubewarden/policy-sdk-go/protocol"
kubewarden_testing "github.com/kubewarden/policy-sdk-go/testing"
)
func TestEmptySettingsLeadsToApproval(t *testing.T) {
settings := Settings{}
payload, err := kubewarden_testing.BuildValidationRequestFromFixture(
"test_data/request-pod-hostpaths.json",
&settings)
if err != nil {
t.Errorf("Unexpected error: %+v", err)
}
responsePayload, err := validate(payload)
if err != nil {
t.Errorf("Unexpected error: %+v", err)
}
var response kubewarden_protocol.ValidationResponse
if err := json.Unmarshal(responsePayload, &response); err != nil {
t.Errorf("Unexpected error: %+v", err)
}
if response.Accepted != true {
t.Error("Unexpected rejection")
}
}
func TestApproval(t *testing.T) {
for _, tcase := range []struct {
name string
testData string
settings Settings
}{
{
name: "pod without hostpaths",
testData: "test_data/request-pod-no-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/foo",
ReadOnly: false,
},
{
PathPrefix: "/foo/bar",
ReadOnly: true,
},
},
},
},
{
name: "/data hostpath as readOnly, no precedence",
testData: "test_data/request-pod-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/data",
ReadOnly: true,
},
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local/aaa",
ReadOnly: false,
},
},
},
},
{
name: "precedence readonly most specific path",
testData: "test_data/request-pod-precedence.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local",
ReadOnly: true,
},
},
},
},
{
name: "multiple containers precedence readonly most specific path",
testData: "test_data/request-pod-multiple-containers.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local",
ReadOnly: true,
},
},
},
},
} {
payload, err := kubewarden_testing.BuildValidationRequestFromFixture(
tcase.testData,
&tcase.settings)
if err != nil {
t.Errorf("on test %q, got unexpected error '%+v'", tcase.name, err)
}
responsePayload, err := validate(payload)
if err != nil {
t.Errorf("on test %q, got unexpected error '%+v'", tcase.name, err)
}
var response kubewarden_protocol.ValidationResponse
if err := json.Unmarshal(responsePayload, &response); err != nil {
t.Errorf("on test %q, got unexpected error '%+v'", tcase.name, err)
}
if response.Accepted != true {
t.Errorf("on test %q, got unexpected rejection", tcase.name)
}
}
}
func TestRejection(t *testing.T) {
for _, tcase := range []struct {
name string
testData string
settings Settings
error string
}{
{
name: "volumeMount /data is not in settings",
testData: "test_data/request-pod-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local/aaa",
ReadOnly: false,
},
},
},
error: "hostPath '/data' mounted as 'test-data' is not in the AllowedHostPaths list",
},
{
name: "volumeMount /data should be readWrite",
testData: "test_data/request-pod-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
// testcase:
PathPrefix: "/data",
ReadOnly: false,
},
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local/aaa",
ReadOnly: false,
},
},
},
error: "hostPath '/data' mounted as 'test-data' should be readOnly 'false'",
},
{
name: "volumeMount /var/local/aaa should be readOnly",
testData: "test_data/request-pod-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/data",
ReadOnly: true,
},
{
PathPrefix: "/var",
ReadOnly: false,
},
{
// testcase:
PathPrefix: "/var/local/aaa",
ReadOnly: true,
},
},
},
error: "hostPath '/var/local/aaa' mounted as 'test-var-local-aaa' should be readOnly 'true';" +
" hostPath '/var/local/aaa' mounted as 'test-var-local-aaa' should be readOnly 'true'",
},
{
name: "precedence read only least specific path",
testData: "test_data/request-pod-precedence-least.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local",
ReadOnly: true,
},
},
},
error: "hostPath '/var/local/aaa' mounted as 'test-var-local-aaa' should be readOnly 'true'",
},
{
name: "disallow /data if prefix is /dat",
testData: "test_data/request-pod-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
// testcase:
PathPrefix: "/dat",
ReadOnly: true,
},
{
PathPrefix: "/var",
ReadOnly: false,
},
{
PathPrefix: "/var/local/aaa",
ReadOnly: false,
},
},
},
error: "hostPath '/data' mounted as 'test-data' is not in the AllowedHostPaths list",
},
{
name: "several errors",
testData: "test_data/request-pod-hostpaths.json",
settings: Settings{
AllowedHostPaths: []HostPath{
{
PathPrefix: "/data",
ReadOnly: false,
},
{
PathPrefix: "/va",
ReadOnly: true,
},
{
PathPrefix: "/var/local/aaa",
ReadOnly: true,
},
},
},
error: "hostPath '/data' mounted as 'test-data' should be readOnly 'false';" +
" hostPath '/var' mounted as 'test-var' is not in the AllowedHostPaths list;" +
" hostPath '/var' mounted as 'test-var' is not in the AllowedHostPaths list;" +
" hostPath '/var/local/aaa' mounted as 'test-var-local-aaa' should be readOnly 'true';" +
" hostPath '/var/local/aaa' mounted as 'test-var-local-aaa' should be readOnly 'true'",
},
} {
payload, err := kubewarden_testing.BuildValidationRequestFromFixture(
tcase.testData,
&tcase.settings)
if err != nil {
t.Errorf("on test %q, got unexpected error '%+v'", tcase.name, err)
}
responsePayload, err := validate(payload)
if err != nil {
t.Errorf("on test %q, got unexpected error '%+v'", tcase.name, err)
}
var response kubewarden_protocol.ValidationResponse
if err := json.Unmarshal(responsePayload, &response); err != nil {
t.Errorf("on test %q, got unexpected error '%+v'", tcase.name, err)
}
if response.Accepted != false {
t.Errorf("on test %q, got unexpected approval", tcase.name)
}
if *response.Message != tcase.error {
t.Errorf("on test %q, got '%s' instead of '%s'",
tcase.name, *response.Message, tcase.error)
}
}
}