-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathcheckable_test.go
107 lines (97 loc) · 2.07 KB
/
checkable_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
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
package checks
import (
"errors"
"testing"
"github.com/DataDog/datadog-agent/pkg/compliance"
"github.com/DataDog/datadog-agent/pkg/compliance/event"
"github.com/DataDog/datadog-agent/pkg/compliance/mocks"
assert "github.com/stretchr/testify/require"
)
func TestCheckableList(t *testing.T) {
assert := assert.New(t)
type outcome struct {
reports []*compliance.Report
}
tests := []struct {
name string
list []outcome
expected outcome
}{
{
name: "first=passed, second=passed, third=pass => result=[all passed]",
list: []outcome{
{
reports: []*compliance.Report{
{
Passed: true,
Data: event.Data{
"something": "passed",
},
},
},
},
{
reports: []*compliance.Report{
{
Passed: true,
Data: event.Data{
"something else": "passed",
},
},
},
},
{
reports: []*compliance.Report{
{
Passed: true,
Data: event.Data{
"something else": "failed",
},
},
},
},
},
expected: outcome{
reports: []*compliance.Report{
{
Passed: true,
Data: event.Data{
"something": "passed",
},
},
{
Passed: true,
Data: event.Data{
"something else": "passed",
},
},
{
Passed: false,
Data: event.Data{
"truncated": 1,
},
Error: errors.New("truncated result"),
},
},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
env := &mocks.Env{}
env.On("MaxEventsPerRun").Return(2)
var list checkableList
for _, outcome := range test.list {
c := &mockCheckable{}
c.On("check", env).Return(outcome.reports)
list = append(list, c)
}
reports := list.check(env)
assert.Equal(test.expected.reports, reports)
})
}
}