-
Notifications
You must be signed in to change notification settings - Fork 0
/
cond_test.go
58 lines (48 loc) · 1.5 KB
/
cond_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
package builder
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestBuilder_Cond(t *testing.T) {
assert := assert.New(t)
{
cond, err := ToCondition(CondTopic{"all"})
assert.Equal("'all' in topics", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondTopic{"test1"}.And(CondTopic{"test2"}))
assert.Equal("'test1' in topics && 'test2' in topics", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondNot{CondTopic{"test1"}}.And(CondTopic{"test2"}))
assert.Equal("!('test1' in topics) && 'test2' in topics", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondTopic{"test1"}.Or(CondTopic{"test2"}))
assert.Equal("'test1' in topics || 'test2' in topics", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondTopic{"test1"}.And(CondNot{CondTopic{"test2"}}))
assert.Equal("'test1' in topics && !('test2' in topics)", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondTopic{"test1"}.Or(CondNot{CondTopic{"test2"}}))
assert.Equal("'test1' in topics || !('test2' in topics)", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondTopic{"test1"}.And(CondTopic{"test2"}.And(CondTopic{"test3"})))
assert.Equal("'test1' in topics && 'test2' in topics && 'test3' in topics", cond)
assert.NoError(err)
}
{
cond, err := ToCondition(CondTopic{"test1"}.And(CondNot{CondTopic{"test2"}}.Or(CondTopic{"test3"})))
assert.Equal("'test1' in topics && (!('test2' in topics) || 'test3' in topics)", cond)
assert.NoError(err)
}
}