-
Notifications
You must be signed in to change notification settings - Fork 13
/
analysis_test.go
407 lines (390 loc) · 10.2 KB
/
analysis_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 (
"bytes"
"encoding/json"
"fmt"
"reflect"
"strings"
"testing"
"github.com/feedhenry/fh-system-dump-tool/openshift/api/types"
)
var (
podOk = types.Pod{
ObjectMeta: types.ObjectMeta{
Name: "mongodb-2-1-x66za",
Namespace: "qe-3node-4-1",
},
Status: types.PodStatus{
ContainerStatuses: []types.ContainerStatus{
{
Name: "mongodb-service",
State: types.ContainerState{},
},
},
},
}
podWaiting = types.Pod{
ObjectMeta: types.ObjectMeta{
Name: "mongodb-2-1-x66za",
Namespace: "qe-3node-4-1",
},
Status: types.PodStatus{
ContainerStatuses: []types.ContainerStatus{
{
Name: "mongodb-service",
State: types.ContainerState{
Waiting: &types.ContainerStateWaiting{
Reason: "ContainerCreating",
Message: "Image: docker.io/rhmap/mongodb:centos-3.2-29 is ready, container is creating",
},
},
},
},
},
}
)
var (
normalEvent = types.Event{
Message: "Test message",
Type: "Normal",
}
warningEvent = types.Event{
TypeMeta: types.TypeMeta{Kind: "Event"},
InvolvedObject: types.ObjectReference{
Kind: "Pod",
Namespace: "qe-3node-4-1",
Name: "mongodb-2-1-x66za",
},
Reason: "FailedSync",
Message: "Error syncing pod, skipping: API error (500): Unknown device 84d72d4cf06a1e292ba21c36c5c93638ccd3c4cfab8bf048bd434ff9cdf43722\n",
Count: 94215,
Type: "Warning",
}
)
var (
dcZeroReplicas = types.DeploymentConfig{
ObjectMeta: types.ObjectMeta{
Name: "fh-mbaas",
Namespace: "qe-3node-4-1",
},
Spec: types.DeploymentConfigSpec{
Replicas: 0,
},
}
)
func TestCheckEvents(t *testing.T) {
tests := []struct {
description string
eventList types.EventList
want CheckResult
}{
{
description: "warning event",
eventList: types.EventList{
Items: []types.Event{warningEvent},
},
want: CheckResult{
CheckName: "check event log for errors",
Ok: false,
Message: "errors detected in event log",
Events: []types.Event{warningEvent},
},
},
}
for _, tt := range tests {
if got := CheckEvents(tt.eventList); !reflect.DeepEqual(got, tt.want) {
t.Errorf("%s: CheckEvents(eventList) = \n%#v, want \n%#v", tt.description, got, tt.want)
}
}
}
func TestCheckDeploymentConfigs(t *testing.T) {
tests := []struct {
description string
dcList types.DeploymentConfigList
want CheckResult
}{
{
description: "deployment config with zero replicas",
dcList: types.DeploymentConfigList{
Items: []types.DeploymentConfig{dcZeroReplicas},
},
want: CheckResult{
CheckName: "check number of replicas in deployment configs",
Ok: false,
Message: "one or more deployment configs has number of replicas set to 0",
Info: []Info{
{
Name: dcZeroReplicas.ObjectMeta.Name,
Namespace: dcZeroReplicas.ObjectMeta.Namespace,
Message: "the replica parameter is set to 0, this should be greater than 0",
},
},
},
},
}
for _, tt := range tests {
if got := CheckDeploymentConfigs(tt.dcList); !reflect.DeepEqual(got, tt.want) {
t.Errorf("%s: CheckDeploymentConfigs(dcList) = \n%#v, want \n%#v", tt.description, got, tt.want)
}
}
}
func TestCheckPods(t *testing.T) {
tests := []struct {
description string
podList types.PodList
want CheckResult
}{
{
description: "empty pod list",
podList: types.PodList{
Items: []types.Pod{},
},
want: CheckResult{
CheckName: "check pods for containers in waiting state",
Ok: true,
Message: "this issue was not detected",
},
},
{
description: "pod without container in waiting state",
podList: types.PodList{
Items: []types.Pod{podOk},
},
want: CheckResult{
CheckName: "check pods for containers in waiting state",
Ok: true,
Message: "this issue was not detected",
},
},
{
description: "pod with container in waiting state",
podList: types.PodList{
Items: []types.Pod{podWaiting},
},
want: CheckResult{
CheckName: "check pods for containers in waiting state",
Ok: false,
Message: "one or more containers are in waiting state",
Info: []Info{
{
Name: podWaiting.Status.ContainerStatuses[0].Name,
Namespace: podWaiting.ObjectMeta.Namespace,
Message: "container mongodb-service in pod mongodb-2-1-x66za is in waiting state",
},
},
},
},
}
for _, tt := range tests {
if got := CheckPods(tt.podList); !reflect.DeepEqual(got, tt.want) {
t.Errorf("%s: CheckPods(podList) = \n%#v, want \n%#v", tt.description, got, tt.want)
}
}
}
func TestCheckProjectTask(t *testing.T) {
tests := []struct {
project string
definition DefinitionLoader
want []CheckResult
}{
{
project: "rhmap-project",
definition: fakeDefinitionLoader{},
want: []CheckResult{
{
CheckName: "check event log for errors",
Ok: true,
Message: "this issue was not detected",
},
{
CheckName: "check number of replicas in deployment configs",
Ok: true,
Message: "this issue was not detected",
},
{
CheckName: "check pods for containers in waiting state",
Ok: true,
Message: "this issue was not detected",
},
},
},
{
project: "bad-project",
definition: fakeDefinitionLoader{
"events": types.EventList{
Items: []types.Event{normalEvent, warningEvent},
},
"deploymentconfigs": types.DeploymentConfigList{
Items: []types.DeploymentConfig{dcZeroReplicas},
},
"pods": types.PodList{
Items: []types.Pod{podOk, podWaiting},
},
},
want: []CheckResult{
{
CheckName: "check event log for errors",
Ok: false,
Message: "errors detected in event log",
Events: []types.Event{warningEvent},
},
{
CheckName: "check number of replicas in deployment configs",
Ok: false,
Message: "one or more deployment configs has number of replicas set to 0",
Info: []Info{
{
Name: dcZeroReplicas.ObjectMeta.Name,
Namespace: dcZeroReplicas.ObjectMeta.Namespace,
Message: "the replica parameter is set to 0, this should be greater than 0",
},
},
},
{
CheckName: "check pods for containers in waiting state",
Ok: false,
Message: "one or more containers are in waiting state",
Info: []Info{
{
Name: podWaiting.Status.ContainerStatuses[0].Name,
Namespace: podWaiting.ObjectMeta.Namespace,
Message: fmt.Sprintf("container %s in pod %s is in waiting state",
podWaiting.Status.ContainerStatuses[0].Name, podWaiting.ObjectMeta.Name),
},
},
},
},
},
}
for i, tt := range tests {
results := make(chan AnalysisResult, 1)
task := CheckProjectTask(tt.project, tt.definition, results)
if err := task(); err != nil {
t.Errorf("%d: task() = %v, want %v", i, err, nil)
}
want := AnalysisResult{
Projects: []ProjectResult{
{
Project: tt.project,
Results: tt.want,
},
},
}
if result := <-results; !reflect.DeepEqual(result, want) {
t.Errorf("%d: result = \n%#v, want \n%#v", i, result, want)
}
}
}
type fakeDefinitionLoader map[string]interface{}
func (l fakeDefinitionLoader) Load(kind string, v interface{}) {
val := map[string]interface{}(l)[kind]
b, err := json.Marshal(val)
if err != nil {
panic(err)
}
if err := json.Unmarshal(b, v); err != nil {
panic(err)
}
}
func (l fakeDefinitionLoader) Err() error {
return nil
}
var _ DefinitionLoader = (*fakeDefinitionLoader)(nil)
func TestPrintAnalysisReport(t *testing.T) {
tests := []struct {
description string
analysisResult AnalysisResult
// set want for exact matches or contains/notContains for
// inexact matches.
want string
contains []string
notContains []string
}{
{
description: "empty analysis",
analysisResult: AnalysisResult{},
want: "No issues found\n",
},
{
description: "no errors",
analysisResult: AnalysisResult{
Projects: []ProjectResult{
{
Project: "dev",
Results: []CheckResult{
{
CheckName: "check event log for errors",
Ok: true,
Message: "this issue was not detected",
},
{
CheckName: "check number of replicas in deployment configs",
Ok: true,
Message: "this issue was not detected",
},
{
CheckName: "check pods for containers in waiting state",
Ok: true,
Message: "this issue was not detected",
},
},
},
},
},
want: "No issues found\n",
},
{
description: "errors found",
analysisResult: AnalysisResult{
Projects: []ProjectResult{
{
Project: "rhmap-core",
Results: []CheckResult{
{
CheckName: "check event log for errors",
Ok: false,
Message: "errors detected in event log",
Events: []types.Event{
{
TypeMeta: types.TypeMeta{Kind: "Event"},
InvolvedObject: types.ObjectReference{
Namespace: "rhmap-core",
Name: "fh-ngui",
},
Reason: "FailedUpdate",
Message: "Cannot update deployment rhmap-core/fh-ngui-3 status to Pending: replicationcontrollers \"fh-ngui-3\" cannot be updated: the object has been modified; please apply your changes to the latest version and try again",
Count: 1,
Type: "Warning",
},
},
},
},
},
},
},
contains: []string{"rhmap-core", "fh-ngui", "Cannot update deployment"},
notContains: []string{"No issues found"},
},
}
for _, tt := range tests {
var out bytes.Buffer
PrintAnalysisReport(tt.analysisResult, &out)
got := out.String()
if len(tt.contains) > 0 || len(tt.notContains) > 0 {
for _, want := range tt.contains {
if !strings.Contains(got, want) {
t.Errorf("%s: got %q, want to contain %q", tt.description, got, want)
}
}
for _, notWant := range tt.notContains {
if strings.Contains(got, notWant) {
t.Errorf("%s: got %q, want not to contain %q", tt.description, got, notWant)
}
}
} else {
if got != tt.want {
t.Errorf("%s: got %q, want %q", tt.description, got, tt.want)
}
}
}
}