-
Notifications
You must be signed in to change notification settings - Fork 4
/
column_test.go
601 lines (493 loc) · 16.2 KB
/
column_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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
package migrator
import (
"testing"
"github.com/stretchr/testify/assert"
)
type testColumnType string
func (c testColumnType) buildRow() string {
return string(c)
}
func TestColumnRender(t *testing.T) {
t.Run("it renders row from one column", func(t *testing.T) {
c := columns{column{"test", testColumnType("run")}}
assert.Equal(t, "`test` run", c.render())
})
t.Run("it renders row from multiple columns", func(t *testing.T) {
c := columns{
column{"test", testColumnType("run")},
column{"again", testColumnType("me")},
}
assert.Equal(t, "`test` run, `again` me", c.render())
})
}
func TestInteger(t *testing.T) {
t.Run("it builds basic column type", func(t *testing.T) {
c := Integer{}
assert.Equal(t, "int NOT NULL", c.buildRow())
})
t.Run("it build with prefix", func(t *testing.T) {
c := Integer{Prefix: "super"}
assert.Equal(t, "superint NOT NULL", c.buildRow())
})
t.Run("it builds with precision", func(t *testing.T) {
c := Integer{Precision: 20}
assert.Equal(t, "int(20) NOT NULL", c.buildRow())
})
t.Run("it builds unsigned", func(t *testing.T) {
c := Integer{Unsigned: true}
assert.Equal(t, "int unsigned NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Integer{Nullable: true}
assert.Equal(t, "int NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Integer{Default: "0"}
assert.Equal(t, "int NOT NULL DEFAULT 0", c.buildRow())
})
t.Run("it builds with autoincrement", func(t *testing.T) {
c := Integer{Autoincrement: true}
assert.Equal(t, "int NOT NULL AUTO_INCREMENT", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Integer{OnUpdate: "set null"}
assert.Equal(t, "int NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Integer{Comment: "test"}
assert.Equal(t, "int NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Integer{
Prefix: "big",
Precision: 10,
Unsigned: true,
Nullable: true,
Default: "100",
Autoincrement: true,
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"bigint(10) unsigned NULL DEFAULT 100 AUTO_INCREMENT ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestFloatable(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := Floatable{}
assert.Equal(t, "float NOT NULL", c.buildRow())
})
t.Run("it builds basic column type", func(t *testing.T) {
c := Floatable{Type: "real"}
assert.Equal(t, "real NOT NULL", c.buildRow())
})
t.Run("it builds with precision", func(t *testing.T) {
c := Floatable{Type: "double", Precision: 20}
assert.Equal(t, "double(20) NOT NULL", c.buildRow())
})
t.Run("it builds with precision and scale", func(t *testing.T) {
c := Floatable{Type: "decimal", Precision: 10, Scale: 2}
assert.Equal(t, "decimal(10,2) NOT NULL", c.buildRow())
})
t.Run("it builds unsigned", func(t *testing.T) {
c := Floatable{Unsigned: true}
assert.Equal(t, "float unsigned NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Floatable{Nullable: true}
assert.Equal(t, "float NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Floatable{Default: "0.0"}
assert.Equal(t, "float NOT NULL DEFAULT 0.0", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Floatable{OnUpdate: "set null"}
assert.Equal(t, "float NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Floatable{Comment: "test"}
assert.Equal(t, "float NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Floatable{
Type: "decimal",
Precision: 10,
Scale: 2,
Unsigned: true,
Nullable: true,
Default: "100.0",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"decimal(10,2) unsigned NULL DEFAULT 100.0 ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestTimeable(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := Timable{}
assert.Equal(t, "timestamp NOT NULL", c.buildRow())
})
t.Run("it builds basic column type", func(t *testing.T) {
c := Timable{Type: "datetime"}
assert.Equal(t, "datetime NOT NULL", c.buildRow())
})
t.Run("it does not set precision for invalid column type", func(t *testing.T) {
c := Timable{Type: "date", Precision: 3}
assert.Equal(t, "date NOT NULL", c.buildRow())
})
t.Run("it does not set zero precision", func(t *testing.T) {
c := Timable{Type: "timestamp", Precision: 0}
assert.Equal(t, "timestamp NOT NULL", c.buildRow())
})
t.Run("it does not set invalid precision", func(t *testing.T) {
c := Timable{Type: "timestamp", Precision: 7}
assert.Equal(t, "timestamp NOT NULL", c.buildRow())
})
t.Run("it builds with precision", func(t *testing.T) {
c := Timable{Type: "TIMESTAMP", Precision: 6}
assert.Equal(t, "TIMESTAMP(6) NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Timable{Nullable: true}
assert.Equal(t, "timestamp NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Timable{Default: "CURRENT_TIMESTAMP"}
assert.Equal(t, "timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Timable{OnUpdate: "set null"}
assert.Equal(t, "timestamp NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Timable{Comment: "test"}
assert.Equal(t, "timestamp NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Timable{
Type: "datetime",
Nullable: true,
Default: "CURRENT_TIMESTAMP",
OnUpdate: "CURRENT_TIMESTAMP",
Comment: "test",
}
assert.Equal(
t,
"datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'test'",
c.buildRow(),
)
})
}
func TestString(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := String{}
assert.Equal(t, "varchar COLLATE utf8mb4_unicode_ci NOT NULL", c.buildRow())
})
t.Run("it builds fixed", func(t *testing.T) {
c := String{Fixed: true}
assert.Equal(t, "char COLLATE utf8mb4_unicode_ci NOT NULL", c.buildRow())
})
t.Run("it builds with precision", func(t *testing.T) {
c := String{Precision: 255}
assert.Equal(t, "varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL", c.buildRow())
})
t.Run("it builds with charset", func(t *testing.T) {
c := String{Charset: "utf8"}
assert.Equal(t, "varchar CHARACTER SET utf8 NOT NULL", c.buildRow())
})
t.Run("it builds with collate", func(t *testing.T) {
c := String{Collate: "utf8mb4_general_ci"}
assert.Equal(t, "varchar COLLATE utf8mb4_general_ci NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := String{Nullable: true}
assert.Equal(t, "varchar COLLATE utf8mb4_unicode_ci NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := String{Default: "done"}
assert.Equal(t, "varchar COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'done'", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := String{OnUpdate: "set null"}
assert.Equal(t, "varchar COLLATE utf8mb4_unicode_ci NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := String{Comment: "test"}
assert.Equal(t, "varchar COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := String{
Fixed: true,
Precision: 36,
Nullable: true,
Charset: "utf8mb4",
Collate: "utf8mb4_general_ci",
Default: "nice",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'nice' ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestText(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := Text{}
assert.Equal(t, "text COLLATE utf8mb4_unicode_ci NOT NULL", c.buildRow())
})
t.Run("it builds with prefix", func(t *testing.T) {
c := Text{Prefix: "medium"}
assert.Equal(t, "mediumtext COLLATE utf8mb4_unicode_ci NOT NULL", c.buildRow())
})
t.Run("it builds blob", func(t *testing.T) {
c := Text{Blob: true}
assert.Equal(t, "blob NOT NULL", c.buildRow())
})
t.Run("it builds blob with prefix", func(t *testing.T) {
c := Text{Prefix: "tiny", Blob: true}
assert.Equal(t, "tinyblob NOT NULL", c.buildRow())
})
t.Run("it builds with charset", func(t *testing.T) {
c := Text{Charset: "utf8"}
assert.Equal(t, "text CHARACTER SET utf8 NOT NULL", c.buildRow())
})
t.Run("it builds with collate", func(t *testing.T) {
c := Text{Collate: "utf8mb4_general_ci"}
assert.Equal(t, "text COLLATE utf8mb4_general_ci NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Text{Nullable: true}
assert.Equal(t, "text COLLATE utf8mb4_unicode_ci NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Text{Default: "done"}
assert.Equal(t, "text COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'done'", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Text{OnUpdate: "set null"}
assert.Equal(t, "text COLLATE utf8mb4_unicode_ci NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Text{Comment: "test"}
assert.Equal(t, "text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Text{
Prefix: "long",
Blob: false,
Nullable: true,
Charset: "utf8mb4",
Collate: "utf8mb4_general_ci",
Default: "nice",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT 'nice' ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestJson(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := JSON{}
assert.Equal(t, "json NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := JSON{Nullable: true}
assert.Equal(t, "json NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := JSON{Default: "{}"}
assert.Equal(t, "json NOT NULL DEFAULT '{}'", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := JSON{OnUpdate: "set null"}
assert.Equal(t, "json NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := JSON{Comment: "test"}
assert.Equal(t, "json NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := JSON{
Nullable: true,
Default: "{}",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"json NULL DEFAULT '{}' ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestEnum(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := Enum{}
assert.Equal(t, "enum('') NOT NULL", c.buildRow())
})
t.Run("it builds with multiple flag", func(t *testing.T) {
c := Enum{Multiple: true}
assert.Equal(t, "set('') NOT NULL", c.buildRow())
})
t.Run("it builds with values", func(t *testing.T) {
c := Enum{Values: []string{"active", "inactive"}}
assert.Equal(t, "enum('active', 'inactive') NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Enum{Nullable: true}
assert.Equal(t, "enum('') NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Enum{Default: "valid"}
assert.Equal(t, "enum('') NOT NULL DEFAULT 'valid'", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Enum{OnUpdate: "set null"}
assert.Equal(t, "enum('') NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Enum{Comment: "test"}
assert.Equal(t, "enum('') NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Enum{
Multiple: true,
Values: []string{"male", "female", "other"},
Nullable: true,
Default: "male,female",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"set('male', 'female', 'other') NULL DEFAULT 'male,female' ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestBit(t *testing.T) {
t.Run("it builds basic column type", func(t *testing.T) {
c := Bit{}
assert.Equal(t, "bit NOT NULL", c.buildRow())
})
t.Run("it builds with precision", func(t *testing.T) {
c := Bit{Precision: 20}
assert.Equal(t, "bit(20) NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Bit{Nullable: true}
assert.Equal(t, "bit NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Bit{Default: "1"}
assert.Equal(t, "bit NOT NULL DEFAULT 1", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Bit{OnUpdate: "set null"}
assert.Equal(t, "bit NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Bit{Comment: "test"}
assert.Equal(t, "bit NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Bit{
Precision: 10,
Nullable: true,
Default: "0",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"bit(10) NULL DEFAULT 0 ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestBinary(t *testing.T) {
t.Run("it builds with default type", func(t *testing.T) {
c := Binary{}
assert.Equal(t, "varbinary NOT NULL", c.buildRow())
})
t.Run("it builds fixed", func(t *testing.T) {
c := Binary{Fixed: true}
assert.Equal(t, "binary NOT NULL", c.buildRow())
})
t.Run("it builds with precision", func(t *testing.T) {
c := Binary{Precision: 255}
assert.Equal(t, "varbinary(255) NOT NULL", c.buildRow())
})
t.Run("it builds nullable column type", func(t *testing.T) {
c := Binary{Nullable: true}
assert.Equal(t, "varbinary NULL", c.buildRow())
})
t.Run("it builds with default value", func(t *testing.T) {
c := Binary{Default: "1"}
assert.Equal(t, "varbinary NOT NULL DEFAULT 1", c.buildRow())
})
t.Run("it builds with on_update setter", func(t *testing.T) {
c := Binary{OnUpdate: "set null"}
assert.Equal(t, "varbinary NOT NULL ON UPDATE set null", c.buildRow())
})
t.Run("it builds with comment", func(t *testing.T) {
c := Binary{Comment: "test"}
assert.Equal(t, "varbinary NOT NULL COMMENT 'test'", c.buildRow())
})
t.Run("it builds string with all parameters", func(t *testing.T) {
c := Binary{
Fixed: true,
Precision: 36,
Nullable: true,
Default: "1",
OnUpdate: "set null",
Comment: "test",
}
assert.Equal(
t,
"binary(36) NULL DEFAULT 1 ON UPDATE set null COMMENT 'test'",
c.buildRow(),
)
})
}
func TestBuildDefaultForString(t *testing.T) {
t.Run("it returns an empty string if default value is missing", func(t *testing.T) {
got := buildDefaultForString("")
assert.Equal(t, "", got)
})
t.Run("it builds default with expression", func(t *testing.T) {
got := buildDefaultForString("(UUID())")
want := " DEFAULT (UUID())"
assert.Equal(t, want, got)
})
t.Run("it builds default with empty string for <empty> value", func(t *testing.T) {
got := buildDefaultForString("<empty>")
want := " DEFAULT ''"
assert.Equal(t, want, got)
})
t.Run("it builds default with empty string for <nil> value", func(t *testing.T) {
got := buildDefaultForString("<nil>")
want := " DEFAULT ''"
assert.Equal(t, want, got)
})
t.Run("it builds normal default", func(t *testing.T) {
got := buildDefaultForString("value")
want := " DEFAULT 'value'"
assert.Equal(t, want, got)
})
}