-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtype_int_test.go
348 lines (322 loc) · 7.28 KB
/
type_int_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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
package generic
import (
"encoding/json"
"reflect"
"testing"
"github.com/stretchr/testify/assert"
)
type TestIntStruct struct {
Int Int `json:"int"`
Float Int `json:"float"`
Bool Int `json:"bool"`
String Int `json:"string"`
NullValue Int `json:"null_value"`
Empty Int `json:"empty"`
}
func TestMarshalInt(t *testing.T) {
expected := Int{
ValidFlag: true,
int: 100,
}
i := 100
actual, err := MarshalInt(i)
if err != nil {
t.Errorf("Not Expected error when MarshalInt. error:%v", err.Error())
}
if actual != expected {
t.Errorf("actual:%v, expected:%v", actual, expected)
}
}
func TestMustInt(t *testing.T) {
tests := []struct {
name string
args interface{}
want Int
wantPanic bool
}{
{
name: "valid",
args: 123,
want: Int{
ValidFlag: true,
int: 123,
},
wantPanic: false,
},
{
name: "panic",
args: "valid paramenter",
want: Int{
ValidFlag: false,
},
wantPanic: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.wantPanic {
p := assert.Panics(t, func() {
MustInt(tt.args)
})
if !p {
t.Errorf("MustInt() panic = %v, want panic %v", p, tt.wantPanic)
}
return
}
if got := MustInt(tt.args); !reflect.DeepEqual(got, tt.want) {
t.Errorf("MustInt() = %v, want %v", got, tt.want)
}
})
}
}
func TestIntJsonUnmarshalAndMarshal(t *testing.T) {
var ts TestIntStruct
jstr := `{"int":10,"float":1.0,"bool":true,"string":"-50","null_value":null}`
expected := `{"int":10,"float":1,"bool":1,"string":-50,"null_value":null,"empty":null}`
err := json.Unmarshal([]byte(jstr), &ts)
if err != nil {
t.Errorf("Not Expected error when json.Unmarshal. error:%v", err.Error())
}
b, err := json.Marshal(ts)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
actual := string(b)
if actual != expected {
t.Errorf("actual:%s, expected:%s", actual, expected)
}
}
func TestIntJsonMarshal(t *testing.T) {
ts := Int{
ValidFlag: true,
int: 1000,
}
expected := `1000`
actual, err := json.Marshal(ts)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
if string(actual) != expected {
t.Errorf("actual:%s, expected:%s", string(actual), expected)
}
}
func TestIntJsonMarshalValidFalse(t *testing.T) {
ts := Int{
ValidFlag: false,
int: 1000,
}
expected := []byte("null")
actual, err := json.Marshal(ts)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
if string(actual) != string(expected) {
t.Errorf("actual:%v, expected:%v", actual, expected)
}
}
func TestIntJsonMarshalZero(t *testing.T) {
ts := Int{
ValidFlag: true,
int: 0,
}
expected := `0`
actual, err := json.Marshal(ts)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
if string(actual) != expected {
t.Errorf("actual:%s, expected:%s", string(actual), expected)
}
}
func TestIntJsonUnmarshal(t *testing.T) {
jstr := `{"int":10,"float":1.0,"bool":true,"string":"-50","null_value":null}`
expected := TestIntStruct{
Int: Int{
ValidFlag: true,
int: 10,
},
Float: Int{
ValidFlag: true,
int: 1,
},
Bool: Int{
ValidFlag: true,
int: 1,
},
String: Int{
ValidFlag: true,
int: -50,
},
NullValue: Int{
ValidFlag: false,
int: 0,
},
Empty: Int{
ValidFlag: false,
int: 0,
},
}
var actual TestIntStruct
err := json.Unmarshal([]byte(jstr), &actual)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%s", err.Error())
}
if actual != expected {
t.Errorf("actual:%#v, expected:%#v", actual, expected)
}
}
func TestUnmarshalNil(t *testing.T) {
var actual Int
expected := Int{}
err := actual.UnmarshalJSON(nil)
if err != nil {
t.Errorf("Not Expected error when json.Unmarshal. error:%s", err.Error())
}
if actual != expected {
t.Errorf("actual:%#v, expected:%#v", actual, expected)
}
}
func TestUnmarshalInvalidData(t *testing.T) {
var actual Int
err := actual.UnmarshalJSON([]byte(`"1`))
if err == nil {
t.Error("Expected error when json.Unmarshal")
}
}
func TestIntJsonError(t *testing.T) {
var ts TestIntStruct
jstr := `{"int":10,"float":1.0,"bool":true,"string":"あ","null_value":null}`
expected := `{"int":10,"float":1,"bool":1,"string":null,"null_value":null,"empty":null}`
err := json.Unmarshal([]byte(jstr), &ts)
if err == nil {
t.Error("Expected error when json.Unmarshal.")
}
b, err := json.Marshal(ts)
if err != nil {
t.Errorf("Not Expected error when json.Marshal. error:%v", err.Error())
}
actual := string(b)
if actual != expected {
t.Errorf("actual:%s, expected:%s", actual, expected)
}
}
func TestIntSetNil(t *testing.T) {
ti := Int{}
err := ti.Set(nil)
if err != nil {
t.Errorf("Not Expected error. error:%v", err.Error())
}
if ti.Weak() != nil {
t.Errorf("This value should return nil. error:%#v", ti.Weak())
}
}
func TestIntSetInt64(t *testing.T) {
var v int64 = 100
var expected int64 = 100
ti := Int{}
err := ti.Set(v)
if err != nil {
t.Errorf("Not Expected error. error:%v", err.Error())
}
if ti.Weak() != expected {
t.Errorf("actual:%v, expected:%v", ti.Weak(), expected)
}
}
func TestIntSetNumericString(t *testing.T) {
v := "56"
var expected int64 = 56
ti := Int{}
err := ti.Set(v)
if err != nil {
t.Errorf("Not Expected error. error:%v", err.Error())
}
if ti.Weak() != expected {
t.Errorf("actual:%v, expected:%v", ti.Weak(), expected)
}
}
func TestIntSetNonNumericString(t *testing.T) {
v := "a"
var expected int64
ti := Int{}
err := ti.Set(v)
if err == nil {
t.Error("Expected error.")
}
if ti.Weak() == expected {
t.Errorf("This value should return 0. value:%#v", ti.Weak())
}
}
func TestIntInt(t *testing.T) {
expected := 123456789
ti := Int{
ValidFlag: true,
int: int64(expected),
}
if ti.Int() != expected {
t.Errorf("actual:%d, expected:%d", ti.Int(), expected)
}
}
func TestIntIntInvalid(t *testing.T) {
ti := Int{
ValidFlag: false,
int: 123456789,
}
if ti.Int() != 0 {
t.Errorf("actual:%d, expected:0", ti.Int())
}
}
func TestIntInt32(t *testing.T) {
var expected int32 = 123456789
ti := Int{
ValidFlag: true,
int: int64(expected),
}
if ti.Int32() != expected {
t.Errorf("actual:%d, expected:%d", ti.Int32(), expected)
}
}
func TestIntInt32Invalid(t *testing.T) {
ti := Int{
ValidFlag: false,
int: 123456789,
}
if ti.Int32() != 0 {
t.Errorf("actual:%d, expected:0", ti.Int32())
}
}
func TestIntInt64(t *testing.T) {
var expected int64 = 123456789
ti := Int{
ValidFlag: true,
int: expected,
}
if ti.Int64() != expected {
t.Errorf("actual:%d, expected:%d", ti.Int64(), expected)
}
}
func TestIntInt64Invalid(t *testing.T) {
ti := Int{
ValidFlag: false,
int: 123456789,
}
if ti.Int64() != 0 {
t.Errorf("actual:%d, expected:0", ti.Int64())
}
}
func TestIntString(t *testing.T) {
var expected = "123456789"
ti := Int{}
ti.Set(expected) // nolint
if ti.String() != expected {
t.Errorf("actual:%s, expected:%s", ti.String(), expected)
}
}
func TestIntStringInvalid(t *testing.T) {
ti := Int{
ValidFlag: false,
int: 123456789,
}
if ti.String() != "" {
t.Errorf("expected empty string, actual:%s", ti.String())
}
}