-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtraversal_test.go
65 lines (54 loc) · 947 Bytes
/
traversal_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
package jsonpointer
import (
"encoding/json"
"testing"
)
type A struct {
Foo string `json:"$foo,omitempty"`
Foo2 bool `json:"$foo2"`
Bar B
}
type B struct {
nope string
Baz int
C C
D D
}
type C struct {
Nope string
}
func (c C) JSONProps() map[string]interface{} {
return map[string]interface{}{
"bat": "book",
"stuff": false,
"other": nil,
}
}
type D []string
var data = []byte(`{
"$foo" : "fooval",
"$foo2" : true,
"bar" : {
"baz" : 1,
"C" : {
"won't" : "register"
}
}
}`)
func TestWalkJSON(t *testing.T) {
a := &A{}
if err := json.Unmarshal(data, a); err != nil {
t.Errorf("unexpected unmarshal error: %s", err.Error())
return
}
elements := 0
expectElements := 9
WalkJSON(a, func(elem interface{}) error {
t.Logf("%#v", elem)
elements++
return nil
})
if elements != expectElements {
t.Errorf("expected %d elements, got: %d", expectElements, elements)
}
}