-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_test.go
475 lines (380 loc) · 8.75 KB
/
node_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
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
package sitter
import (
"context"
"reflect"
"testing"
)
type (
seqTestCase[T any] struct {
nav string
exp T
}
seqTestCases[T any] struct {
op string
seq []seqTestCase[T]
}
)
func TestSymbolString(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeType(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeSymbol(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeLanguage(t *testing.T) {
t.Parallel()
input := []byte(`1 + 2`)
root, err := Parse(context.Background(), input, gr)
if err != nil {
t.Fatal("Expected no error, got", err)
}
exp := uintptr(gr.ptr)
act := uintptr(root.Language().ptr)
if act != exp {
t.Fatalf("The languages differ")
}
c := NewTreeCursor(root)
c.GoToFirstChild()
act = uintptr(c.CurrentNode().Language().ptr)
if act != exp {
t.Fatalf("The languages differ")
}
}
func TestNodeGrammarType(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[string]{
op: "GrammarType", seq: []seqTestCase[string]{
{"", "expression"},
{"FirstChild", "sum"},
{"FirstChild", "expression"},
{"FirstChild", "number"},
},
})
}
func TestNodeGrammarSymbol(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[Symbol]{
op: "GrammarSymbol", seq: []seqTestCase[Symbol]{
{"", 7},
{"FirstChild", 8},
{"FirstChild", 7},
{"FirstChild", 4},
},
})
}
func TestNodeStartByte(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeStartPoint(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeEndByte(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeEndPoint(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeString(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeIsNull(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeIsNamed(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeIsMissing(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeIsExtra(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeHasChanges(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeHasError(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeIsError(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeParseState(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[StateID]{
op: "ParseState", seq: []seqTestCase[StateID]{
{"", 0},
{"FirstChild", 1},
{"FirstChild", 1},
{"FirstChild", 1},
},
})
}
func TestNodeNextParseState(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[StateID]{
op: "NextParseState", seq: []seqTestCase[StateID]{
{"", 0},
{"FirstChild", 4},
{"FirstChild", 7},
{"FirstChild", 4},
},
})
}
func TestNodeParent(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeChildContainingDescendant(t *testing.T) { //nolint:dupl // OK
t.Parallel()
input := []byte(`1 + 2`)
root, err := Parse(context.Background(), input, gr)
if err != nil {
t.Fatal("Expected no error, got", err)
}
c := NewTreeCursor(root)
if c.CurrentNode() != root {
t.Fatal("Expected current node to be root")
}
c.GoToFirstChild()
n := c.CurrentNode()
exp := "(sum left: (expression (number)) right: (expression (number)))"
if act := n.String(); act != exp {
t.Fatalf("Expected %q, got %q", exp, act)
}
c.GoToFirstChild()
c.GoToNextSibling()
c.GoToNextSibling()
c.GoToFirstChild()
d := c.CurrentNode()
exp = "(number)"
if act := d.String(); act != exp {
t.Fatalf("Expected %q, got %q", exp, act)
}
c.GoToParent()
p := c.CurrentNode()
exp = "(expression (number))"
if act := p.String(); act != exp {
t.Fatalf("Expected %q, got %q", exp, act)
}
if act := n.ChildContainingDescendant(d); act != p {
t.Fatalf("Expected %v, got %v", p, act)
}
}
func TestNodeChildWithDescendant(t *testing.T) { //nolint:dupl // OK
t.Parallel()
input := []byte(`1 + 2`)
root, err := Parse(context.Background(), input, gr)
if err != nil {
t.Fatal("Expected no error, got", err)
}
c := NewTreeCursor(root)
if c.CurrentNode() != root {
t.Fatal("Expected current node to be root")
}
c.GoToFirstChild()
n := c.CurrentNode()
exp := "(sum left: (expression (number)) right: (expression (number)))"
if act := n.String(); act != exp {
t.Fatalf("Expected %q, got %q", exp, act)
}
c.GoToFirstChild()
c.GoToNextSibling()
c.GoToNextSibling()
c.GoToFirstChild()
d := c.CurrentNode()
exp = "(number)"
if act := d.String(); act != exp {
t.Fatalf("Expected %q, got %q", exp, act)
}
c.GoToParent()
p := c.CurrentNode()
exp = "(expression (number))"
if act := p.String(); act != exp {
t.Fatalf("Expected %q, got %q", exp, act)
}
if act := n.ChildWithDescendant(d); act != p {
t.Fatalf("Expected %v, got %v", p, act)
}
}
func TestNodeChild(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeFieldNameForChild(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeFieldNameForNamedChild(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeChildCount(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeNamedChild(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeNamedChildCount(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeChildByFieldName(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeChildByFieldID(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeNextSibling(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodePrevSibling(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeNextNamedSibling(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodePrevNamedSibling(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeFirstChildForByte(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeFirstNamedChildForByte(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeDescendantCount(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[uint32]{
op: "DescendantCount", seq: []seqTestCase[uint32]{
{"", 7},
{"FirstChild", 6},
{"FirstChild", 2},
{"FirstChild", 1},
},
})
}
func TestNodeDescendantForByteRange(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeDescendantForPointRange(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeNamedDescendantForByteRange(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeNamedDescendantForPointRange(t *testing.T) {
t.Parallel()
t.Skip("tested implicitly")
}
func TestNodeEdit(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeEqual(t *testing.T) {
t.Parallel()
t.Skip("TODO")
}
func TestNodeRange(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[Range]{
op: "Range", seq: []seqTestCase[Range]{
{"", Range{EndPoint: Point{Column: 5}, EndByte: 5}},
{"FirstChild", Range{EndPoint: Point{Column: 5}, EndByte: 5}},
{"FirstChild", Range{EndPoint: Point{Column: 1}, EndByte: 1}},
{"FirstChild", Range{EndPoint: Point{Column: 1}, EndByte: 1}},
},
})
}
func TestNodeContent(t *testing.T) {
t.Parallel()
testParserSequence(t, "1 + 2", seqTestCases[string]{
op: "Content", seq: []seqTestCase[string]{
{"", "1 + 2"},
{"FirstChild", "1 + 2"},
{"FirstChild", "1"},
{"FirstChild", "1"},
},
})
}
func testParserSequence[T any](t *testing.T, source string, testCases seqTestCases[T]) { //nolint:cyclop // ok
t.Helper()
input := []byte(source)
root, err := Parse(context.Background(), input, gr)
if err != nil {
t.Fatal("Expected no error, got", err)
}
t.Log(root)
c := NewTreeCursor(root)
for i, tc := range testCases.seq {
t.Run("", func(t *testing.T) {
ok := false
switch tc.nav {
case "": // noop
ok = true
case "FirstChild":
ok = c.GoToFirstChild()
default:
t.Fatalf("Unknown operation %q", tc.nav)
}
if !ok {
t.Fatalf("Failed to navigate to node #%d", i+1)
}
nn := c.CurrentNode()
var act any
switch testCases.op {
case "GrammarSymbol":
act = any(nn.GrammarSymbol())
case "GrammarType":
act = any(nn.GrammarType())
case "ParseState":
act = any(nn.ParseState())
case "NextParseState":
act = any(nn.NextParseState())
case "DescendantCount":
act = any(nn.DescendantCount())
case "Range":
act = any(nn.Range())
case "Content":
act = any(nn.Content(input))
default:
t.Fatalf("Unknown method %q", testCases.op)
}
if !eq(act, tc.exp) {
t.Fatalf("Expected %v, got %v", tc.exp, act)
}
})
}
}
func eq(a, b any) bool {
return reflect.DeepEqual(a, b)
}