-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparser_test.go
62 lines (58 loc) · 1.08 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
package jsonparse
import (
"encoding/json"
"fmt"
"testing"
)
func TestFetchers(t *testing.T) {
tests := []struct {
json string
key string
expected interface{}
}{
{
json: `{"ref":"ok"}`,
key: "ref",
expected: "ok",
},
{
json: `[7,8,9,0]`,
key: "2",
expected: float64(9),
},
{
json: `["what", "is", "this"]`,
key: "2",
expected: "this",
},
{
json: `{"ref": [5,8,9]}`,
key: "ref.1",
expected: float64(8),
},
{
json: `{"ref": {"joe": [1,2, {"sum": 100 } ]}}`,
key: "ref.joe.2.sum",
expected: float64(100),
},
{
json: `{"ref": {"joe": [1,2, {"sum": {"100": {"dave" : "lee"}} } ]}}`,
key: "ref.joe.2.sum.100.dave",
expected: "lee",
},
}
for i, tt := range tests {
var v interface{}
err := json.Unmarshal([]byte(tt.json), &v)
if err != nil {
t.Fatal(err)
continue
}
t.Run(fmt.Sprint(i), func(t *testing.T) {
val := fetchValue(v, tt.key)
if val != tt.expected {
t.Errorf("want: %v, got: %v", tt.expected, val)
}
})
}
}