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
package actionlog
import (
"testing"
)
func TestPolicyMatchers(t *testing.T) {
tests := []struct {
name string
actn *Action
mtch policyMatcher
want bool
}{
{
"simple any",
&Action{},
NewPolicyAny(),
false,
},
{
"simple all",
&Action{},
NewPolicyAll(),
true,
},
{
"should match resource",
&Action{Resource: "foo"},
NewPolicyMatchResource("foo"),
true,
},
{
"should not match resource",
&Action{Resource: "bar"},
NewPolicyMatchResource("foo"),
false,
},
{
"should match one of resource",
&Action{Resource: "baz"},
NewPolicyMatchResource("foo", "bar", "baz"),
true,
},
{
"should match action",
&Action{Action: "foo"},
NewPolicyMatchAction("foo"),
true,
},
{
"should not match action",
&Action{Action: "bar"},
NewPolicyMatchAction("foo"),
false,
},
{
"should match one of action",
&Action{Action: "baz"},
NewPolicyMatchAction("foo", "bar", "baz"),
true,
},
{
"should match severity",
&Action{Severity: Emergency},
NewPolicyMatchSeverity(Emergency),
true,
},
{
"should not match severity",
&Action{Severity: Debug},
NewPolicyMatchSeverity(Alert),
false,
},
{
"should match one of severity",
&Action{Severity: Warning},
NewPolicyMatchSeverity(Emergency, Debug, Warning),
true,
},
{
"should not match one of severity",
&Action{Severity: Info},
NewPolicyNegate(NewPolicyMatchSeverity(Emergency, Debug, Warning)),
true,
},
{
"complex match",
&Action{Severity: Warning, Resource: "foo", Action: "do"},
NewPolicyAll(
NewPolicyMatchResource("foo"),
NewPolicyMatchAction("do"),
NewPolicyMatchSeverity(Warning),
),
true,
},
{
"complex miss",
&Action{Severity: Warning, Resource: "bar", Action: "do"},
NewPolicyAll(
NewPolicyMatchResource("foo"),
NewPolicyMatchAction("do"),
NewPolicyMatchSeverity(Warning),
),
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.want != tt.mtch.Match(tt.actn) {
if tt.want {
t.Errorf("expecting to match")
} else {
t.Errorf("expecting not to match ")
}
}
})
}
}