-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
407 lines (394 loc) · 9.9 KB
/
main_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
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package main
import (
"context"
"fmt"
"testing"
"github.com/aws/aws-sdk-go-v2/service/cloudwatch"
appsv1 "k8s.io/api/apps/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/kubernetes/fake"
)
// TestIsFittingMode tests IsFittingMode.
func TestIsFittingMode(t *testing.T) {
for _, tc := range []struct {
name string // Name of test case.
mode string // Fitting mode.
got int // Present number.
want int // Expected number.
fitting bool // Is it fitting the mode?
}{{
name: "1_unknown_mode",
mode: "DoesNotExist",
got: 1,
want: 1,
fitting: false,
}, {
name: "2_aot_fitting",
mode: ModeAllOfThem,
got: 3,
want: 3,
fitting: true,
}, {
name: "3_aot_not_fitting",
mode: ModeAllOfThem,
got: 3,
want: 5,
fitting: false,
}, {
name: "4_aot_fitting_zero",
mode: ModeAllOfThem,
got: 0,
want: 0,
fitting: true,
}, {
name: "5_alo_fitting_zero",
mode: ModeAtLeastOne,
got: 3,
want: 0,
fitting: true,
}, {
name: "5_alo_fitting",
mode: ModeAtLeastOne,
got: 1,
want: 8,
fitting: true,
}, {
name: "5_alo_not_fitting",
mode: ModeAtLeastOne,
got: 0,
want: 3,
fitting: false,
}} {
t.Run(tc.name, func(t *testing.T) {
if tc.fitting != IsFittingMode(tc.mode, tc.got, tc.want) {
t.Errorf(
"Unexpected return: got %v, want %v",
tc.fitting, !tc.fitting,
)
}
})
}
}
// TestPerformScan tests PerformScan.
func TestPerformScan(t *testing.T) {
for _, tc := range []struct {
name string // Name of test case.
objects []runtime.Object // Kubernetes objects.
targets []Target // Targets to scan.
expResultSuccess []bool // Expected result success status.
expResultReady []bool // Expected result ready status.
expScanSuccess bool // Expected scan success status.
expScanReady bool // Expected scan ready status.
}{{
name: "1_daemonset_query_failure",
targets: []Target{
{KindDaemonSet, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{false},
expResultReady: []bool{false},
expScanSuccess: false,
expScanReady: false,
}, {
name: "2_deployment_query_failure",
targets: []Target{
{KindDeployment, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{false},
expResultReady: []bool{false},
expScanSuccess: false,
expScanReady: false,
}, {
name: "3_statefulset_query_failure",
targets: []Target{
{KindStatefulSet, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{false},
expResultReady: []bool{false},
expScanSuccess: false,
expScanReady: false,
}, {
name: "4_unsupported_kind",
targets: []Target{
{"NotSupported", "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{false},
expResultReady: []bool{false},
expScanSuccess: false,
expScanReady: false,
}, {
name: "5_daemonset_success_ready",
objects: []runtime.Object{
&appsv1.DaemonSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "Foo",
Name: "Baz",
},
Status: appsv1.DaemonSetStatus{
DesiredNumberScheduled: 1,
NumberReady: 1,
},
},
},
targets: []Target{
{KindDaemonSet, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{true},
expResultReady: []bool{true},
expScanSuccess: true,
expScanReady: true,
}, {
name: "6_deployment_success_ready",
objects: []runtime.Object{
&appsv1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Namespace: "Foo",
Name: "Baz",
},
Status: appsv1.DeploymentStatus{
Replicas: 1,
ReadyReplicas: 1,
},
},
},
targets: []Target{
{KindDeployment, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{true},
expResultReady: []bool{true},
expScanSuccess: true,
expScanReady: true,
}, {
name: "7_statefulset_success_ready",
objects: []runtime.Object{
&appsv1.StatefulSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "Foo",
Name: "Baz",
},
Status: appsv1.StatefulSetStatus{
Replicas: 1,
ReadyReplicas: 1,
},
},
},
targets: []Target{
{KindStatefulSet, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{true},
expResultReady: []bool{true},
expScanSuccess: true,
expScanReady: true,
}, {
name: "8_statefulset_success_not_ready",
objects: []runtime.Object{
&appsv1.StatefulSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "Foo",
Name: "Baz",
},
Status: appsv1.StatefulSetStatus{
Replicas: 5,
ReadyReplicas: 1,
},
},
},
targets: []Target{
{KindStatefulSet, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{true},
expResultReady: []bool{false},
expScanSuccess: true,
expScanReady: false,
}, {
name: "9_failure_multi_mix",
objects: []runtime.Object{
&appsv1.StatefulSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "Foo",
Name: "Baz",
},
Status: appsv1.StatefulSetStatus{
Replicas: 5,
ReadyReplicas: 1,
},
},
&appsv1.Deployment{
ObjectMeta: metav1.ObjectMeta{
Namespace: "Foo",
Name: "Baz",
},
Status: appsv1.DeploymentStatus{
Replicas: 1,
ReadyReplicas: 1,
},
},
},
targets: []Target{
{KindStatefulSet, "Foo", "Baz", ModeAllOfThem},
{KindDeployment, "Foo", "Baz", ModeAllOfThem},
},
expResultSuccess: []bool{true, true},
expResultReady: []bool{false, true},
expScanSuccess: true,
expScanReady: false,
}} {
t.Run(tc.name, func(t *testing.T) {
fakeClientset := fake.NewSimpleClientset(tc.objects...)
scan := PerformScan(fakeClientset, tc.targets)
if scan.Success != tc.expScanSuccess {
t.Fatalf(
"Unexpected scan success status: got %v, want %v",
scan.Success, tc.expScanSuccess,
)
}
if scan.Ready != tc.expScanReady {
t.Fatalf(
"Unexpected scan ready status: got %v, want %v",
scan.Success, tc.expScanSuccess,
)
}
if len(scan.Results) != len(tc.targets) {
t.Fatalf(
"Unexpected number of scan results: got %v, want %v",
len(scan.Results), len(tc.targets),
)
}
for i := 0; i < len(scan.Results); i++ {
if scan.Results[i].Namespace != tc.targets[i].Namespace {
t.Errorf(
"Unexpected namespace for result %v: got %v, want %v",
i, scan.Results[i].Namespace, tc.targets[i].Namespace,
)
}
if scan.Results[i].Name != tc.targets[i].Name {
t.Errorf(
"Unexpected name for result %v: got %v, want %v",
i, scan.Results[i].Name, tc.targets[i].Name,
)
}
if scan.Results[i].Success != tc.expResultSuccess[i] {
t.Errorf(
"Unexpected success status for result %v: got %v, want %v",
i, scan.Results[i].Success, tc.expResultSuccess[i],
)
}
if scan.Results[i].Ready != tc.expResultReady[i] {
t.Errorf(
"Unexpected ready status for result %v: got %v, want %v",
i, scan.Results[i].Ready, tc.expResultReady[i],
)
}
}
})
}
}
// CWPutMetricDataImpl implements CWPutMetricDataAPI. Based on the example
// provided by AWS [here] on GitHub.
//
// [here]: https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/gov2/cloudwatch/CreateCustomMetric
type CWPutMetricDataImpl struct {
returnError bool
}
// PutMetricData implements CWPutMetricDataAPI. Based on the example provided
// by AWS [here] on GitHub.
//
// [here]: https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/gov2/cloudwatch/CreateCustomMetric
func (dt CWPutMetricDataImpl) PutMetricData(
ctx context.Context,
params *cloudwatch.PutMetricDataInput,
optFns ...func(*cloudwatch.Options),
) (*cloudwatch.PutMetricDataOutput, error) {
if dt.returnError {
return &cloudwatch.PutMetricDataOutput{}, fmt.Errorf("fake error")
} else {
return &cloudwatch.PutMetricDataOutput{}, nil
}
}
// TestUpdateMetric tests UpdateMetric.
func TestUpdateMetric(t *testing.T) {
for _, tc := range []struct {
name string // Name of test case.
value bool // Value of Metric. True is 1 and false is 0.
dry bool // Pass dry true to updateMetric function.
returnError bool // Should the mock return an error?
expSuccess bool // Is the call expected to succeed?
}{{
name: "1_succes_one",
value: true,
returnError: false,
expSuccess: true,
}, {
name: "2_succes_zero",
value: false,
returnError: false,
expSuccess: true,
}, {
name: "3_failure",
value: false,
returnError: true,
expSuccess: false,
}, {
name: "4_dry_failure",
value: true,
dry: true,
returnError: true,
expSuccess: true,
}} {
t.Run(tc.name, func(t *testing.T) {
mockClient := &CWPutMetricDataImpl{tc.returnError}
err := UpdateMetric(
tc.dry, mockClient, "MyNamespace", "MyMetric",
[]Dimension{{Name: "Cluster", Value: "MyCluster"}},
tc.value,
)
if tc.expSuccess && err != nil {
t.Fatalf("Unexpected failure: %s", err.Error())
}
if !tc.expSuccess && err == nil {
t.Fatal("Unexpected success")
}
})
}
}
// TestExecuteRounds tests ExecuteRounds.
func TestExecuteRounds(t *testing.T) {
kubeClient := fake.NewSimpleClientset()
cloudwatchClient := &CWPutMetricDataImpl{false}
ExecuteRounds(
true,
1,
false,
Metric{
Namespace: "Namespace",
Name: "Name",
},
[]Target{{
Kind: KindDeployment,
Mode: ModeAllOfThem,
Namespace: "Namespace",
Name: "Name",
}},
kubeClient,
cloudwatchClient,
)
kubeClient = fake.NewSimpleClientset()
cloudwatchClient = &CWPutMetricDataImpl{true}
ExecuteRounds(
true,
1,
false,
Metric{
Namespace: "Namespace",
Name: "Name",
},
[]Target{{
Kind: KindDeployment,
Mode: ModeAllOfThem,
Namespace: "Namespace",
Name: "Name",
}},
kubeClient,
cloudwatchClient,
)
}