-
Notifications
You must be signed in to change notification settings - Fork 18
/
json_test.go
203 lines (166 loc) · 4.32 KB
/
json_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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package posthog
import (
"reflect"
"testing"
)
func TestParseJsonTagEmpty(t *testing.T) {
name, omitempty := parseJsonTag("", "default")
if name != "default" {
t.Error("invalid field name found in empty tag:", name)
}
if omitempty {
t.Error("unexpected 'omitempty' state found in empty tag")
}
}
func TestParseJsonTagName(t *testing.T) {
name, omitempty := parseJsonTag("name", "default")
if name != "name" {
t.Error("invalid field name found in json tag:", name)
}
if omitempty {
t.Error("unexpected 'omitempty' state found in json tag")
}
}
func TestParseJsonTagOmitempty(t *testing.T) {
name, omitempty := parseJsonTag(",omitempty", "default")
if name != "default" {
t.Error("invalid field name found in omitempty tag:", name)
}
if !omitempty {
t.Error("expected 'omitempty' state not found in json tag")
}
}
func TestParseJsonTagNameOmitempty(t *testing.T) {
name, omitempty := parseJsonTag("name,omitempty", "default")
if name != "name" {
t.Error("invalid field name found in json tag:", name)
}
if !omitempty {
t.Error("expected 'omitempty' state not found in json tag")
}
}
func TestStructToMap(t *testing.T) {
type X struct {
A bool
B int `json:"b"`
C string `json:"c,omitempty"`
}
if m := structToMap(reflect.ValueOf(X{}), nil); !reflect.DeepEqual(m, map[string]interface{}{
"A": false,
"b": 0,
}) {
t.Error("invalid JSON object representation of a struct:", m)
}
}
func TestIsZeroValueStringTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf("")) {
t.Error("empty string should be a zero-value")
}
}
func TestIsZeroValueStringFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf("A")) {
t.Error("non-empty string should not be a zero-value")
}
}
func TestIsZeroValueSliceTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf([]int{})) {
t.Error("empty slice should be a zero-value")
}
}
func TestIsZeroValueSliceFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf([]int{0})) {
t.Error("non-empty slice should not be a zero-value")
}
}
func TestIsZeroValueMapTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf(map[string]string{})) {
t.Error("empty map should be a zero-value")
}
}
func TestIsZeroValueMapFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf(map[string]string{
"A": "a",
})) {
t.Error("non-empty map should not be a zero-value")
}
}
func TestIsZeroValueBoolTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf(false)) {
t.Error("`false` should be a zero-value")
}
}
func TestIsZeroValueBoolFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf(true)) {
t.Error("`true` should not be a zero-value")
}
}
func TestIsZeroValueIntTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf(0)) {
t.Error("`0` should be a zero-value")
}
}
func TestIsZeroValueIntFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf(1)) {
t.Error("`1` should not be a zero-value")
}
}
func TestIsZeroValueUintTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf(uint(0))) {
t.Error("`0` should be a zero-value")
}
}
func TestIsZeroValueUintFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf(uint(1))) {
t.Error("`1` should not be a zero-value")
}
}
func TestIsZeroValueFloatTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf(0.0)) {
t.Error("`0.0` should be a zero-value")
}
}
func TestIsZeroValueFloatFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf(1.0)) {
t.Error("`1.0` should not be a zero-value")
}
}
func TestIsZeroValuePointerTrue(t *testing.T) {
if !isZeroValue(reflect.ValueOf((*int)(nil))) {
t.Error("nil pointer should be a zero-value")
}
}
func TestIsZeroValuePointerFalse(t *testing.T) {
if isZeroValue(reflect.ValueOf(t)) {
t.Error("non-nil pointer should not be a zero-value")
}
}
func TestIsZeroValueStructTrue(t *testing.T) {
type T struct {
A bool
B int
C string
}
if !isZeroValue(reflect.ValueOf(T{})) {
t.Error("empty struct should be a zero-value")
}
}
func TestIsZeroValueStructFalse(t *testing.T) {
type T struct {
A bool
B int
C string
}
if isZeroValue(reflect.ValueOf(T{A: true})) {
t.Error("non-empty struct should not be a zero-value")
}
}
func TestIsZeroValueNil(t *testing.T) {
if !isZeroValue(reflect.ValueOf(nil)) {
t.Error("nil should be a zero-value")
}
}
func TestIsZeroValueFunc(t *testing.T) {
if isZeroValue(reflect.ValueOf(func() {})) {
t.Error("functions should be be zero-value")
}
}