forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser_test.go
245 lines (231 loc) · 4.38 KB
/
parser_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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
package expr
import (
"fmt"
"reflect"
"strings"
"testing"
)
type parseTest struct {
input string
expected Node
}
type parseErrorTest struct {
input string
err string
}
var parseTests = []parseTest{
{
"a",
nameNode{"a"},
},
{
`"a"`,
textNode{"a"},
},
{
"3",
numberNode{3},
},
{
"true",
boolNode{true},
},
{
"false",
boolNode{false},
},
{
"nil",
nilNode{},
},
{
"-3",
unaryNode{"-", numberNode{3}},
},
{
"1 - 2",
binaryNode{"-", numberNode{1}, numberNode{2}},
},
{
"(1 - 2) * 3",
binaryNode{"*", binaryNode{"-", numberNode{1}, numberNode{2}}, numberNode{3}},
},
{
"a or b or c",
binaryNode{"or", binaryNode{"or", nameNode{"a"}, nameNode{"b"}}, nameNode{"c"}},
},
{
"a or b and c",
binaryNode{"or", nameNode{"a"}, binaryNode{"and", nameNode{"b"}, nameNode{"c"}}},
},
{
"(a or b) and c",
binaryNode{"and", binaryNode{"or", nameNode{"a"}, nameNode{"b"}}, nameNode{"c"}},
},
{
"2**4-1",
binaryNode{"-", binaryNode{"**", numberNode{2}, numberNode{4}}, numberNode{1}},
},
{
"foo(bar())",
functionNode{"foo", []Node{functionNode{"bar", []Node{}}}},
},
{
"foo.bar",
propertyNode{nameNode{"foo"}, "bar"},
},
{
"foo.not",
propertyNode{nameNode{"foo"}, "not"},
},
{
"foo.bar()",
methodNode{nameNode{"foo"}, "bar", []Node{}},
},
{
"foo.not()",
methodNode{nameNode{"foo"}, "not", []Node{}},
},
{
`foo.bar("arg1", 2, true)`,
methodNode{nameNode{"foo"}, "bar", []Node{textNode{"arg1"}, numberNode{2}, boolNode{true}}},
},
{
"foo[3]",
indexNode{nameNode{"foo"}, numberNode{3}},
},
{
"true ? true : false",
conditionalNode{boolNode{true}, boolNode{true}, boolNode{false}},
},
{
"a ?: b",
conditionalNode{nameNode{"a"}, nameNode{"a"}, nameNode{"b"}},
},
{
"foo.bar().foo().baz[33]",
indexNode{propertyNode{methodNode{methodNode{nameNode{"foo"}, "bar", []Node{}}, "foo", []Node{}}, "baz"}, numberNode{33}},
},
{
"+0 != -0",
binaryNode{"!=", unaryNode{"+", numberNode{0}}, unaryNode{"-", numberNode{0}}},
},
{
"[a, b, c]",
arrayNode{[]Node{nameNode{"a"}, nameNode{"b"}, nameNode{"c"}}},
},
{
"{foo:1, bar:2}",
mapNode{[]pairNode{{identifierNode{"foo"}, numberNode{1}}, {identifierNode{"bar"}, numberNode{2}}}},
},
{
`{"foo":1, (1+2):2}`,
mapNode{[]pairNode{{identifierNode{"foo"}, numberNode{1}}, {binaryNode{"+", numberNode{1}, numberNode{2}}, numberNode{2}}}},
},
{
"[1].foo",
propertyNode{arrayNode{[]Node{numberNode{1}}}, "foo"},
},
{
"{foo:1}.bar",
propertyNode{mapNode{[]pairNode{{identifierNode{"foo"}, numberNode{1}}}}, "bar"},
},
{
"len(foo)",
builtinNode{"len", []Node{nameNode{"foo"}}},
},
{
`foo matches "foo"`,
matchesNode{left: nameNode{"foo"}, right: textNode{"foo"}},
},
{
`foo matches regex`,
matchesNode{left: nameNode{"foo"}, right: nameNode{"regex"}},
},
}
var parseErrorTests = []parseErrorTest{
{
"foo.",
"unexpected end of expression",
},
{
"a+",
"unexpected token EOF",
},
{
"a ? (1+2) c",
"unexpected token name(c)",
},
{
"[a b]",
"array items must be separated by a comma",
},
{
"foo.bar(a b)",
"arguments must be separated by a comma",
},
{
"{-}",
"a map key must be a",
},
{
"a matches 'a)(b'",
"error parsing regexp: unexpected )",
},
}
func TestParse(t *testing.T) {
for _, test := range parseTests {
actual, err := Parse(test.input)
if err != nil {
t.Errorf("%s:\n%v", test.input, err)
continue
}
if m, ok := actual.(matchesNode); ok {
m.r = nil
actual = m
}
if !reflect.DeepEqual(actual, test.expected) {
t.Errorf("%s:\ngot\n\t%#v\nexpected\n\t%#v", test.input, actual, test.expected)
}
}
}
func TestParse_error(t *testing.T) {
for _, test := range parseErrorTests {
_, err := Parse(test.input)
if err == nil {
err = fmt.Errorf("<nil>")
}
if !strings.HasPrefix(err.Error(), test.err) || test.err == "" {
t.Errorf("%s:\ngot\n\t%+v\nexpected\n\t%v", test.input, err.Error(), test.err)
}
}
}
func TestParser_createTypesTable(t *testing.T) {
var intType = reflect.TypeOf(0)
type (
D struct {
F2 int
}
C struct {
F int
}
B struct {
C
}
A struct {
*D
B
}
)
p := parser{}
types := p.createTypesTable(A{})
if len(types) != 5 {
t.Error("unexpected number of fields")
}
if types["F"] != intType {
t.Error("expected embedded struct field 'F'")
}
if types["F2"] != intType {
t.Error("expected embedded struct field 'F2'")
}
}