-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathcondition_test.go
57 lines (54 loc) · 963 Bytes
/
condition_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
package api
import (
"testing"
corev1 "k8s.io/api/core/v1"
)
func TestHasConditionType(t *testing.T) {
for _, tc := range []struct {
name string
typ ConditionType
source []Condition
want bool
}{
{
name: "nil source",
typ: ReadyType,
source: nil,
want: false,
},
{
name: "empty source",
typ: ReadyType,
source: []Condition{},
want: false,
},
{
name: "want ready type",
typ: ReadyType,
source: []Condition{
{
Type: ReadyType,
Status: corev1.ConditionTrue,
},
},
want: true,
},
{
name: "do not want ready type",
typ: ReadyType,
source: []Condition{
{
Type: ValidationSucceeded,
Status: corev1.ConditionTrue,
},
},
want: false,
},
} {
t.Run(tc.name, func(t *testing.T) {
if got := HasConditionType(tc.typ, tc.source); got != tc.want {
t.Errorf("want HasConditionType %v, got %t", tc.want, got)
}
})
}
}