forked from brianvoe/gofakeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql_test.go
216 lines (175 loc) · 4.45 KB
/
sql_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
package gofakeit
import (
"fmt"
"math/rand"
"strings"
"testing"
)
func ExampleSQL() {
Seed(11)
res, _ := SQL(&SQLOptions{
Table: "people",
Count: 2,
Fields: []Field{
{Name: "id", Function: "autoincrement"},
{Name: "first_name", Function: "firstname"},
{Name: "price", Function: "price"},
{Name: "age", Function: "number", Params: MapParams{"min": {"1"}, "max": {"99"}}},
{Name: "created_at", Function: "date", Params: MapParams{"format": {"2006-01-02 15:04:05"}}},
},
})
fmt.Println(string(res))
// Output:
// INSERT INTO people (id, first_name, price, age, created_at) VALUES (1, 'Markus', 804.92, 21, '1937-01-30 07:58:01'),(2, 'Santino', 235.13, 40, '1964-07-07 22:25:40');
}
func ExampleFaker_SQL() {
f := New(11)
res, _ := f.SQL(&SQLOptions{
Table: "people",
Count: 2,
Fields: []Field{
{Name: "id", Function: "autoincrement"},
{Name: "first_name", Function: "firstname"},
{Name: "price", Function: "price"},
{Name: "age", Function: "number", Params: MapParams{"min": {"1"}, "max": {"99"}}},
{Name: "created_at", Function: "date", Params: MapParams{"format": {"2006-01-02 15:04:05"}}},
},
})
fmt.Println(string(res))
// Output:
// INSERT INTO people (id, first_name, price, age, created_at) VALUES (1, 'Markus', 804.92, 21, '2018-11-22 07:34:00'),(2, 'Anibal', 674.87, 60, '2004-01-03 11:07:53');
}
func TestSQLJSON(t *testing.T) {
Seed(11)
AddFuncLookup("jsonperson", Info{
Category: "custom",
Description: "random JSON of a person",
Example: `{"first_name":"Bob", "last_name":"Jones"}`,
Output: "[]byte",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (interface{}, error) {
v, _ := JSON(&JSONOptions{
Type: "object",
Fields: []Field{
{Name: "first_name", Function: "firstname"},
{Name: "last_name", Function: "lastname"},
},
})
return v, nil
},
})
defer RemoveFuncLookup("jsonperson")
res, err := SQL(&SQLOptions{
Table: "people",
Count: 2,
Fields: []Field{
{Name: "data", Function: "jsonperson"},
},
})
if err != nil {
t.Fatal(err)
}
if res != `INSERT INTO people (data) VALUES ('{"first_name":"Markus","last_name":"Moen"}'),('{"first_name":"Alayna","last_name":"Wuckert"}');` {
t.Error("SQL query does not match")
}
}
func TestSQLAll(t *testing.T) {
Seed(11)
res, err := SQL(&SQLOptions{
Table: "people",
Count: 3,
Fields: []Field{
{Name: "id", Function: "autoincrement"},
{Name: "first_name", Function: "firstname"},
{Name: "balance", Function: "float32"},
},
})
if err != nil {
t.Fatal(err)
}
// Split by VALUES
values := strings.Split(res, "VALUES")
// Check to make sure there are 3 ( and ) symbols
if strings.Count(values[1], "(") != 3 || strings.Count(values[1], ")") != 3 {
t.Error("SQL query does not have 3 values")
}
}
func TestSingleSQL(t *testing.T) {
Seed(11)
res, err := SQL(&SQLOptions{
Table: "People",
Count: 1,
Fields: []Field{
{Name: "first_name", Function: "firstname"},
{Name: "last_name", Function: "lastname"},
},
})
if err != nil {
t.Fatal(err)
}
// Split by VALUES
values := strings.Split(res, "VALUES")
// Check to make sure there are 3 ( and ) symbols
if strings.Count(values[1], "(") != 1 || strings.Count(values[1], ")") != 1 {
t.Error("SQL query should have 1 value")
}
}
func TestSQLNoCount(t *testing.T) {
Seed(11)
_, err := SQL(&SQLOptions{
Table: "People",
Fields: []Field{
{Name: "first_name", Function: "firstname"},
{Name: "last_name", Function: "lastname"},
},
})
if err == nil {
t.Fatal("should have failed for no count")
}
}
func TestSQLNoFields(t *testing.T) {
Seed(11)
_, err := SQL(&SQLOptions{
Table: "People",
Count: 1,
Fields: []Field{},
})
if err == nil {
t.Fatal("should have failed for no fields")
}
}
func TestSQLNilFields(t *testing.T) {
Seed(11)
_, err := SQL(&SQLOptions{
Table: "People",
Count: 1,
})
if err == nil {
t.Fatal("should have failed for nil fields")
}
}
func TestSQLInvalidFunction(t *testing.T) {
Seed(11)
_, err := SQL(&SQLOptions{
Table: "People",
Fields: []Field{
{Name: "thing", Function: "stuff"},
},
Count: 1,
})
if err == nil {
t.Fatal("should have failed for invalid function")
}
}
func TestSQLNilTable(t *testing.T) {
Seed(11)
_, err := SQL(&SQLOptions{
Count: 3,
Fields: []Field{
{Name: "first_name", Function: "firstname"},
{Name: "last_name", Function: "lastname"},
},
})
if err == nil {
t.Fatal("should have failed for no table")
}
}