-
Notifications
You must be signed in to change notification settings - Fork 1
/
csvtogo_test.go
447 lines (429 loc) · 9.23 KB
/
csvtogo_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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
package csvtogo
import (
"encoding/csv"
"errors"
"fmt"
"io"
"os"
"reflect"
"strconv"
"testing"
)
func Test_realNoOfCol(t *testing.T) {
tt := []struct {
name string
noOfCol int
skip int
expectedR int
}{
{
name: "should return valid result when no of column is less than skip",
noOfCol: 5,
skip: 6,
expectedR: 5,
},
{
name: "should return valid result when no of column is more than skip",
noOfCol: 10,
skip: 6,
expectedR: 4,
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
r := realNoOfCol(tc.noOfCol, tc.skip)
if tc.expectedR != r {
t.Errorf("must:%v, but got: %v", tc.expectedR, r)
}
})
}
}
func Test_valueSetter(t *testing.T) {
skipper := make(map[int]int)
skipper[1] = 1
type Student struct {
Age int `min:"2" max:"5"`
}
tt := []struct {
name string
ops Options
ref Student
data []string
row int
expectedE error
}{
{
name: "should return nil when value is valid to set",
ops: Options{
SkipHeader: false,
skipper: skipper,
},
ref: Student{},
data: []string{"29", "ignore me"},
row: 0,
expectedE: nil,
},
{
name: "should do nothing at row 0 when skip header is true",
ops: Options{
SkipHeader: true,
skipper: skipper,
},
ref: Student{},
data: []string{"12", "this is first row"},
row: 0,
expectedE: nil,
},
{
name: "should return err when value is not match with struct",
ops: Options{
SkipHeader: false,
skipper: skipper,
},
ref: Student{},
data: []string{"e"},
row: 0,
expectedE: errors.New("invalid csv value at row: 0, the struct accept type int"),
},
{
name: "should return err when value length is more than max",
ops: Options{
SkipHeader: false,
skipper: skipper,
},
ref: Student{},
data: []string{"123456"},
row: 0,
expectedE: errors.New("value of Age at row 0 is invalid, value length must less than or equal 5, but got: 6"),
},
{
name: "should return err when value length is less than min",
ops: Options{
SkipHeader: false,
skipper: skipper,
},
ref: Student{},
data: []string{"1"},
row: 0,
expectedE: errors.New("value of Age at row 0 is invalid, value length must more than or equal 2, but got: 1"),
},
{
name: "should return err when number of array string not match with struct",
ops: Options{
SkipHeader: false,
},
ref: Student{},
data: []string{"12", "firstname"},
row: 0,
expectedE: errors.New("number of column is not match with struct at row: 0, expected: 1, got: 2"),
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
c := Executor[Student]{
ops: tc.ops,
outsChan: make(chan []Student, 1),
outChan: make(chan Student, 1),
//endChan: make(chan bool, 1),
nextChan: make(chan bool, 1),
errChan: make(chan error),
run: true,
}
//channel watching
go func() {
for c.run {
c.Read()
c.Next()
}
}()
e := c.valueSetter(tc.ref, tc.data, 0)
if fmt.Sprintf("%v", tc.expectedE) != fmt.Sprintf("%v", e) {
t.Errorf("must:%v, but got: %v", tc.expectedE, e)
}
c.run = false
c.Close()
})
}
}
func Test_typeSafe(t *testing.T) {
//string
f := reflect.ValueOf(&struct {
Firstname string
}{}).Elem().Field(0)
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(f, "test", 0)
if e != nil {
t.Errorf("must:nil, but got: %v", e)
}
})
//valid int
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Age int
}{}).Elem().Field(0),
"1",
0,
)
if e != nil {
t.Errorf("must:nil, but got: %v", e)
}
})
//invalid int
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Age int
}{}).Elem().Field(0),
"x",
0,
)
if e == nil {
t.Errorf("must: err, but got: nil")
}
})
//valid float
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Salary float64
}{}).Elem().Field(0),
"1",
0,
)
if e != nil {
t.Errorf("must:nil, but got: %v", e)
}
})
//invalid float
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Salary float64
}{}).Elem().Field(0),
"x",
0,
)
if e == nil {
t.Errorf("must: err, but got: nil")
}
})
//valid bool
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Married bool
}{}).Elem().Field(0),
"true",
0,
)
if e != nil {
t.Errorf("must:nil, but got: %v", e)
}
})
//invalid bool
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Married bool
}{}).Elem().Field(0),
"yes",
0,
)
if e == nil {
t.Errorf("must: err, but got: nil")
}
})
//un support type
t.Run("should return nil when value is valid", func(t *testing.T) {
e := typeSafe(
reflect.ValueOf(&struct {
Married []string
}{}).Elem().Field(0),
"something",
0,
)
if e == nil {
t.Errorf("must: err, but got: nil")
}
})
}
func Test_CsvToStruct(t *testing.T) {
type Customer struct {
Name string
Age int
Salary float64
Married bool
}
tt := []struct {
name string
filename string
genFile func()
expectedR []Customer
expectedE error
}{
{
name: "should return valid result",
filename: "./for_test.csv",
genFile: func() {
f, err := os.Create("./for_test.csv")
if err != nil {
panic(err)
}
w := csv.NewWriter(f)
_ = w.Write([]string{"NAME", "AGE", "SALARY", "MARRIED"})
_ = w.Write([]string{"Sarah", "12", "200.00", "false"})
_ = w.Write([]string{"John", "21", "10.59", "true"})
w.Flush()
_ = f.Close()
},
expectedR: []Customer{
{
Name: "Sarah",
Age: 12,
Salary: 200,
Married: false,
},
{
Name: "John",
Age: 21,
Salary: 10.59,
Married: true,
},
},
expectedE: nil,
},
{
name: "should return error when some value is not match with field type",
filename: "./for_test.csv",
genFile: func() {
f, err := os.Create("./for_test.csv")
if err != nil {
panic(err)
}
w := csv.NewWriter(f)
_ = w.Write([]string{"NAME", "AGE", "SALARY", "MARRIED"})
_ = w.Write([]string{"Sarah", "12", "200.00", "false"})
_ = w.Write([]string{"John", "21", "NOT FOUND", "true"})
w.Flush()
_ = f.Close()
},
expectedR: nil,
expectedE: errors.New("invalid csv value at row: 2, the struct accept type float"),
},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
if tc.genFile != nil {
tc.genFile()
}
c, _ := NewClient[Customer](tc.filename)
r, e := c.CsvToStruct()
if fmt.Sprintf("%v", tc.expectedE) != fmt.Sprintf("%v", e) {
t.Errorf("must:%v, but got: %v", tc.expectedE, e)
}
//deep check
err := deepEqual[Customer](tc.expectedR, r)
if err != nil {
t.Error(err)
}
_ = os.Remove(tc.filename)
})
}
}
func BenchmarkExecutor_CsvToStruct(b *testing.B) {
type Customer struct {
Name string `min:"1" max:"100"`
Age int `min:"1" max:"100"`
Salary float64 `min:"1" max:"100"`
Married bool `min:"1" max:"100"`
}
f, err := os.Create("./for_test.csv")
if err != nil {
panic(err)
}
w := csv.NewWriter(f)
_ = w.Write([]string{"NAME", "AGE", "SALARY", "MARRIED"})
for i := 0; i <= 100; i++ {
_ = w.Write([]string{"Sarah", "12", "200.00", "false"})
}
w.Flush()
_ = f.Close()
defer os.Remove("./for_test.csv")
for n := 0; n < b.N; n++ {
//c, _ := NewClient[Customer]("./for_test.csv")
//_, err := c.CsvToStruct()
//if err != nil {
// panic(err)
//}
//normal()
}
}
func normal() {
type Customer struct {
Name string `min:"1" max:"100"`
Age int `min:"1" max:"100"`
Salary float64 `min:"1" max:"100"`
Married bool `min:"1" max:"100"`
}
f, _ := os.Open("./for_test.csv")
defer f.Close()
var result []Customer
reader := csv.NewReader(f)
reader.Comma = ','
row := -1
for {
row += 1
if row == 0 {
continue
}
d, err := reader.Read()
if err == io.EOF {
//no more content
break
}
if len(d) != 4 {
//err
break
}
//max min checking
if len(d[1]) < 1 {
panic("failed")
}
if len(d[1]) > 100 {
panic("failed")
}
age, _ := strconv.Atoi(d[1])
if len(d[2]) < 1 {
panic("failed")
}
if len(d[2]) > 100 {
panic("failed")
}
s, _ := strconv.ParseFloat(d[2], 64)
if len(d[3]) < 1 {
panic("failed")
}
if len(d[3]) > 100 {
panic("failed")
}
b, _ := strconv.ParseBool(d[3])
result = append(result, Customer{
Name: d[0],
Age: age,
Salary: s,
Married: b,
})
}
}
func deepEqual[T any](expect []T, actual []*T) error {
if len(expect) != len(actual) {
return fmt.Errorf("array size is not match")
}
for k, v := range expect {
if fmt.Sprintf("%v", v) != fmt.Sprintf("%v", *actual[k]) {
return fmt.Errorf("must: %v, but got: %v", v, *actual[k])
}
}
return nil
}