-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
path_test.go
691 lines (678 loc) · 13.4 KB
/
path_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
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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
package yaml_test
import (
"fmt"
"log"
"reflect"
"strings"
"testing"
"github.com/goccy/go-yaml"
"github.com/goccy/go-yaml/parser"
)
func builder() *yaml.PathBuilder { return &yaml.PathBuilder{} }
func TestPathBuilder(t *testing.T) {
tests := []struct {
expected string
path *yaml.Path
}{
{
expected: `$.a.b[0]`,
path: builder().Root().Child("a").Child("b").Index(0).Build(),
},
{
expected: `$.'a.b'.'c*d'`,
path: builder().Root().Child("a.b").Child("c*d").Build(),
},
{
expected: `$.'a.b-*'.c`,
path: builder().Root().Child("a.b-*").Child("c").Build(),
},
{
expected: `$.'a'.b`,
path: builder().Root().Child("'a'").Child("b").Build(),
},
{
expected: `$.'a.b'.c`,
path: builder().Root().Child("'a.b'").Child("c").Build(),
},
}
for _, test := range tests {
t.Run(test.expected, func(t *testing.T) {
expected := test.expected
got := test.path.String()
if expected != got {
t.Fatalf("failed to build path. expected:[%q] but got:[%q]", expected, got)
}
})
}
}
func TestPath(t *testing.T) {
yml := `
store:
book:
- author: john
price: 10
- author: ken
price: 12
bicycle:
color: red
price: 19.95
bicycle*unicycle:
price: 20.25
`
tests := []struct {
name string
path *yaml.Path
expected interface{}
}{
{
name: "$.store.book[0].author",
path: builder().Root().Child("store").Child("book").Index(0).Child("author").Build(),
expected: "john",
},
{
name: "$.store.book[1].price",
path: builder().Root().Child("store").Child("book").Index(1).Child("price").Build(),
expected: uint64(12),
},
{
name: "$.store.book[*].author",
path: builder().Root().Child("store").Child("book").IndexAll().Child("author").Build(),
expected: []interface{}{"john", "ken"},
},
{
name: "$.store.book[0]",
path: builder().Root().Child("store").Child("book").Index(0).Build(),
expected: map[string]interface{}{"author": "john", "price": uint64(10)},
},
{
name: "$..author",
path: builder().Root().Recursive("author").Build(),
expected: []interface{}{"john", "ken"},
},
{
name: "$.store.bicycle.price",
path: builder().Root().Child("store").Child("bicycle").Child("price").Build(),
expected: float64(19.95),
},
{
name: `$.store.'bicycle*unicycle'.price`,
path: builder().Root().Child("store").Child(`bicycle*unicycle`).Child("price").Build(),
expected: float64(20.25),
},
{
name: "$",
path: builder().Root().Build(),
expected: map[string]interface{}{
"store": map[string]interface{}{
"book": []interface{}{
map[string]interface{}{
"author": "john",
"price": uint64(10),
},
map[string]interface{}{
"author": "ken",
"price": uint64(12),
},
},
"bicycle": map[string]interface{}{
"color": "red",
"price": 19.95,
},
"bicycle*unicycle": map[string]interface{}{
"price": 20.25,
},
},
},
},
}
t.Run("PathString", func(t *testing.T) {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
path, err := yaml.PathString(test.name)
if err != nil {
t.Fatalf("%+v", err)
}
if test.name != path.String() {
t.Fatalf("expected %s but actual %s", test.name, path.String())
}
})
}
})
t.Run("string", func(t *testing.T) {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if test.name != test.path.String() {
t.Fatalf("expected %s but actual %s", test.name, test.path.String())
}
})
}
})
t.Run("read", func(t *testing.T) {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
var v interface{}
if err := test.path.Read(strings.NewReader(yml), &v); err != nil {
t.Fatalf("%+v", err)
}
if !reflect.DeepEqual(test.expected, v) {
t.Fatalf("expected %v(%T). but actual %v(%T)", test.expected, test.expected, v, v)
}
})
}
})
t.Run("filter", func(t *testing.T) {
var target interface{}
if err := yaml.Unmarshal([]byte(yml), &target); err != nil {
t.Fatalf("failed to unmarshal: %+v", err)
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
var v interface{}
if err := test.path.Filter(target, &v); err != nil {
t.Fatalf("%+v", err)
}
if !reflect.DeepEqual(test.expected, v) {
t.Fatalf("expected %v(%T). but actual %v(%T)", test.expected, test.expected, v, v)
}
})
}
})
}
func TestPath_ReservedKeyword(t *testing.T) {
tests := []struct {
name string
path string
src string
expected interface{}
failure bool
}{
{
name: "quoted path",
path: `$.'a.b.c'.foo`,
src: `
a.b.c:
foo: bar
`,
expected: "bar",
},
{
name: "contains quote key",
path: `$.a'b`,
src: `a'b: 10`,
expected: uint64(10),
},
{
name: "escaped quote",
path: `$.'alice\'s age'`,
src: `alice's age: 10`,
expected: uint64(10),
},
{
name: "directly use white space",
path: `$.a b`,
src: `a b: 10`,
expected: uint64(10),
},
{
name: "empty quoted key",
path: `$.''`,
src: `a: 10`,
failure: true,
},
{
name: "unterminated quote",
path: `$.'abcd`,
src: `abcd: 10`,
failure: true,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
path, err := yaml.PathString(test.path)
if test.failure {
if err == nil {
t.Fatal("expected error")
}
return
} else {
if err != nil {
t.Fatalf("%+v", err)
}
}
file, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatal(err)
}
var v interface{}
if err := path.Read(file, &v); err != nil {
t.Fatalf("%+v", err)
}
if v != test.expected {
t.Fatalf("failed to get value. expected:[%v] but got:[%v]", test.expected, v)
}
})
}
}
func TestPath_Invalid(t *testing.T) {
tests := []struct {
path string
src string
}{
{
path: "$.wrong",
src: "foo: bar",
},
}
for _, test := range tests {
path, err := yaml.PathString(test.path)
if err != nil {
t.Fatal(err)
}
t.Run("path.Read", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatal(err)
}
var v interface{}
err = path.Read(file, &v)
if err == nil {
t.Fatal("expected error")
}
if !yaml.IsNotFoundNodeError(err) {
t.Fatalf("unexpected error %s", err)
}
})
t.Run("path.ReadNode", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatal(err)
}
_, err = path.ReadNode(file)
if err == nil {
t.Fatal("expected error")
}
if !yaml.IsNotFoundNodeError(err) {
t.Fatalf("unexpected error %s", err)
}
})
}
}
func TestPath_Merge(t *testing.T) {
tests := []struct {
path string
dst string
src string
expected string
}{
{
path: "$.c",
dst: `
a: 1
b: 2
c:
d: 3
e: 4
`,
src: `
f: 5
g: 6
`,
expected: `
a: 1
b: 2
c:
d: 3
e: 4
f: 5
g: 6
`,
},
{
path: "$.a.b",
dst: `
a:
b:
- 1
- 2
`,
src: `
- 3
- map:
- 4
- 5
`,
expected: `
a:
b:
- 1
- 2
- 3
- map:
- 4
- 5
`,
},
}
for _, test := range tests {
t.Run(test.path, func(t *testing.T) {
path, err := yaml.PathString(test.path)
if err != nil {
t.Fatalf("%+v", err)
}
t.Run("FromReader", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.dst), 0)
if err != nil {
t.Fatalf("%+v", err)
}
if err := path.MergeFromReader(file, strings.NewReader(test.src)); err != nil {
t.Fatalf("%+v", err)
}
actual := "\n" + file.String()
if test.expected != actual {
t.Fatalf("expected: %q. but got %q", test.expected, actual)
}
})
t.Run("FromFile", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.dst), 0)
if err != nil {
t.Fatalf("%+v", err)
}
src, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatalf("%+v", err)
}
if err := path.MergeFromFile(file, src); err != nil {
t.Fatalf("%+v", err)
}
actual := "\n" + file.String()
if test.expected != actual {
t.Fatalf("expected: %q. but got %q", test.expected, actual)
}
})
t.Run("FromNode", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.dst), 0)
if err != nil {
t.Fatalf("%+v", err)
}
src, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatalf("%+v", err)
}
if len(src.Docs) == 0 {
t.Fatalf("failed to parse")
}
if err := path.MergeFromNode(file, src.Docs[0]); err != nil {
t.Fatalf("%+v", err)
}
actual := "\n" + file.String()
if test.expected != actual {
t.Fatalf("expected: %q. but got %q", test.expected, actual)
}
})
})
}
}
func TestPath_Replace(t *testing.T) {
tests := []struct {
path string
dst string
src string
expected string
}{
{
path: "$.a",
dst: `
a: 1
b: 2
`,
src: `3`,
expected: `
a: 3
b: 2
`,
},
{
path: "$.b",
dst: `
b: 1
c: 2
`,
src: `
d: e
f:
g: h
i: j
`,
expected: `
b:
d: e
f:
g: h
i: j
c: 2
`,
},
{
path: "$.a.b[0]",
dst: `
a:
b:
- hello
c: 2
`,
src: `world`,
expected: `
a:
b:
- world
c: 2
`,
},
{
path: "$.books[*].author",
dst: `
books:
- name: book_a
author: none
- name: book_b
author: none
pictures:
- name: picture_a
author: none
- name: picture_b
author: none
building:
author: none
`,
src: `ken`,
expected: `
books:
- name: book_a
author: ken
- name: book_b
author: ken
pictures:
- name: picture_a
author: none
- name: picture_b
author: none
building:
author: none
`,
},
{
path: "$..author",
dst: `
books:
- name: book_a
author: none
- name: book_b
author: none
pictures:
- name: picture_a
author: none
- name: picture_b
author: none
building:
author: none
`,
src: `ken`,
expected: `
books:
- name: book_a
author: ken
- name: book_b
author: ken
pictures:
- name: picture_a
author: ken
- name: picture_b
author: ken
building:
author: ken
`,
},
}
for _, test := range tests {
t.Run(test.path, func(t *testing.T) {
path, err := yaml.PathString(test.path)
if err != nil {
t.Fatalf("%+v", err)
}
t.Run("WithReader", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.dst), 0)
if err != nil {
t.Fatalf("%+v", err)
}
if err := path.ReplaceWithReader(file, strings.NewReader(test.src)); err != nil {
t.Fatalf("%+v", err)
}
actual := "\n" + file.String()
if test.expected != actual {
t.Fatalf("expected: %q. but got %q", test.expected, actual)
}
})
t.Run("WithFile", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.dst), 0)
if err != nil {
t.Fatalf("%+v", err)
}
src, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatalf("%+v", err)
}
if err := path.ReplaceWithFile(file, src); err != nil {
t.Fatalf("%+v", err)
}
actual := "\n" + file.String()
if test.expected != actual {
t.Fatalf("expected: %q. but got %q", test.expected, actual)
}
})
t.Run("WithNode", func(t *testing.T) {
file, err := parser.ParseBytes([]byte(test.dst), 0)
if err != nil {
t.Fatalf("%+v", err)
}
src, err := parser.ParseBytes([]byte(test.src), 0)
if err != nil {
t.Fatalf("%+v", err)
}
if len(src.Docs) == 0 {
t.Fatalf("failed to parse")
}
if err := path.ReplaceWithNode(file, src.Docs[0]); err != nil {
t.Fatalf("%+v", err)
}
actual := "\n" + file.String()
if test.expected != actual {
t.Fatalf("expected: %q. but got %q", test.expected, actual)
}
})
})
}
}
func ExamplePath_AnnotateSource() {
yml := `
a: 1
b: "hello"
`
var v struct {
A int
B string
}
if err := yaml.Unmarshal([]byte(yml), &v); err != nil {
panic(err)
}
if v.A != 2 {
// output error with YAML source
path, err := yaml.PathString("$.a")
if err != nil {
log.Fatal(err)
}
source, err := path.AnnotateSource([]byte(yml), false)
if err != nil {
log.Fatal(err)
}
fmt.Printf("a value expected 2 but actual %d:\n%s\n", v.A, string(source))
}
// OUTPUT:
// a value expected 2 but actual 1:
// > 2 | a: 1
// ^
// 3 | b: "hello"
}
func ExamplePath_AnnotateSourceWithComment() {
yml := `
# This is my document
doc:
# This comment should be line 3
map:
# And below should be line 5
- value1
- value2
other: value3
`
path, err := yaml.PathString("$.doc.map[0]")
if err != nil {
log.Fatal(err)
}
msg, err := path.AnnotateSource([]byte(yml), false)
if err != nil {
log.Fatal(err)
}
fmt.Println(string(msg))
// OUTPUT:
// 4 | # This comment should be line 3
// 5 | map:
// 6 | # And below should be line 5
// > 7 | - value1
// ^
// 8 | - value2
// 9 | other: value3
// 10 |
}
func ExamplePath_PathString() {
yml := `
store:
book:
- author: john
price: 10
- author: ken
price: 12
bicycle:
color: red
price: 19.95
`
path, err := yaml.PathString("$.store.book[*].author")
if err != nil {
log.Fatal(err)
}
var authors []string
if err := path.Read(strings.NewReader(yml), &authors); err != nil {
log.Fatal(err)
}
fmt.Println(authors)
// OUTPUT:
// [john ken]
}