-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy patherrors_test.go
More file actions
566 lines (523 loc) · 11.8 KB
/
Copy patherrors_test.go
File metadata and controls
566 lines (523 loc) · 11.8 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
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
package toml
import (
"bytes"
"errors"
"fmt"
"strings"
"testing"
"github.com/pelletier/go-toml/v2/internal/assert"
"github.com/pelletier/go-toml/v2/unstable"
)
//nolint:funlen
func TestDecodeError(t *testing.T) {
examples := []struct {
desc string
doc [3]string
msg string
expected string
}{
{
desc: "no context",
doc: [3]string{"", "morning", ""},
msg: "this is wrong",
expected: `
1| morning
| ~~~~~~~ this is wrong`,
},
{
desc: "one line",
doc: [3]string{"good ", "morning", " everyone"},
msg: "this is wrong",
expected: `
1| good morning everyone
| ~~~~~~~ this is wrong`,
},
{
desc: "exactly 3 lines",
doc: [3]string{`line1
line2
line3
before `, "highlighted", ` after
post line 1
post line 2
post line 3`},
msg: "this is wrong",
expected: `
1| line1
2| line2
3| line3
4| before highlighted after
| ~~~~~~~~~~~ this is wrong
5| post line 1
6| post line 2
7| post line 3`,
},
{
desc: "more than 3 lines",
doc: [3]string{`should not be seen1
should not be seen2
line1
line2
line3
before `, "highlighted", ` after
post line 1
post line 2
post line 3
should not be seen3
should not be seen4`},
msg: "this is wrong",
expected: `
3| line1
4| line2
5| line3
6| before highlighted after
| ~~~~~~~~~~~ this is wrong
7| post line 1
8| post line 2
9| post line 3`,
},
{
desc: "more than 10 total lines",
doc: [3]string{`should not be seen 0
should not be seen1
should not be seen2
should not be seen3
line1
line2
line3
before `, "highlighted", ` after
post line 1
post line 2
post line 3
should not be seen3
should not be seen4`},
msg: "this is wrong",
expected: `
5| line1
6| line2
7| line3
8| before highlighted after
| ~~~~~~~~~~~ this is wrong
9| post line 1
10| post line 2
11| post line 3`,
},
{
desc: "last line of more than 10",
doc: [3]string{`should not be seen
should not be seen
should not be seen
should not be seen
should not be seen
should not be seen
should not be seen
line1
line2
line3
before `, "highlighted", ``},
msg: "this is wrong",
expected: `
8| line1
9| line2
10| line3
11| before highlighted
| ~~~~~~~~~~~ this is wrong
`,
},
{
desc: "handle empty lines in the before/after blocks",
doc: [3]string{
`line1
line 2
before `, "highlighted", ` after
line 3
line 4
line 5`,
},
expected: `1| line1
2|
3| line 2
4| before highlighted after
| ~~~~~~~~~~~
5| line 3
6|
7| line 4`,
},
{
desc: "handle remainder of the error line when there is only one line",
doc: [3]string{`P=`, `[`, `#`},
msg: "array is incomplete",
expected: `1| P=[#
| ~ array is incomplete`,
},
}
for _, e := range examples {
e := e
t.Run(e.desc, func(t *testing.T) {
b := bytes.Buffer{}
b.WriteString(e.doc[0])
start := b.Len()
b.WriteString(e.doc[1])
end := b.Len()
b.WriteString(e.doc[2])
doc := b.Bytes()
hl := doc[start:end]
err := wrapDecodeError(doc, &unstable.ParserError{
Highlight: hl,
Message: e.msg,
})
var derr *DecodeError
if !errors.As(err, &derr) {
t.Errorf("error not in expected format")
return
}
assert.Equal(t, strings.Trim(e.expected, "\n"), derr.String())
})
}
}
func TestDecodeError_Accessors(t *testing.T) {
e := DecodeError{
message: "foo",
line: 1,
column: 2,
key: []string{"one", "two"},
human: "bar",
}
assert.Equal(t, "toml: foo", e.Error())
r, c := e.Position()
assert.Equal(t, 1, r)
assert.Equal(t, 2, c)
assert.Equal(t, Key{"one", "two"}, e.Key())
assert.Equal(t, "bar", e.String())
}
func TestDecodeError_DuplicateContent(t *testing.T) {
// This test verifies that when the same content appears multiple times
// in the document, the error correctly points to the actual location
// of the error, not the first occurrence of the content.
//
// The document has "1__2" on line 1 and "3__4" on line 2.
// Both have "__" which is invalid, but we want to ensure errors
// on line 2 report line 2, not line 1.
doc := `a = 1
b = 3__4`
var v map[string]int
err := Unmarshal([]byte(doc), &v)
var derr *DecodeError
if !errors.As(err, &derr) {
t.Fatal("error not in expected format")
}
row, col := derr.Position()
// The error should be on line 2 where "3__4" is
if row != 2 {
t.Errorf("expected error on row 2, got row %d", row)
}
// Column should point to the "__" part (after "3")
if col < 5 {
t.Errorf("expected error at column >= 5, got column %d", col)
}
}
func TestDecodeError_Position(t *testing.T) {
// Test that error positions are correctly reported for various error locations
examples := []struct {
name string
doc string
expectedRow int
minCol int
}{
{
name: "error on first line",
doc: `a = 1__2`,
expectedRow: 1,
minCol: 5,
},
{
name: "error on second line",
doc: "a = 1\nb = 2__3",
expectedRow: 2,
minCol: 5,
},
{
name: "error on third line",
doc: "a = 1\nb = 2\nc = 3__4",
expectedRow: 3,
minCol: 5,
},
{
name: "missing equals on last line without trailing newline",
doc: "a = 1\nb = 2\nc",
expectedRow: 3,
minCol: 1,
},
}
for _, e := range examples {
t.Run(e.name, func(t *testing.T) {
var v map[string]int
err := Unmarshal([]byte(e.doc), &v)
var derr *DecodeError
if !errors.As(err, &derr) {
t.Fatal("error not in expected format")
}
row, col := derr.Position()
assert.Equal(t, e.expectedRow, row)
if col < e.minCol {
t.Errorf("expected column >= %d, got %d", e.minCol, col)
}
})
}
}
func TestStrictErrorUnwrap(t *testing.T) {
fo := bytes.NewBufferString(`
Missing = 1
OtherMissing = 1
`)
var out struct{}
err := NewDecoder(fo).DisallowUnknownFields().Decode(&out)
assert.Error(t, err)
strictErr := &StrictMissingError{}
assert.True(t, errors.As(err, &strictErr))
assert.Equal(t, 2, len(strictErr.Unwrap()))
}
func TestDecodeError_PositionAfterComments(t *testing.T) {
examples := []struct {
name string
doc string
expectedRow int
expectedCol int
}{
{
name: "comment then invalid key start",
doc: "# comment\n= \"value\"",
expectedRow: 2,
expectedCol: 1,
},
{
name: "no comment invalid key start",
doc: "= \"value\"",
expectedRow: 1,
expectedCol: 1,
},
{
name: "multiple comments then error",
doc: "# c1\n# c2\n= \"val\"",
expectedRow: 3,
expectedCol: 1,
},
{
name: "valid line then invalid key start",
doc: "a = 1\n= \"val\"",
expectedRow: 2,
expectedCol: 1,
},
{
name: "blank lines then error",
doc: "\n\n= \"val\"",
expectedRow: 3,
expectedCol: 1,
},
{
name: "expected newline but got invalid char",
doc: "a = 1 b = 2",
expectedRow: 1,
expectedCol: 7,
},
}
for _, e := range examples {
t.Run(e.name, func(t *testing.T) {
var v interface{}
err := Unmarshal([]byte(e.doc), &v)
var derr *DecodeError
if !errors.As(err, &derr) {
t.Fatal("error not in expected format")
}
row, col := derr.Position()
if row != e.expectedRow {
t.Errorf("row: got %d, want %d", row, e.expectedRow)
}
if col != e.expectedCol {
t.Errorf("col: got %d, want %d", col, e.expectedCol)
}
})
}
}
func TestErrorPositionConsistency(t *testing.T) {
// Verify that the unstable parser API and the public Unmarshal API
// report the same error positions for identical documents.
documents := []string{
"# comment\n= \"value\"",
"= \"value\"",
"# c1\n# c2\n= \"val\"",
"a = 1\n= \"val\"",
"\n\n= \"val\"",
"a = 1 b = 2",
}
for _, doc := range documents {
t.Run(doc, func(t *testing.T) {
// Get position from unstable API
p := unstable.Parser{}
p.Reset([]byte(doc))
for p.NextExpression() {
}
err := p.Error()
if err == nil {
t.Fatal("expected parser error")
}
var perr *unstable.ParserError
if !errors.As(err, &perr) {
t.Fatalf("expected *ParserError, got %T", err)
}
r := p.Range(perr.Highlight)
shape := p.Shape(r)
unstableLine := shape.Start.Line
unstableCol := shape.Start.Column
// Get position from public API
var v interface{}
pubErr := Unmarshal([]byte(doc), &v)
var derr *DecodeError
if !errors.As(pubErr, &derr) {
t.Fatal("error not in expected format")
}
pubRow, pubCol := derr.Position()
if unstableLine != pubRow {
t.Errorf("line mismatch: unstable=%d, public=%d", unstableLine, pubRow)
}
if unstableCol != pubCol {
t.Errorf("column mismatch: unstable=%d, public=%d", unstableCol, pubCol)
}
})
}
}
// TestDecodeErrorRedefinition checks that errors raised by the duplicate-key
// tracker are reported as DecodeError, carrying the key path and a position
// pointing at the offending key (see issue #668).
func TestDecodeErrorRedefinition(t *testing.T) {
examples := []struct {
desc string
doc string
msg string
key Key
row int
col int
human string
}{
{
desc: "duplicate key",
doc: "a = 1\nb = 2\nb = 3\n",
msg: "toml: key b is already defined",
key: Key{"b"},
row: 3,
col: 1,
human: `
1| a = 1
2| b = 2
3| b = 3
| ~ key b is already defined`,
},
{
desc: "duplicate dotted key",
doc: "foo.bar = 1\nfoo.bar = 2\n",
msg: "toml: key bar is already defined",
key: Key{"foo", "bar"},
row: 2,
col: 1,
human: `
1| foo.bar = 1
2| foo.bar = 2
| ~~~~~~~ key bar is already defined`,
},
{
desc: "redefined table",
doc: "[a]\nx = 1\n[a]\ny = 2\n",
msg: "toml: table a already exists",
key: Key{"a"},
row: 3,
col: 2,
},
{
desc: "duplicate key in table body",
doc: "[a]\nx = 1\nx = 2\n",
msg: "toml: key x is already defined",
key: Key{"x"},
row: 3,
col: 1,
},
{
desc: "redefined nested table",
doc: "[a.b]\n[a.b]\n",
msg: "toml: table b already exists",
key: Key{"a", "b"},
row: 2,
col: 2,
},
{
desc: "table over value",
doc: "a = 1\n[a]\n",
msg: "toml: key a should be a table, not a value",
key: Key{"a"},
row: 2,
col: 2,
},
{
desc: "array table over table",
doc: "[t]\n[[t]]\n",
msg: "toml: key t already exists as a table, but should be an array table",
key: Key{"t"},
row: 2,
col: 3,
},
{
desc: "duplicate key in inline table",
doc: "a = { b = 1, b = 2 }\n",
msg: "toml: key b is already defined",
key: Key{"a"},
row: 1,
col: 1,
},
}
for _, e := range examples {
t.Run(e.desc, func(t *testing.T) {
m := map[string]interface{}{}
err := Unmarshal([]byte(e.doc), &m)
var de *DecodeError
if !errors.As(err, &de) {
t.Fatalf("expected *DecodeError, got %T (%v)", err, err)
}
assert.Equal(t, e.msg, de.Error())
assert.Equal(t, e.key, de.Key())
row, col := de.Position()
if row != e.row || col != e.col {
t.Errorf("position = (%d, %d), want (%d, %d)", row, col, e.row, e.col)
}
if e.human != "" {
assert.Equal(t, e.human[1:], de.String())
}
})
}
}
func ExampleDecodeError() {
doc := `name = 123__456`
s := map[string]interface{}{}
err := Unmarshal([]byte(doc), &s)
fmt.Println(err)
var derr *DecodeError
if errors.As(err, &derr) {
fmt.Println(derr.String())
row, col := derr.Position()
fmt.Println("error occurred at row", row, "column", col)
}
// Output:
// toml: number must have at least one digit between underscores
// 1| name = 123__456
// | ~~ number must have at least one digit between underscores
// error occurred at row 1 column 11
}
func TestWrapDecodeErrorNil(t *testing.T) {
assert.True(t, wrapDecodeError([]byte("a = 1"), nil) == nil)
}
func TestSubsliceOffsetPastEndPanics(t *testing.T) {
data := []byte("0123456789")
document := data[:5]
highlight := data[8:10]
assert.Panics(t, func() {
_ = subsliceOffset(document, highlight)
})
}