-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmisc_test.go
84 lines (80 loc) · 2.57 KB
/
misc_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
package test
import "testing"
func Test_Misc(t *testing.T) {
batchTest(t, miscTests)
}
func Benchmark_Misc(b *testing.B) {
batchBenchmark(b, miscTests)
}
var miscTests []testData = []testData{
{
selector: "", // empty
data: `{"a": 42, "": 21}`,
expected: nil,
consensus: nil,
expectedError: "invalid JSONPath selector '' unexpected token '' at index 0",
},
{
selector: `$.data.sum()`,
data: `{"data": [1,2,3,4]}`,
expected: nil,
consensus: consensusNone,
expectedError: "key: invalid token target. expected [map] got [slice]",
},
{
selector: `$(key,more)`,
data: `{"key": 1, "some": 2, "more": 3}`,
expected: nil,
consensus: nil,
expectedError: "invalid JSONPath selector '$(key,more)' unexpected token '(' at index 1",
},
{
selector: `$..`,
data: `[{"a": {"b": "c"}}, [0, 1]]`,
expected: []interface{}{[]interface{}{map[string]interface{}{"a": map[string]interface{}{"b": "c"}}, []interface{}{float64(0), float64(1)}}, map[string]interface{}{"a": map[string]interface{}{"b": "c"}}, map[string]interface{}{"b": "c"}, "c", []interface{}{float64(0), float64(1)}, float64(0), float64(1)},
consensus: consensusNone,
expectedError: "",
},
{
selector: `$.key..`,
data: `{"some key": "value", "key": {"complex": "string", "primitives": [0, 1]}}`,
expected: []interface{}{map[string]interface{}{"complex": "string", "primitives": []interface{}{float64(0), float64(1)}}, []interface{}{float64(0), float64(1)}, float64(0), float64(1), "string"},
consensus: consensusNone,
expectedError: "",
},
{
selector: `$`,
data: `{ "key": "value", "another key": { "complex": [ "a", 1 ] } }`,
expected: map[string]interface{}{"key": "value", "another key": map[string]interface{}{"complex": []interface{}{"a", float64(1)}}},
consensus: map[string]interface{}{"key": "value", "another key": map[string]interface{}{"complex": []interface{}{"a", float64(1)}}},
expectedError: "",
},
{
selector: `$`,
data: `42`,
expected: int64(42),
consensus: int64(42),
expectedError: "",
},
{
selector: `$`,
data: `false`,
expected: false,
consensus: false,
expectedError: "",
},
{
selector: `$`,
data: `true`,
expected: true,
consensus: true,
expectedError: "",
},
{
selector: `$[(@.length-1)]`,
data: `["first", "second", "third", "forth", "fifth"]`,
expected: "fifth",
consensus: nil,
expectedError: "",
},
}