-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstringify_test.go
135 lines (127 loc) · 3.19 KB
/
stringify_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
package stringify
import (
"encoding/json"
"strings"
"testing"
)
type (
Other struct {
Name string `json:"name,omitempty"`
Age int `json:"age,omitempty"`
VIP bool `json:"vip,omitempty"`
Information map[string]interface{} `json:"information,omitempty"`
}
Me struct {
ID string `json:"id,omitempty"`
Account string `json:"account,omitempty"`
Password string `json:"password,omitempty"`
Secret string `json:"-"`
Name string `json:"name,omitempty"`
Age int `json:"age,omitempty"`
VIP bool `json:"vip,omitempty"`
Detail string `json:"detail,omitempty"`
Information map[string]interface{} `json:"information,omitempty"`
Boss Other `json:"boss,omitempty"`
Leader *Other `json:"leader,omitempty"`
Workmates []Other `json:"workmates,omitempty"`
Friends []*Other `json:"friends,omitempty"`
Nil []*Other `json:"nil,omitempty"`
}
)
func getTestData() *Me {
friends := make([]*Other, 2)
friends = append(friends, &Other{
Name: "tom",
})
peter := &Other{
Name: "peter\" don\"",
}
return &Me{
ID: "",
Account: "test",
Password: "pwd",
Secret: "none",
Name: "foo",
Age: 18,
VIP: false,
Detail: "GitHub is where people build software. More than 31 million people use GitHub to discover, fork, and contribute to over 100 million projects.",
Information: map[string]interface{}{
"fav": "reading",
"weight": 70,
"male": true,
"bestFriend": peter,
},
Boss: Other{
Name: "boss",
},
Leader: &Other{
Age: 30,
},
Workmates: []Other{
Other{
Name: "jack",
},
Other{
Name: "tas",
},
},
Friends: friends,
}
}
func replacer(key string, value interface{}) (bool, string) {
if key == "password" {
return true, `"***"`
}
if key == "account" {
v := value.(string)
return true, `"` + v[0:1] + "***" + v[len(v)-1:] + `"`
}
str, ok := value.(string)
if ok && len(str) > 30 {
return true, `"` + str[0:30] + `..."`
}
return false, ""
}
func TestString(t *testing.T) {
s := getTestData()
str := String(s, replacer)
checkList := []string{
`"account":"t***t"`,
`"password":"***"`,
`"name":"foo"`,
`"age":18`,
`"detail":"GitHub is where people build s..."`,
`"fav":"reading"`,
`"weight":70`,
`"male":true`,
`"bestFriend":{"name":"peter\" don\""}`,
`"boss":{"name":"boss"}`,
`"leader":{"age":30}`,
`{"name":"jack"}`,
`{"name":"tas"}`,
`{"name":"tom"}`,
}
if len(str) != 312 {
t.Fatalf("json stringify fail")
}
for _, v := range checkList {
if !strings.Contains(str, v) {
t.Fatalf("json stringify fail, it should contains %s", v)
}
}
}
func BenchmarkString(b *testing.B) {
b.ReportAllocs()
s := getTestData()
for i := 0; i < b.N; i++ {
String(s, nil)
}
}
func BenchmarkMarshal(b *testing.B) {
b.ReportAllocs()
s := getTestData()
for i := 0; i < b.N; i++ {
buf, _ := json.Marshal(s)
_ = string(buf)
}
}