-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheval_test.go
194 lines (183 loc) · 4.15 KB
/
eval_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
package boolal_test
import (
"testing"
ba "github.com/lesomnus/boolal"
"github.com/stretchr/testify/require"
)
func TestEval(t *testing.T) {
data := map[string]bool{
"t": true,
"f": false,
}
tcs := []struct {
desc string
input *ba.Expr
expected bool
}{
{
desc: "truth",
input: &ba.Expr{Lhs: ba.Truth()},
expected: true,
},
{
desc: "falsity",
input: &ba.Expr{Lhs: ba.Falsity()},
expected: false,
},
{
desc: "true",
input: &ba.Expr{Lhs: ba.Var("t")},
expected: true,
},
{
desc: "false",
input: &ba.Expr{Lhs: ba.Var("f")},
expected: false,
},
{
desc: "negation of true",
input: &ba.Expr{Lhs: ba.Not("t")},
expected: false,
},
{
desc: "negation of false",
input: &ba.Expr{Lhs: ba.Not("f")},
expected: true,
},
{
desc: "conjunctions of true",
input: ba.And("t", "t", "t"),
expected: true,
},
{
desc: "conjunctions of false",
input: ba.And("f", "f", "f"),
expected: false,
},
{
desc: "conjunctions of mixed booleans starts with true",
input: ba.And("t", "f", "t"),
expected: false,
},
{
desc: "conjunctions of mixed booleans starts with false",
input: ba.And("f", "t", "f"),
expected: false,
},
{
desc: "disjunctions of true",
input: ba.Or("t", "t", "t"),
expected: true,
},
{
desc: "disjunctions of false",
input: ba.Or("f", "f", "f"),
expected: false,
},
{
desc: "disjunctions of mixed booleans starts with true",
input: ba.Or("t", "f", "t"),
expected: true,
},
{
desc: "disjunctions of mixed booleans starts with false",
input: ba.Or("f", "t", "f"),
expected: true,
},
{
desc: "mixed junctions that ends with conjunction of false",
input: ba.And("t", "f").Or("t", "f").And("f"),
expected: false,
},
{
desc: "mixed junctions that ends with disjunction of true",
input: ba.And("t", "f").Or("t", "f").And("t"),
expected: true,
},
{
desc: "nested expressions starts with conjunction of false",
input: ba.And("f", ba.Or("t", ba.And("t", "t"))),
expected: false,
},
{
desc: "nested expressions starts with disjunction of true",
input: ba.Or("t", ba.Or("f", ba.And("t", "f"))),
expected: true,
},
{
desc: "nested truthy expressions",
input: ba.And("t", ba.Or("f", ba.And("t", "t"))),
expected: true,
},
{
desc: "nested falsy expressions",
input: ba.And("t", ba.Or("f", ba.And("t", "f"))),
expected: false,
},
{
desc: "negation of nested truthy expression",
input: ba.And("t", ba.Not(ba.And("t", "t"))),
expected: false,
},
{
desc: "negation of nested falsy expression",
input: ba.And("t", ba.Not(ba.And("t", "f"))),
expected: true,
},
}
for _, tc := range tcs {
t.Run(tc.desc, func(t *testing.T) {
require := require.New(t)
ok := tc.input.Eval(data)
require.Equal(tc.expected, ok)
})
}
t.Run("empty concat must be ignored", func(t *testing.T) {
tcs := []struct {
desc string
input *ba.Expr
expected bool
}{
{
desc: "true & ?",
input: &ba.Expr{Lhs: ba.Var("t"), Rhs: []ba.BinaryOp{{And: []ba.UnaryOp{}}}},
expected: true,
},
{
desc: "false & ?",
input: &ba.Expr{Lhs: ba.Var("f"), Rhs: []ba.BinaryOp{{And: []ba.UnaryOp{}}}},
expected: false,
},
{
desc: "true | ?",
input: &ba.Expr{Lhs: ba.Var("t"), Rhs: []ba.BinaryOp{{Or: []ba.UnaryOp{}}}},
expected: true,
},
{
desc: "false | ?",
input: &ba.Expr{Lhs: ba.Var("f"), Rhs: []ba.BinaryOp{{Or: []ba.UnaryOp{}}}},
expected: false,
},
}
for _, tc := range tcs {
t.Run(tc.desc, func(t *testing.T) {
require := require.New(t)
ok := tc.input.Eval(data)
require.Equal(tc.expected, ok)
})
}
})
}
func TestEvalWithFallbackValue(t *testing.T) {
require := require.New(t)
data := map[string]bool{"t": true}
expr := ba.And("t", "x")
{
ok := expr.Eval(data, ba.WithFallbackAs(false))
require.False(ok)
}
{
ok := expr.Eval(data, ba.WithFallbackAs(true))
require.True(ok)
}
}