-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcondition_test.go
80 lines (74 loc) · 1.39 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package redtape
import (
"encoding/json"
"testing"
"github.com/davecgh/go-spew/spew"
)
func jsonCond() []byte {
return []byte(`
[
{
"name": "some_condition",
"type": "bool",
"options": {
"value": true
}
}
]
`)
}
func TestNewConditions(t *testing.T) {
var unmCond []ConditionOptions
if err := json.Unmarshal(jsonCond(), &unmCond); err != nil {
t.Errorf("failed to unmarshal options: %v", err)
}
type args struct {
opts []ConditionOptions
}
tests := []struct {
name string
args args
test string
val interface{}
want bool
wantErr bool
}{
{
name: "unmarshal_conditions",
args: args{
opts: unmCond,
},
test: "some_condition",
val: false,
want: false,
wantErr: false,
},
{
name: "bool_condition",
args: args{
opts: []ConditionOptions{
{Name: "mycond", Type: "bool", Options: map[string]interface{}{
"value": true,
}},
},
},
test: "mycond",
val: true,
want: true,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NewConditions(tt.args.opts, nil)
if (err != nil) != tt.wantErr {
t.Errorf("NewConditions() error = %v, wantErr %v", err, tt.wantErr)
return
}
spew.Dump(got)
if tt.want != got[tt.test].Meets(tt.val, nil) {
t.Errorf("Condition.Meets() = %v, want %v", got, tt.want)
}
})
}
}