forked from gocarina/gocsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_structs_test.go
190 lines (155 loc) · 3.77 KB
/
sample_structs_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
package gocsv
import (
"fmt"
"time"
)
type Sample struct {
Foo string `csv:"foo"`
Bar int `csv:"BAR"`
Baz string `csv:"Baz"`
Frop float64 `csv:"Quux"`
Blah *int `csv:"Blah"`
SPtr *string `csv:"SPtr"`
Omit *string `csv:"Omit,omitempty"`
}
type SliceSample struct {
Slice []int `csv:"Slice"`
}
type SliceStructSample struct {
Slice []SliceStruct `csv:"s,slice" csv[]:"2"`
Slice2 []SliceStruct `csv:"sliceText"`
SimpleSlice []int `csv:"ints" csv[]:"3"`
Array [2]SliceStruct `csv:"a,array" csv[]:"2"`
}
type SliceStruct struct {
String string `csv:"s,string"`
Float float64 `csv:"f,float"`
}
type EmbedSample struct {
Qux string `csv:"first"`
Sample
Ignore string `csv:"-"`
Grault float64 `csv:"garply"`
Quux string `csv:"last"`
}
type MarshalSample struct {
Dummy string
}
func (m MarshalSample) MarshalText() ([]byte, error) {
return []byte(m.Dummy), nil
}
func (m *MarshalSample) UnmarshalText(text []byte) error {
m.Dummy = string(text)
return nil
}
type EmbedMarshal struct {
Foo *MarshalSample `csv:"foo"`
}
type MarshalCSVSample struct {
Seconds int64
Nanos int32
}
func (timestamp *MarshalCSVSample) MarshalCSV() (string, error) {
if timestamp == nil {
return "", nil
}
return fmt.Sprintf("%d.%09d", timestamp.Seconds, timestamp.Nanos), nil
}
type EmbedMarshalCSV struct {
Symbol string `csv:"symbol"`
Timestamp *MarshalCSVSample `csv:"timestamp"`
}
type UnmarshalCSVSample struct {
Timestamp int64
Nanos int32
}
func (timestamp *UnmarshalCSVSample) UnmarshalCSV(s string) error {
ret := UnmarshalCSVSample{}
_, err := fmt.Sscanf(s, "%d.%09d", &ret.Timestamp, &ret.Nanos)
*timestamp = ret
return err
}
type EmbedUnmarshalCSVWithClashingField struct {
Symbol string
// Clashes on purpose with UnmarshalCSVSample's Timestamp field. Since
// *UnmarshalCSVSample implements UnmarshalCSV(), that method call should
// take precedence.
Timestamp *UnmarshalCSVSample
}
type EmbedPtrSample struct {
Qux string `csv:"first"`
*Sample
Ignore string `csv:"-"`
Grault float64 `csv:"garply"`
Quux string `csv:"last"`
}
type SkipFieldSample struct {
EmbedSample
MoreIgnore string `csv:"-"`
Corge string `csv:"abc"`
}
// Testtype for unmarshal/marshal functions on renamed basic types
type RenamedFloat64Unmarshaler float64
type RenamedFloat64Default float64
type RenamedSample struct {
RenamedFloatUnmarshaler RenamedFloat64Unmarshaler `csv:"foo"`
RenamedFloatDefault RenamedFloat64Default `csv:"bar"`
}
type MultiTagSample struct {
Foo string `csv:"Baz,foo"`
Bar int `csv:"BAR"`
}
type TagSeparatorSample struct {
Foo string `csv:"Baz|foo"`
Bar int `csv:"BAR"`
}
type CustomTagSample struct {
Foo string `custom:"foo"`
Bar string `csv:"BAR"`
}
type DateTime struct {
Foo time.Time `csv:"Foo"`
}
type Level0Struct struct {
Level0Field level1Struct
}
type level1Struct struct {
Level1Field level2Struct
}
type level2Struct struct {
InnerStruct
}
type InnerStruct struct {
BoolIgnoreField0 bool `csv:"-"`
BoolField1 bool `csv:"boolField1"`
StringField2 string `csv:"stringField2"`
}
type InnerStruct3 struct {
Bar string
Foo time.Time
}
type InnerStruct2 struct {
Bar string
Inner3 InnerStruct3
}
type SameNameStruct struct {
Inner2 *InnerStruct2
Inner3 InnerStruct3
Foo time.Time
}
var _ TypeUnmarshalCSVWithFields = (*UnmarshalCSVWithFieldsSample)(nil)
type UnmarshalCSVWithFieldsSample struct {
Foo string `csv:"foo"`
Bar int `csv:"bar"`
Baz string `csv:"baz"`
Frop float64 `csv:"frop"`
}
type NestedSample struct {
Inner1 InnerStruct `csv:"one"`
Inner2 InnerStruct `csv:"two"`
InnerIgnore InnerStruct `csv:"-"`
Inner3 NestedEmbedSample `csv:"three"`
}
type NestedEmbedSample struct {
InnerStruct
}