-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser_test.go
More file actions
403 lines (387 loc) · 8.24 KB
/
parser_test.go
File metadata and controls
403 lines (387 loc) · 8.24 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
package parser
import (
"reflect"
"strings"
"testing"
"github.com/alecthomas/participle/v2/lexer"
"github.com/alecthomas/repr"
"github.com/sergi/go-diff/diffmatchpatch"
)
func TestParse(t *testing.T) {
for _, test := range []struct {
name string
body string
expect *AST
expectErr bool
}{
{"invalid input errors", "hello, world!", nil, true},
{"empty body returns empty ast", "", emptyAST, false},
{"colliding type names error", collidingNames, nil, true},
{"colliding field names error", collidingFieldNames, nil, true},
{"colliding field tags error", collidingTags, nil, true},
{"missing field tags error", missingFields, nil, true},
{"valid input works", validInput, fullAST, false},
{"invalid scalar type errors", invalidScalar, nil, true},
{"invalid map key type errors", invalidMapKey, nil, true},
{"invalid map value type errors", invalidMapValue, nil, true},
} {
t.Run(test.name, func(t *testing.T) {
received, err := Parse(test.name, strings.NewReader(test.body))
if err != nil {
t.Log(err)
}
if err == nil && test.expectErr {
t.Errorf("expected error, received none")
} else if err != nil && !test.expectErr {
t.Errorf("unexpected error %#v", err)
}
if !reflect.DeepEqual(test.expect, received) {
receivedStr := repr.String(received)
expectStr := repr.String(test.expect)
dmp := diffmatchpatch.New()
diffs := dmp.DiffMain(expectStr, receivedStr, false)
t.Error(dmp.DiffPrettyText(diffs))
}
})
}
}
func TestParseFile(t *testing.T) {
for _, test := range []struct {
fn string
expectErr bool
}{
{"testdata/nonsuch.mint", true},
{"testdata/valid-documents/location.mint", false},
} {
t.Run(test.fn, func(t *testing.T) {
_, err := ParseFile(test.fn)
if err == nil && test.expectErr {
t.Errorf("expected error, received none")
} else if err != nil && !test.expectErr {
t.Errorf("unexpected error %s", err)
}
})
}
}
func TestParseDir(t *testing.T) {
for _, test := range []struct {
dir string
expectErr bool
}{
{"testdata/valid-documents", false},
{"testdata/nonsuch", true},
{"testdata/invalid-document", true},
} {
t.Run(test.dir, func(t *testing.T) {
_, err := ParseDir(test.dir)
if err == nil && test.expectErr {
t.Errorf("expected error, received none")
} else if err != nil && !test.expectErr {
t.Errorf("unexpected error %s", err)
}
})
}
}
var (
emptyAST = new(AST)
fullAST = &AST{
Types: []AnnotatedType{
AnnotatedType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 1,
Line: 2,
Column: 1,
},
Name: "Foo",
Entries: []AnnotatedEntry{
AnnotatedEntry{
Field: Field{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 178,
Line: 8,
Column: 3,
},
DataType: &DataType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 178,
Line: 8,
Column: 3,
},
Scalar: &Scalar{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 178,
Line: 8,
Column: 3,
},
Type: "string",
},
},
Name: "Hello",
Tag: 0,
},
DocString: "Hello, world! This is a multiline doc string :)",
Validations: []Validation{
{
Function: "not_empty",
},
},
Transformations: []Transformation{
{
Function: "to_lowercase",
},
{
IsCustom: true,
Function: "to_korean",
},
},
},
{
Field: Field{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 228,
Line: 11,
Column: 3,
},
DataType: &DataType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 228,
Line: 11,
Column: 3,
},
Scalar: &Scalar{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 228,
Line: 11,
Column: 3,
},
Type: "Bar",
},
},
Name: "Bar",
Tag: 1,
},
DocString: "Some bar value",
},
{
Field: Field{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 244,
Line: 13,
Column: 3,
},
DataType: &DataType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 244,
Line: 13,
Column: 3,
},
Map: &MapType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 244,
Line: 13,
Column: 3,
},
Key: "string",
Value: "int32",
},
},
Name: "MappyMap",
Tag: 2,
},
},
{
Field: Field{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 279,
Line: 14,
Column: 3,
},
DataType: &DataType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 279,
Line: 14,
Column: 3,
},
Slice: &SliceType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 279,
Line: 14,
Column: 3,
},
Type: "string",
},
},
Name: "UnboundString",
Tag: 3,
},
},
{
Field: Field{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 309,
Line: 15,
Column: 3,
},
DataType: &DataType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 309,
Line: 15,
Column: 3,
},
FixedSizeSlice: &FixedSizedSliceType{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 309,
Line: 15,
Column: 3,
},
Size: 5,
Type: "byte",
},
},
Name: "FixedSizeByteSlice",
Tag: 4,
},
},
},
},
},
Enums: []Enum{
{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 344,
Line: 18,
Column: 1,
},
Name: "Bar",
Values: []*EnumEntry{
{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 357,
Line: 19,
Column: 3,
},
Value: &EnumValue{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 357,
Line: 19,
Column: 3,
},
Key: "A",
},
},
{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 361,
Line: 20,
Column: 3,
},
Value: &EnumValue{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 361,
Line: 20,
Column: 3,
},
Key: "B",
},
},
{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 365,
Line: 21,
Column: 3,
},
Value: &EnumValue{
Pos: lexer.Position{
Filename: "valid input works",
Offset: 365,
Line: 21,
Column: 3,
},
Key: "C",
},
},
},
},
},
}
collidingNames = `
type Foo {}
type Foo {}
type Bar {}
`
collidingFieldNames = `
type Foo {
string Bar = 0;
string Bar = 1;
}
`
collidingTags = `
type Foo {
string Bar = 0;
string Baz = 0;
}
`
missingFields = `
type Foo {
string Bar = 0;
string Baz = 2;
}
`
validInput = `
type Foo {
+mint:doc:"Hello, world!"
+mint:doc:"This is a multiline doc string :)"
+mint:validate:not_empty
+mint:transform:to_lowercase
+custom:transform:to_korean
string Hello = 0;
+mint:doc:"Some bar value"
Bar Bar = 1;
map<string, int32> MappyMap = 2;
[]string UnboundString = 3;
[5]byte FixedSizeByteSlice = 4;
}
enum Bar {
A
B
C
}
`
invalidScalar = `
type Foo {
str Bar = 0;
}
`
invalidMapKey = `
type Foo {
map<Bar, string> BarMap = 0;
}
`
invalidMapValue = `
type Foo {
map<string, Bar> BarMap = 0;
}
`
)