-
Notifications
You must be signed in to change notification settings - Fork 0
/
visit_test.go
136 lines (130 loc) · 2.68 KB
/
visit_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
// Package visit is a library to visit Go data structures (using reflection)
package visit
import (
"fmt"
"reflect"
"testing"
)
func Example() {
type myStruct struct {
String string
Map map[string]myStruct
Ptr *myStruct
}
obj := &myStruct{
String: "hello",
Map: map[string]myStruct{
"world": {String: "!"},
},
}
obj.Ptr = obj
var strings []string
Values(obj, func(value ValueWithParent) (Action, error) {
if value.Kind() == reflect.String {
strings = append(strings, value.String())
}
return Continue, nil
})
fmt.Println(strings)
// Output:
// [hello world !]
}
func TestAny(t *testing.T) {
type kitchenSink struct {
Ptr *kitchenSink
Structs []kitchenSink
Strings []string
Maps []map[string]interface{}
Single string
}
loopy := kitchenSink{
Structs: []kitchenSink{
{Single: "abc"},
},
Maps: []map[string]interface{}{
{
"hello": 123,
"world": 456,
},
},
Single: "baz",
Strings: []string{"foo", "bar"},
}
loopy.Ptr = &loopy
accumulatedStrings := make(map[string]int)
rewrite := kitchenSink{
Single: "abc",
Maps: []map[string]interface{}{
{
"def": []string{"xyz", "uvw"},
},
},
Strings: []string{"foo", "bar"},
}
type args struct {
obj interface{}
f func(v ValueWithParent) (Action, error)
}
tests := []struct {
name string
args args
wantErr bool
out func() interface{}
wantOut interface{}
}{
{
name: "kitchen sink",
args: args{
obj: &loopy,
f: func(v ValueWithParent) (Action, error) {
if v.Kind() == reflect.String {
accumulatedStrings[v.String()]++
}
return Continue, nil
},
},
out: func() interface{} { return accumulatedStrings },
wantOut: map[string]int{
"abc": 1,
"hello": 1,
"world": 1,
"foo": 1,
"bar": 1,
"baz": 1,
},
},
{
name: "rewrite",
args: args{
obj: &rewrite,
f: func(v ValueWithParent) (Action, error) {
if v.Kind() == reflect.String {
Assign(v, reflect.ValueOf(v.String()+"(edited)"))
}
return Continue, nil
},
},
out: func() interface{} { return rewrite },
wantOut: kitchenSink{
Single: "abc(edited)",
Maps: []map[string]interface{}{
{
"def": []string{"xyz(edited)", "uvw(edited)"},
},
},
Strings: []string{"foo(edited)", "bar(edited)"},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := Values(tt.args.obj, tt.args.f)
if (err != nil) != tt.wantErr {
t.Errorf("Values() error = %v, wantErr %v", err, tt.wantErr)
}
if out := tt.out(); !reflect.DeepEqual(out, tt.wantOut) {
t.Errorf("Values() out = %v, wantOut %v", out, tt.wantOut)
}
})
}
}