forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunc_misc_test.go
More file actions
68 lines (65 loc) · 1.25 KB
/
func_misc_test.go
File metadata and controls
68 lines (65 loc) · 1.25 KB
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
package expr_test
import "testing"
func TestFuncMiscContains(t *testing.T) {
testEval(t, []evalTest{
{
"0 in nil",
nil,
false,
},
{
"0 not in nil",
nil,
true,
},
{
"0 in [1, 2]",
nil,
false,
},
{
"0 not in [1, 2]",
nil,
true,
},
{
"2 in [1, 2]",
nil,
true,
},
{
"2 not in [1, 2]",
nil,
false,
},
{
"country in [\"us\", \"fr\"]",
map[string]interface{}{"country": []interface{}{"fr", "de", "es", "gb"}},
[]interface{}{true, false, false, false},
},
{
"country not in [\"us\", \"fr\"]",
map[string]interface{}{"country": []interface{}{"fr", "de", "es", "gb"}},
[]interface{}{false, true, true, true},
},
})
}
func TestFuncMiscCond(t *testing.T) {
testEval(t, []evalTest{
{
`cond > 0 ? "yes" : "no"`,
map[string]interface{}{"cond": 10, "country": []interface{}{"fr", "de", "es", "gb"}},
"yes",
},
{
"`cond` > 0 ? `country` : 'no'",
map[string]interface{}{"cond": []interface{}{10, -20, 30}, "country": []interface{}{"fr", "de", "es", "gb"}},
[]interface{}{"fr", "no", "es"},
},
{
"`cond` > 0 ? ['fr', 'de', 'es', 'gb'] : 'no'",
map[string]interface{}{"cond": []interface{}{10, -20, 30}},
[]interface{}{"fr", "no", "es"},
},
})
}