-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathschema_command_test.go
232 lines (194 loc) · 6.39 KB
/
schema_command_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
package migrator
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
type testCommand string
func (c testCommand) toSQL() string {
return "Do action on " + string(c)
}
func TestCreateTableCommand(t *testing.T) {
t.Run("it returns empty string when table name missing", func(t *testing.T) {
tb := Table{}
c := createTableCommand{tb}
assert.Equal(t, "", c.toSQL())
})
t.Run("it renders default table", func(t *testing.T) {
tb := Table{Name: "test"}
c := createTableCommand{tb}
assert.Equal(
t,
"CREATE TABLE `test` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci",
c.toSQL(),
)
})
t.Run("it renders columns", func(t *testing.T) {
tb := Table{
Name: "test",
columns: []column{
{"test", testColumnType("random thing")},
{"random", testColumnType("another thing")},
},
}
c := createTableCommand{tb}
assert.Equal(
t,
"CREATE TABLE `test` (`test` random thing, `random` another thing) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci",
c.toSQL(),
)
})
t.Run("it renders indexes", func(t *testing.T) {
tb := Table{
Name: "test",
indexes: []Key{
{Name: "idx_rand", Columns: []string{"id"}},
{Columns: []string{"id", "name"}},
},
}
c := createTableCommand{tb}
assert.Equal(
t,
strings.Join([]string{
"CREATE TABLE `test` (",
"`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, ",
"KEY `idx_rand` (`id`), KEY (`id`, `name`)",
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci",
}, ""),
c.toSQL(),
)
})
t.Run("it renders foreigns", func(t *testing.T) {
tb := Table{
Name: "test",
foreigns: []Foreign{
{Key: "idx_foreign", Column: "test_id", Reference: "id", On: "tests"},
{Key: "foreign_idx", Column: "random_id", Reference: "id", On: "randoms"},
},
}
c := createTableCommand{tb}
assert.Equal(
t,
strings.Join([]string{
"CREATE TABLE `test` (",
"`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, ",
"CONSTRAINT `idx_foreign` FOREIGN KEY (`test_id`) REFERENCES `tests` (`id`), ",
"CONSTRAINT `foreign_idx` FOREIGN KEY (`random_id`) REFERENCES `randoms` (`id`)",
") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci",
}, ""),
c.toSQL(),
)
})
t.Run("it renders engine", func(t *testing.T) {
tb := Table{Name: "test", Engine: "MyISAM"}
c := createTableCommand{tb}
assert.Equal(
t,
"CREATE TABLE `test` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci",
c.toSQL(),
)
})
t.Run("it renders charset and collation", func(t *testing.T) {
tb := Table{Name: "test", Charset: "rand", Collation: "random_io"}
c := createTableCommand{tb}
assert.Equal(
t,
"CREATE TABLE `test` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT) ENGINE=InnoDB DEFAULT CHARSET=rand COLLATE=random_io",
c.toSQL(),
)
})
t.Run("it renders charset and manually add collation", func(t *testing.T) {
tb := Table{Name: "test", Charset: "utf8"}
c := createTableCommand{tb}
assert.Equal(
t,
"CREATE TABLE `test` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci",
c.toSQL(),
)
})
t.Run("it renders collation and manually add charset", func(t *testing.T) {
tb := Table{Name: "test", Collation: "utf8_general_ci"}
c := createTableCommand{tb}
assert.Equal(
t,
"CREATE TABLE `test` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci",
c.toSQL(),
)
})
t.Run("it renders all together", func(t *testing.T) {
tb := Table{
Name: "test",
columns: []column{
{"test", testColumnType("random thing")},
{"random", testColumnType("another thing")},
},
indexes: []Key{
{Name: "idx_rand", Columns: []string{"id"}},
{Columns: []string{"id", "name"}},
},
foreigns: []Foreign{
{Key: "idx_foreign", Column: "test_id", Reference: "id", On: "tests"},
{Key: "foreign_idx", Column: "random_id", Reference: "id", On: "randoms"},
},
Engine: "MyISAM",
Charset: "rand",
Collation: "random_io",
}
c := createTableCommand{tb}
assert.Equal(
t,
strings.Join([]string{
"CREATE TABLE `test` (",
"`test` random thing, `random` another thing, ",
"KEY `idx_rand` (`id`), KEY (`id`, `name`), ",
"CONSTRAINT `idx_foreign` FOREIGN KEY (`test_id`) REFERENCES `tests` (`id`), ",
"CONSTRAINT `foreign_idx` FOREIGN KEY (`random_id`) REFERENCES `randoms` (`id`)",
") ENGINE=MyISAM DEFAULT CHARSET=rand COLLATE=random_io",
}, ""),
c.toSQL(),
)
})
}
func TestDropTableCommand(t *testing.T) {
t.Run("it drops table", func(t *testing.T) {
c := dropTableCommand{"test", false, ""}
assert.Equal(t, "DROP TABLE `test`", c.toSQL())
})
t.Run("it drops table if exists", func(t *testing.T) {
c := dropTableCommand{"test", true, ""}
assert.Equal(t, "DROP TABLE IF EXISTS `test`", c.toSQL())
})
t.Run("it drops table with cascade flag", func(t *testing.T) {
c := dropTableCommand{"test", false, "cascade"}
assert.Equal(t, "DROP TABLE `test` CASCADE", c.toSQL())
})
t.Run("it drops table if exists with restrict flag", func(t *testing.T) {
c := dropTableCommand{"test", true, "restrict"}
assert.Equal(t, "DROP TABLE IF EXISTS `test` RESTRICT", c.toSQL())
})
}
func TestRenameTableCommand(t *testing.T) {
c := renameTableCommand{"from", "to"}
assert.Equal(t, "RENAME TABLE `from` TO `to`", c.toSQL())
}
func TestAlterTableCommand(t *testing.T) {
t.Run("it returns an empty command if table name is missing", func(t *testing.T) {
c := alterTableCommand{pool: TableCommands{testCommand("test")}}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty command if pool is empty", func(t *testing.T) {
c := alterTableCommand{name: "test"}
assert.Equal(t, "", c.toSQL())
})
t.Run("it renders command with one alter sub-command", func(t *testing.T) {
c := alterTableCommand{name: "test", pool: TableCommands{testCommand("test")}}
assert.Equal(t, "ALTER TABLE `test` Do action on test", c.toSQL())
})
t.Run("it renders command with multiple alter sub-command", func(t *testing.T) {
c := alterTableCommand{
name: "test",
pool: TableCommands{testCommand("test"), testCommand("bang")},
}
assert.Equal(t, "ALTER TABLE `test` Do action on test, Do action on bang", c.toSQL())
})
}