-
Notifications
You must be signed in to change notification settings - Fork 0
/
csvplus_test.go
1019 lines (926 loc) · 23.5 KB
/
csvplus_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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package csvplus_test
import (
"bytes"
"encoding/csv"
"fmt"
"strings"
"testing"
"time"
"github.com/j0hnsmith/csvplus"
)
func ExampleUnmarshal() {
type Item struct {
First string `csvplus:"first"`
Second int `csvplus:"second"`
Third *bool `csvplus:"third"`
Forth *time.Time `csvplus:"forth" csvplusFormat:"2006-01"`
}
// The CSV data we want to unmarshal.
// If your data is in a *File (or other io.Reader), use UnmarshalReader().
data := []byte("first,second,third,forth\na,1,,2000-01\nb,2,f,")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
panic(err)
}
fmt.Printf("%+v\n", items[0])
fmt.Printf("{First:%s Second:%d Third:%t (dereferenced) Forth:%s}\n", items[1].First, items[1].Second, *items[1].Third, items[1].Forth)
// Output:
// {First:a Second:1 Third:<nil> Forth:2000-01-01 00:00:00 +0000 UTC}
// {First:b Second:2 Third:false (dereferenced) Forth:<nil>}
}
var benchItems interface{}
func BenchmarkUnmarshal(b *testing.B) {
type Item struct {
First string `csvplus:"first"`
Second int `csvplus:"second"`
Third *bool `csvplus:"third"`
}
// The CSV data we want to unmarshal.
// If your data is in a *File (or other io.Reader), use UnmarshalReader().
data := []byte("first,second,third\na,1,\nb,2,f")
var items []Item
for n := 0; n < b.N; n++ {
items = nil
// always record the result of Fib to prevent
// the compiler eliminating the function call.
err := csvplus.Unmarshal(data, &items)
if err != nil {
panic(err)
}
}
// always store the result to a package level variable
// so the compiler cannot eliminate the Benchmark itself.
benchItems = items
}
// YesNoBool is an example field that implements Unmarhsaler, it's used in an example.
type YesNoBool bool
// UnmarshalCSV is an implementation of the Unmarshaller interface, converts a string record to a native
// value for this type.
func (ynb *YesNoBool) UnmarshalCSV(s string) error {
if ynb == nil {
return fmt.Errorf("cannot unmarshal into nil pointer")
}
switch s {
case "yes":
*ynb = YesNoBool(true)
return nil
case "no":
*ynb = YesNoBool(false)
return nil
case "":
*ynb = YesNoBool(false)
return nil
}
return fmt.Errorf("unable to convert %s to bool", s)
}
func (ynb *YesNoBool) MarshalCSV() ([]byte, error) {
if ynb == nil || !*ynb {
return []byte("no"), nil
}
return []byte("yes"), nil
}
func ExampleUnmarshaler() {
// type YesNoBool bool
// func (ynb *YesNoBool) UnmarshalCSV(s string) error {
// if ynb == nil {
// return fmt.Errorf("cannot unmarshal into nil pointer")
// }
// switch s {
// case "yes":
// *ynb = YesNoBool(true)
// return nil
// case "no":
// *ynb = YesNoBool(false)
// return nil
// case "":
// *ynb = YesNoBool(false) // custom zero value
// return nil
// }
// return fmt.Errorf("unable to convert %s to bool", s)
// }
type Item struct {
Name string `csvplus:"name"`
Seen *YesNoBool `csvplus:"seen"` // custom type that implements Unmarshaler
Agreed *YesNoBool `csvplus:"agreed"` // custom type that implements Unmarshaler
Timestamp *time.Time `csvplus:"when" csvplusFormat:"2006-01"`
}
// The CSV data we want to unmarshal, note the custom format.
data := []byte("name,seen,agreed,when\nRob,yes,yes,1999-11\nRuss,,no,")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
panic(err)
}
fmt.Printf("{%s %t (dereferenced) %t %s}\n", items[0].Name, *items[0].Seen, *items[0].Agreed, items[0].Timestamp)
fmt.Printf("{%s %+v %t %+v}\n", items[1].Name, *items[1].Seen, *items[1].Agreed, items[1].Timestamp)
// Output:
// {Rob true (dereferenced) true 1999-11-01 00:00:00 +0000 UTC}
// {Russ false false <nil>}
}
func ExampleMarshal() {
type Item struct {
First string `csvplus:"first"`
Second int `csvplus:"second"`
Third *bool `csvplus:"third"`
Fourth *time.Time `csvplus:"fourth" csvplusFormat:"2006-01"`
}
tm, _ := time.Parse("2006-01", "2000-01")
f := false
items := []Item{
{"a", 1, nil, &tm},
{"b", 2, &f, nil},
}
data, err := csvplus.Marshal(&items)
if err != nil {
panic(err)
}
fmt.Println(string(data))
// Output:
// first,second,third,fourth
// a,1,,2000-01
// b,2,false,
}
var benchData []byte
func BenchmarkMarshal(b *testing.B) {
type Item struct {
First string `csvplus:"first"`
Second int `csvplus:"second"`
Third *bool `csvplus:"third"`
}
f := false
items := []Item{
{"a", 1, nil},
{"b", 2, &f},
}
var data []byte
var err error
for n := 0; n < b.N; n++ {
// always record the result of Fib to prevent
// the compiler eliminating the function call.
data, err = csvplus.Marshal(&items)
if err != nil {
panic(err)
}
}
// always store the result to a package level variable
// so the compiler cannot eliminate the Benchmark itself.
benchData = data
}
func TestUnmarshal(t *testing.T) { // nolint: gocyclo
t.Run("general", func(t *testing.T) {
t.Run("slice as value instead of pointer", func(t *testing.T) {
type Item struct {
First string
Second int
}
data := []byte("First,Second\na,1\nb,2")
var items []Item
err := csvplus.Unmarshal(data, items)
expectedPrefix := "non pointer"
if !strings.HasPrefix(err.Error(), expectedPrefix) {
t.Errorf("wrong error prefix, expected: '%s', got: %s", expectedPrefix, err.Error())
}
})
t.Run("string pointer fails", func(t *testing.T) {
a := "not a pointer to a slice"
data := []byte("First,Second\na,1\nb,2")
err := csvplus.Unmarshal(data, &a)
if err == nil {
t.Error("expected error")
}
})
t.Run("struct field not in csv", func(t *testing.T) {
type Item struct {
First string
Second int
Third *bool
}
data := []byte("First,Second\na,1\nb,2")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len(items) to be 2, got: %d", len(items))
}
if items[0].Third != nil {
t.Errorf("expected nil, got: %v", items[0].Third)
}
if items[1].Third != nil {
t.Errorf("expected nil, got: %v", items[0].Third)
}
})
})
t.Run("field types", func(t *testing.T) {
t.Run("uint8", func(t *testing.T) {
type Item struct {
First uint8 `csvplus:"first"`
}
data := []byte("first\n7")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 1 {
t.Errorf("expected len of %d, got: %d", 1, len(items))
}
if items[0].First != 7 {
t.Errorf("expected '7', got: %d", items[0].First)
}
})
t.Run("uint error", func(t *testing.T) {
type Item struct {
First uint
}
data := []byte("First\nnot uint")
var items []Item
err := csvplus.Unmarshal(data, &items)
expectedContent := "parsing \"not uint\": invalid syntax"
if !strings.Contains(err.Error(), expectedContent) {
t.Errorf("wrong error, expected: '%s', got: %s", expectedContent, err.Error())
}
})
t.Run("int error", func(t *testing.T) {
type Item struct {
First int
}
data := []byte("First\nnot int")
var items []Item
err := csvplus.Unmarshal(data, &items)
expectedContent := "parsing \"not int\": invalid syntax"
if !strings.Contains(err.Error(), expectedContent) {
t.Errorf("wrong error, got: '%s', expected: '%s'", err.Error(), expectedContent)
}
})
t.Run("float32 error", func(t *testing.T) {
type Item struct {
First float32
}
data := []byte("First\nnot float32")
var items []Item
err := csvplus.Unmarshal(data, &items)
expectedContent := "parsing \"not float32\": invalid syntax"
if !strings.Contains(err.Error(), expectedContent) {
t.Errorf("wrong error, expected: '%s', got: %s", expectedContent, err.Error())
}
})
t.Run("bool", func(t *testing.T) {
var tests = []struct {
Name string
Data []byte
Expected bool
}{
{
"true",
[]byte("First\ntrue"),
true,
},
{
"1",
[]byte("First\n1"),
true,
},
{
"t",
[]byte("First\nt"),
true,
},
}
for _, tt := range tests {
t.Run(tt.Name, func(t *testing.T) {
type Item struct {
First bool
}
var items []Item
err := csvplus.Unmarshal(tt.Data, &items)
if err != nil {
t.Fatal(err)
}
if items[0].First != tt.Expected {
t.Errorf("expected %v", tt.Expected)
}
})
}
})
t.Run("bool error", func(t *testing.T) {
type Item struct {
First bool
}
data := []byte("First\nnot bool")
var items []Item
err := csvplus.Unmarshal(data, &items)
expectedContent := "parsing \"not bool\": invalid syntax"
if !strings.Contains(err.Error(), expectedContent) {
t.Errorf("wrong error, expected: '%s', got: %s", expectedContent, err.Error())
}
})
t.Run("time.Time", func(t *testing.T) {
t.Run("RFC3339Nano", func(t *testing.T) {
type Item struct {
First time.Time `csvplusFormat:"time.RFC3339Nano"`
}
dt := time.Now().UTC()
dts := dt.Format(time.RFC3339Nano)
data := []byte(fmt.Sprintf("First\n%s", dts))
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if items[0].First != dt {
t.Errorf("expected %v, got %v", dt, items[0].First)
}
})
t.Run("RFC3339", func(t *testing.T) {
type Item struct {
First time.Time `csvplusFormat:"time.RFC3339"`
}
dt := time.Now().UTC()
dts := dt.Format(time.RFC3339)
data := []byte(fmt.Sprintf("First\n%s", dts))
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
dt1, _ := time.Parse(time.RFC3339, dts)
if items[0].First != dt1 {
t.Errorf("expected %v, got %v", dt1, items[0].First)
}
})
t.Run("RFC3339 is default", func(t *testing.T) {
type Item struct {
First time.Time
}
dt := time.Now().UTC()
dts := dt.Format(time.RFC3339)
data := []byte(fmt.Sprintf("First\n%s", dts))
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
dt1, _ := time.Parse(time.RFC3339, dts)
if items[0].First != dt1 {
t.Errorf("expected %v, got %v", dt1, items[0].First)
}
})
t.Run("custom format", func(t *testing.T) {
type Item struct {
First time.Time `csvplusFormat:"2006-01"`
}
dt := time.Now().UTC()
format := "2006-01"
dts := dt.Format(format)
data := []byte(fmt.Sprintf("First\n%s", dts))
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
dt1, _ := time.Parse(format, dts)
if items[0].First != dt1 {
t.Errorf("expected %v, got %v", dt1, items[0].First)
}
})
t.Run("invalid format", func(t *testing.T) {
type Item struct {
First time.Time `csvplusFormat:"invalid format"`
}
dt := time.Now().UTC()
format := "2006-01"
dts := dt.Format(format)
data := []byte(fmt.Sprintf("First\n%s", dts))
var items []Item
err := csvplus.Unmarshal(data, &items)
expectedContent := "cannot parse \"2023-03\" as \"invalid format\""
if !strings.Contains(err.Error(), expectedContent) {
t.Errorf("wrong error prefix, expected: '%s', got: %s", expectedContent, err.Error())
}
})
})
})
t.Run("header row", func(t *testing.T) {
t.Run("works, all simple go types with col tags", func(t *testing.T) {
type Item struct {
First string `csvplus:"first"`
Second int `csvplus:"second"`
Third *bool `csvplus:"third"`
Forth float64 `csvplus:"forth"`
}
data := []byte("first,second,third,forth\na,1,,0.2\nb,2,f,1")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len of %d, got: %d", 2, len(items))
}
if items[0].First != "a" {
t.Errorf("expected 'a', got: %s", items[0].First)
}
if items[0].Second != 1 {
t.Errorf("expected 1, got: %d", items[0].Second)
}
if items[0].Third != nil {
t.Errorf("expected pointer field to be nil, got: %v", items[0].Third)
}
if items[0].Forth != 0.2 {
t.Errorf("expected 0.2, got: %.2f", items[0].Forth)
}
if items[1].First != "b" {
t.Errorf("expected 'b', got: %s", items[1].First)
}
if items[1].Second != 2 {
t.Errorf("expected 2, got: %d", items[1].Second)
}
if *items[1].Third {
t.Errorf("expected false, got: %v", *items[1].Third)
}
if items[1].Forth != 1 {
t.Errorf("expected 0.2, got: %.2f", items[1].Forth)
}
})
t.Run("works without tags (col name same as struct field name)", func(t *testing.T) {
type Item struct {
First string
Second int
}
data := []byte("First,Second\na,1\nb,2")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len of %d, got: %d", 2, len(items))
}
if items[0].First != "a" {
t.Errorf("expected 'a', got: %s", items[0].First)
}
if items[0].Second != 1 {
t.Errorf("expected 1, got: %d", items[0].Second)
}
if items[1].First != "b" {
t.Errorf("expected 'b', got: %s", items[1].First)
}
if items[1].Second != 2 {
t.Errorf("expected 2, got: %d", items[1].Second)
}
})
t.Run("lowercased field names in data match", func(t *testing.T) {
type Item struct {
First string
Second int
}
data := []byte("first,second\na,1\nb,2")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len of %d, got: %d", 2, len(items))
}
if items[0].First != "a" {
t.Errorf("expected 'a', got: %s", items[0].First)
}
if items[0].Second != 1 {
t.Errorf("expected 1, got: %d", items[0].Second)
}
if items[1].First != "b" {
t.Errorf("expected 'b', got: %s", items[1].First)
}
if items[1].Second != 2 {
t.Errorf("expected 2, got: %d", items[1].Second)
}
})
t.Run("skipped field -", func(t *testing.T) {
type Item struct {
First string `csvplus:"-"`
Second int
}
data := []byte("First,Second\na,1\nb,2")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len of %d, got: %d", 2, len(items))
}
if items[0].First != "" {
t.Errorf("expected empty string, got: %s", items[0].First)
}
if items[1].First != "" {
t.Errorf("expected empty string, got: %s", items[1].First)
}
})
})
t.Run("column naming errors", func(t *testing.T) {
t.Run("duplicate col name", func(t *testing.T) {
// duplicate name so we don't expect the data to be set in either column
type Item struct {
First *int
Second *int `csvplus:"First"`
}
data := []byte("First,Second\na,1\nb,2")
var items []Item
err := csvplus.Unmarshal(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len of %d, got: %d", 2, len(items))
}
if items[0].First != nil {
t.Errorf("expected nil, got: %v", items[0].First)
}
if items[0].Second != nil {
t.Errorf("expected 2, got: %d", items[1].First)
}
})
})
}
func TestUnmarshalWithoutHeader(t *testing.T) { // nolint: gocyclo
t.Run("works", func(t *testing.T) {
type Item struct {
First string `csvplus:"-"`
Second int
Third bool
}
data := []byte("1,true\n2,false")
var items []Item
err := csvplus.UnmarshalWithoutHeader(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Error()
}
if items[0].First != "" {
t.Errorf("expected empty string, got: %v", items[0].First)
}
if items[0].Second != 1 {
t.Errorf("expected 1, got: %v", items[0].First)
}
if items[0].Third != true {
t.Errorf("expected true, got: %v", items[1].First)
}
if items[1].First != "" {
t.Errorf("expected empty string, got: %v", items[1].First)
}
if items[1].Second != 2 {
t.Errorf("expected 2, got: %v", items[1].First)
}
if items[1].Third != false {
t.Errorf("expected false, got: %v", items[1].First)
}
})
t.Run("extra fields in data are ignored", func(t *testing.T) {
type Item struct {
First string
Second int
}
data := []byte("foo,1,true\nbar,2,false\n")
var items []Item
err := csvplus.UnmarshalWithoutHeader(data, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Error()
}
if items[0].First != "foo" {
t.Errorf("expected empty string, got: %v", items[0].First)
}
if items[0].Second != 1 {
t.Errorf("expected 1, got: %v", items[0].First)
}
if items[1].First != "bar" {
t.Errorf("expected empty string, got: %v", items[1].First)
}
if items[1].Second != 2 {
t.Errorf("expected 2, got: %v", items[1].First)
}
})
t.Run("extra fields in struct", func(t *testing.T) {
type Item struct {
First string
Second int
Third bool
}
data := []byte("foo,1\nbar,2\n")
var items []Item
err := csvplus.UnmarshalWithoutHeader(data, &items)
if err == nil {
t.Fatal("expected not enough columns in csv data error")
}
})
}
func TestUnmarshalReader(t *testing.T) {
type Item struct {
First string
Second int
}
data := []byte("First,Second\na,1\nb,2")
var items []Item
buf := bytes.NewBuffer(data)
err := csvplus.UnmarshalReader(buf, &items)
if err != nil {
t.Fatal(err)
}
if len(items) != 2 {
t.Errorf("expected len of %d, got: %d", 2, len(items))
}
if items[0].First != "a" {
t.Errorf("expected 'a', got: %s", items[0].First)
}
if items[0].Second != 1 {
t.Errorf("expected 1, got: %d", items[0].Second)
}
if items[1].First != "b" {
t.Errorf("expected 'b', got: %s", items[1].First)
}
if items[1].Second != 2 {
t.Errorf("expected 2, got: %d", items[1].Second)
}
}
func ExampleDecoder_SetCSVReader() {
type Item struct {
Name string `csvplus:"name"`
Timestamp *time.Time `csvplus:"when" csvplusFormat:"2006-01"`
}
data := []byte("name|when\nRob|1999-11\nRuss|")
// create a *csv.Reader
r := csv.NewReader(bytes.NewReader(data))
// modify to get the required functionality, in this case '|' separated fields
r.Comma = '|'
dec := csvplus.NewDecoder(bytes.NewReader(data))
// set the csv reader to the custom reader
dec.SetCSVReader(r)
var items []Item
err := dec.Decode(&items)
if err != nil {
panic(err)
}
fmt.Printf("{%s %s}\n", items[0].Name, items[0].Timestamp)
fmt.Printf("{%s %+v}\n", items[1].Name, items[1].Timestamp)
// Output:
// {Rob 1999-11-01 00:00:00 +0000 UTC}
// {Russ <nil>}
}
func TestMarshal(t *testing.T) { // nolint: gocyclo
t.Run("no tags", func(t *testing.T) {
type Item struct {
First string
Second int
}
items := []Item{
{
"a",
1,
},
{
"b",
2,
},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First,Second\na,1\nb,2\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("col tags work", func(t *testing.T) {
type Item struct {
First string `csvplus:"first"`
Second int `csvplus:"second"`
}
items := []Item{
{
"a",
1,
},
{
"b",
2,
},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("first,second\na,1\nb,2\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("skip field", func(t *testing.T) {
type Item struct {
First string `csvplus:"-"`
Second int `csvplus:"second"`
}
items := []Item{
{
"a",
1,
},
{
"b",
2,
},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("second\n1\n2\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("time.Time format", func(t *testing.T) {
type Item struct {
First time.Time `csvplusFormat:"2006-01"`
}
tm, _ := time.Parse("2006-01", "2010-01")
items := []Item{
{
tm,
},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First\n2010-01\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("pointer field", func(t *testing.T) {
type Item struct {
First *bool
}
yes := true
items := []Item{
{
&yes,
},
{},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First\ntrue\n\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("uint", func(t *testing.T) {
type Item struct {
First uint
}
items := []Item{
{
10,
},
{},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First\n10\n0\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("float", func(t *testing.T) {
type Item struct {
First float64
}
items := []Item{
{
10.05,
},
{},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First\n10.05\n0\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("MarshalCSV pointer", func(t *testing.T) {
type Item struct {
First *YesNoBool
}
yes := YesNoBool(true)
items := []Item{
{
&yes,
},
{},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First\nyes\nno\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("MarshalCSV non pointer", func(t *testing.T) {
type Item struct {
First YesNoBool
}
yes := YesNoBool(true)
no := YesNoBool(false)
items := []Item{
{yes},
{no},
}
data, err := csvplus.Marshal(&items)
if err != nil {
t.Fatal(err)
}
expectedData := []byte("First\nyes\nno\n")
if string(data) != string(expectedData) {
t.Errorf("expected: %s, got: %s", expectedData, data)
}
})
t.Run("string pointer fails", func(t *testing.T) {
a := "not a pointer to a slice"
_, err := csvplus.Marshal(&a)
if err == nil {
t.Error("expected error")
}
expectedPrefix := "expected slice"
if !strings.HasPrefix(err.Error(), expectedPrefix) {
t.Errorf("wrong error prefix, expected: '%s', got: %s", expectedPrefix, err.Error())
}
})
t.Run("slice value fails", func(t *testing.T) {
var items []string
_, err := csvplus.Marshal(items)
if err == nil {
t.Error("expected error")
}
expectedPrefix := "non pointer"
if !strings.HasPrefix(err.Error(), expectedPrefix) {
t.Errorf("wrong error prefix, expected: '%s', got: %s", expectedPrefix, err.Error())
}
})
}
func TestMarshalReader(t *testing.T) {
type Item struct {
First string
Second int
}
items := []Item{
{"a", 1},
{"b", 2},
}
var buf bytes.Buffer
err := csvplus.MarshalWriter(&items, &buf)
if err != nil {
t.Fatal(err)
}
expectedData := "First,Second\na,1\nb,2\n"
if expectedData != buf.String() {
t.Errorf("incorrect output, expected: %s, got: %s", expectedData, buf.String())
}
}
func TestMarshalWithoutHeader(t *testing.T) {
type Item struct {