forked from brianvoe/gofakeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csv.go
187 lines (158 loc) · 4.66 KB
/
csv.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
package gofakeit
import (
"bytes"
"encoding/csv"
"encoding/json"
"errors"
"fmt"
"math/rand"
"reflect"
"strings"
)
// CSVOptions defines values needed for csv generation
type CSVOptions struct {
Delimiter string `json:"delimiter" xml:"delimiter" fake:"{randomstring:[,,tab]}"`
RowCount int `json:"row_count" xml:"row_count" fake:"{number:1,10}"`
Fields []Field `json:"fields" xml:"fields" fake:"{internal_exampleFields}"`
}
// CSV generates an object or an array of objects in json format
// A nil CSVOptions returns a randomly structured CSV.
func CSV(co *CSVOptions) ([]byte, error) { return csvFunc(globalFaker, co) }
// CSV generates an object or an array of objects in json format
// A nil CSVOptions returns a randomly structured CSV.
func (f *Faker) CSV(co *CSVOptions) ([]byte, error) { return csvFunc(f, co) }
func csvFunc(f *Faker, co *CSVOptions) ([]byte, error) {
if co == nil {
// We didn't get a CSVOptions, so create a new random one
err := f.Struct(&co)
if err != nil {
return nil, err
}
}
// Check delimiter
if co.Delimiter == "" {
co.Delimiter = ","
}
if strings.ToLower(co.Delimiter) == "tab" {
co.Delimiter = "\t"
}
if co.Delimiter != "," && co.Delimiter != "\t" {
return nil, errors.New("invalid delimiter type")
}
// Check fields
if co.Fields == nil || len(co.Fields) <= 0 {
return nil, errors.New("must pass fields in order to build json object(s)")
}
// Make sure you set a row count
if co.RowCount <= 0 {
return nil, errors.New("must have row count")
}
b := &bytes.Buffer{}
w := csv.NewWriter(b)
w.Comma = []rune(co.Delimiter)[0]
// Add header row
header := make([]string, len(co.Fields))
for i, field := range co.Fields {
header[i] = field.Name
}
w.Write(header)
// Loop through row count +1(for header) and add fields
for i := 1; i < co.RowCount+1; i++ {
vr := make([]string, len(co.Fields))
// Loop through fields and add to them to map[string]interface{}
for ii, field := range co.Fields {
if field.Function == "autoincrement" {
vr[ii] = fmt.Sprintf("%d", i)
continue
}
// Get function info
funcInfo := GetFuncLookup(field.Function)
if funcInfo == nil {
return nil, errors.New("invalid function, " + field.Function + " does not exist")
}
value, err := funcInfo.Generate(f.Rand, &field.Params, funcInfo)
if err != nil {
return nil, err
}
if _, ok := value.([]byte); ok {
// If it's a slice of bytes or struct, unmarshal it into an interface
var v interface{}
if err := json.Unmarshal(value.([]byte), &v); err != nil {
return nil, err
}
value = v
}
// If the value is a list of possible values, marsha it into a string
if reflect.TypeOf(value).Kind() == reflect.Struct ||
reflect.TypeOf(value).Kind() == reflect.Ptr ||
reflect.TypeOf(value).Kind() == reflect.Map ||
reflect.TypeOf(value).Kind() == reflect.Slice {
b, err := json.Marshal(value)
if err != nil {
return nil, err
}
value = string(b)
}
vr[ii] = fmt.Sprintf("%v", value)
}
w.Write(vr)
}
w.Flush()
if err := w.Error(); err != nil {
return nil, err
}
return b.Bytes(), nil
}
func addFileCSVLookup() {
AddFuncLookup("csv", Info{
Display: "CSV",
Category: "file",
Description: "Generates array of rows in csv format",
Example: `
id,first_name,last_name,password
1,Markus,Moen,Dc0VYXjkWABx
2,Osborne,Hilll,XPJ9OVNbs5lm
`,
Output: "[]byte",
ContentType: "text/csv",
Params: []Param{
{Field: "rowcount", Display: "Row Count", Type: "int", Default: "100", Description: "Number of rows"},
{Field: "fields", Display: "Fields", Type: "[]Field", Description: "Fields containing key name and function"},
{Field: "delimiter", Display: "Delimiter", Type: "string", Default: ",", Description: "Separator in between row values"},
},
Generate: func(r *rand.Rand, m *MapParams, info *Info) (interface{}, error) {
co := CSVOptions{}
rowcount, err := info.GetInt(m, "rowcount")
if err != nil {
return nil, err
}
co.RowCount = rowcount
fieldsStr, err := info.GetStringArray(m, "fields")
if err != nil {
return nil, err
}
// Check to make sure fields has length
if len(fieldsStr) > 0 {
co.Fields = make([]Field, len(fieldsStr))
for i, f := range fieldsStr {
// Unmarshal fields string into fields array
err = json.Unmarshal([]byte(f), &co.Fields[i])
if err != nil {
return nil, err
}
}
}
delimiter, err := info.GetString(m, "delimiter")
if err != nil {
return nil, err
}
co.Delimiter = delimiter
f := &Faker{Rand: r}
csvOut, err := csvFunc(f, &co)
if err != nil {
return nil, err
}
return csvOut, nil
},
})
}