forked from gocarina/gocsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_unmarshaller_test.go
80 lines (65 loc) · 1.43 KB
/
custom_unmarshaller_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
package gocsv
import (
"encoding/csv"
"strings"
"testing"
)
type CSVDate struct {
Date string
}
func (self *CSVDate) UnmarshalCSV(text string) error {
if self == nil {
self = &CSVDate{}
}
self.Date = text
return nil
}
func Test_CSV_Base(t *testing.T) {
t.Parallel()
type row struct {
ID string `csv:"id"`
Date *CSVDate `csv:"date"`
}
exampleCSV := `id,date
1,foo
2,bar
`
var rows []row
r := csv.NewReader(strings.NewReader(exampleCSV))
err := UnmarshalCSV(r, &rows)
if err != nil {
t.Fatal(err.Error())
}
if rows[0].Date.Date != "foo" {
t.Fatalf("Expected %q, but got %q", "foo", string(rows[0].Date.Date))
}
}
////////////////////////////////////////////////////////////
type FieldWithCustomMarshaller struct {
value string
}
func (f *FieldWithCustomMarshaller) UnmarshalCSV(csv string) (err error) {
f.value = csv
return err
}
type FieldWithCustomMarshallerPointed struct {
otherValue string
}
func (f *FieldWithCustomMarshallerPointed) UnmarshalCSV(csv string) (err error) {
f.otherValue = csv
return err
}
type TestStruct struct {
OkValue string
FieldWithCustomMarshaller FieldWithCustomMarshaller
FieldWithCustomMarshallerPointed *FieldWithCustomMarshallerPointed
}
func TestPanic(t *testing.T) {
line := "make,backups,test it"
r := strings.NewReader(line)
var DataValues []TestStruct
err := UnmarshalWithoutHeaders(r, &DataValues)
if err != nil {
t.Fatal(err)
}
}