forked from Shelnutt2/db2struct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_test.go
423 lines (352 loc) · 11.9 KB
/
utils_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
package db2struct
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestLintFieldName(t *testing.T) {
name := lintFieldName("_")
Convey("Should get underscore as fieldName", t, func() {
So(name, ShouldEqual, "_")
})
name = lintFieldName("foo_id")
Convey("Should be able to convert field name", t, func() {
So(name, ShouldEqual, "FooID")
})
name = lintFieldName("foo__id")
Convey("Should be able to convert field name", t, func() {
So(name, ShouldEqual, "FooID")
})
name = lintFieldName("1__2")
Convey("Should be able to convert field name", t, func() {
So(name, ShouldEqual, "1_2")
})
name = lintFieldName("_id")
Convey("Should be able to convert field name", t, func() {
So(name, ShouldEqual, "ID")
})
name = lintFieldName("foo")
Convey("Should be able to convert field name", t, func() {
So(name, ShouldEqual, "Foo")
})
}
func TestMysqlStringGenerate(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
NullStringColumn sql.NullString
StringColumn string
}
`
columnMap := map[string]map[string]string{
"stringColumn": {"nullable": "NO", "value": "varchar"},
"nullStringColumn": {"nullable": "YES", "value": "varchar"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlBlobGenerate(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
BinaryColumn []byte
BlobColumn []byte
LongBlobColumn []byte
MediumBlobColumn []byte
NullBinaryColumn []byte
NullBlobColumn []byte
NullLongBlobColumn []byte
NullMediumBlobColumn []byte
NullVarbinaryColumn []byte
VarbinaryColumn []byte
}
`
columnMap := map[string]map[string]string{
"binaryColumn": {"nullable": "NO", "value": "binary"},
"nullBinaryColumn": {"nullable": "YES", "value": "binary"},
"blobColumn": {"nullable": "NO", "value": "blob"},
"nullBlobColumn": {"nullable": "YES", "value": "blob"},
"longBlobColumn": {"nullable": "NO", "value": "longblob"},
"nullLongBlobColumn": {"nullable": "YES", "value": "longblob"},
"mediumBlobColumn": {"nullable": "NO", "value": "mediumblob"},
"nullMediumBlobColumn": {"nullable": "YES", "value": "mediumblob"},
"varbinaryColumn": {"nullable": "NO", "value": "varbinary"},
"nullVarbinaryColumn": {"nullable": "YES", "value": "varbinary"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlDateGenerate(t *testing.T) {
columnMap := map[string]map[string]string{
"DateColumn": {"nullable": "NO", "value": "date"},
"nullDateColumn": {"nullable": "YES", "value": "date"},
"DateTimeColumn": {"nullable": "NO", "value": "datetime"},
"nullDateTimeColumn": {"nullable": "YES", "value": "datetime"},
"TimeColumn": {"nullable": "NO", "value": "time"},
"nullTimeColumn": {"nullable": "YES", "value": "time"},
"TimeStampColumn": {"nullable": "NO", "value": "timestamp"},
"nullTimeStampColumn": {"nullable": "YES", "value": "timestamp"},
}
expectedStruct :=
`package test
type testStruct struct {
DateColumn time.Time
DateTimeColumn time.Time
TimeColumn time.Time
TimeStampColumn time.Time
NullDateColumn time.Time
NullDateTimeColumn time.Time
NullTimeColumn time.Time
NullTimeStampColumn time.Time
}
`
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
expectedStruct =
`package test
type testStruct struct {
DateColumn time.Time
DateTimeColumn time.Time
TimeColumn time.Time
TimeStampColumn time.Time
NullDateColumn null.Time
NullDateTimeColumn null.Time
NullTimeColumn null.Time
NullTimeStampColumn null.Time
}
`
bytes, err = Generate(columnMap, "test_table", "testStruct", "test", false, false, true)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlFloatGenerate(t *testing.T) {
columnMap := map[string]map[string]string{
"floatColumn": {"nullable": "NO", "value": "float"},
"nullFloatColumn": {"nullable": "YES", "value": "float"},
"doubleColumn": {"nullable": "NO", "value": "double"},
"nullDoubleColumn": {"nullable": "YES", "value": "double"},
"decimalColumn": {"nullable": "NO", "value": "decimal"},
"nullDecimalColumn": {"nullable": "YES", "value": "decimal"},
}
expectedStruct :=
`package test
type testStruct struct {
DecimalColumn float64
DoubleColumn float64
FloatColumn float32
NullDecimalColumn sql.NullFloat64
NullDoubleColumn sql.NullFloat64
NullFloatColumn sql.NullFloat64
}
`
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
expectedStruct =
`package test
type testStruct struct {
DecimalColumn float64
DoubleColumn float64
FloatColumn float32
NullDecimalColumn null.Float
NullDoubleColumn null.Float
NullFloatColumn null.Float
}
`
bytes, err = Generate(columnMap, "test_table", "testStruct", "test", false, false, true)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlIntGenerate(t *testing.T) {
columnMap := map[string]map[string]string{
"intColumn": {"nullable": "NO", "value": "int"},
"nullIntColumn": {"nullable": "YES", "value": "int"},
"tinyIntColumn": {"nullable": "NO", "value": "tinyint"},
"nullTinyIntColumn": {"nullable": "YES", "value": "tinyint"},
"smallIntColumn": {"nullable": "NO", "value": "smallint"},
"nullSmallIntColumn": {"nullable": "YES", "value": "smallint"},
"mediumIntColumn": {"nullable": "NO", "value": "mediumint"},
"nullMediumIntColumn": {"nullable": "YES", "value": "mediumint"},
"bigIntColumn": {"nullable": "NO", "value": "bigint"},
"nullBigIntColumn": {"nullable": "YES", "value": "bigint"},
}
expectedStruct :=
`package test
type testStruct struct {
BigIntColumn int64
IntColumn int
MediumIntColumn int
NullBigIntColumn sql.NullInt64
NullIntColumn sql.NullInt64
NullMediumIntColumn sql.NullInt64
NullSmallIntColumn sql.NullInt64
NullTinyIntColumn sql.NullInt64
SmallIntColumn int
TinyIntColumn int
}
`
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
expectedStruct =
`package test
type testStruct struct {
BigIntColumn int64
IntColumn int
MediumIntColumn int
NullBigIntColumn null.Int
NullIntColumn null.Int
NullMediumIntColumn null.Int
NullSmallIntColumn null.Int
NullTinyIntColumn null.Int
SmallIntColumn int
TinyIntColumn int
}
`
bytes, err = Generate(columnMap, "test_table", "testStruct", "test", false, false, true)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlJSONStringGenerate(t *testing.T) {
columnMap := map[string]map[string]string{
"stringColumn": {"nullable": "NO", "value": "varchar"},
"nullStringColumn": {"nullable": "YES", "value": "varchar"},
}
expectedStruct :=
`package test
type testStruct struct {
NullStringColumn sql.NullString ` + "`json:\"nullStringColumn\"`" + `
StringColumn string ` + "`json:\"stringColumn\"`" + `
}
`
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", true, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlGormStringGenerate(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
NullStringColumn sql.NullString ` + "`gorm:\"column:nullStringColumn\"`" + `
StringColumn string ` + "`gorm:\"column:stringColumn\"`" + `
}
// TableName sets the insert table name for this struct type
func (t *testStruct) TableName() string {
return "test_table"
}
`
columnMap := map[string]map[string]string{
"stringColumn": {"nullable": "NO", "value": "varchar"},
"nullStringColumn": {"nullable": "YES", "value": "varchar"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, true, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlStringWithIntGenerate(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
OneStringColumn string
}
`
columnMap := map[string]map[string]string{
"1stringColumn": {"nullable": "NO", "value": "varchar"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlStringWithUnderscoresGenerate(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
StringColumn string
}
`
columnMap := map[string]map[string]string{
"string_Column": {"nullable": "NO", "value": "varchar"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
func TestMysqlStringWithCommonInitialismGenerate(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
API string
}
`
columnMap := map[string]map[string]string{
"API": {"nullable": "NO", "value": "varchar"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, false)
Convey("Should be able to generate map from string column", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}
// TestMysqlTypeToGureguType generates the struct and outputs nullable columns as guregu null types
func TestMysqlTypeToGureguType(t *testing.T) {
expectedStruct :=
`package test
type testStruct struct {
BigInt int64
Date null.Time
DateTime null.Time
Decimal null.Float
Double float64
Float null.Float
Int null.Int
Time time.Time
TimeStamp null.Time
TinyInt int
VarChar null.String
}
`
columnMap := map[string]map[string]string{
"VarChar": {"nullable": "YES", "value": "varchar"},
"TinyInt": {"nullable": "NO", "value": "tinyint"},
"Int": {"nullable": "YES", "value": "int"},
"BigInt": {"nullable": "NO", "value": "bigint"},
"Decimal": {"nullable": "YES", "value": "decimal"},
"Float": {"nullable": "YES", "value": "float"},
"Double": {"nullable": "NO", "value": "double"},
"DateTime": {"nullable": "YES", "value": "datetime"},
"Time": {"nullable": "NO", "value": "time"},
"Date": {"nullable": "YES", "value": "date"},
"TimeStamp": {"nullable": "YES", "value": "timestamp"},
}
bytes, err := Generate(columnMap, "test_table", "testStruct", "test", false, false, true)
Convey("Should be able to generate map for guregu types", t, func() {
So(err, ShouldBeNil)
So(string(bytes), ShouldEqual, expectedStruct)
})
}