-
Notifications
You must be signed in to change notification settings - Fork 4
/
table_command_test.go
221 lines (181 loc) · 7.23 KB
/
table_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
package migrator
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTableCommands(t *testing.T) {
t.Run("it returns empty on empty commands list", func(t *testing.T) {
c := TableCommands{}
assert.Equal(t, "", c.toSQL())
})
t.Run("it renders row from one command", func(t *testing.T) {
c := TableCommands{testCommand("test")}
assert.Equal(t, "Do action on test", c.toSQL())
})
t.Run("it renders row from multiple commands", func(t *testing.T) {
c := TableCommands{testCommand("test"), testCommand("bang")}
assert.Equal(t, "Do action on test, Do action on bang", c.toSQL())
})
}
func TestAddColumnCommand(t *testing.T) {
t.Run("it returns an empty string if column definition missing", func(t *testing.T) {
c := AddColumnCommand{Name: "tests"}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column name missing", func(t *testing.T) {
c := AddColumnCommand{Column: testColumnType("test")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column definition empty", func(t *testing.T) {
c := AddColumnCommand{Name: "tests", Column: testColumnType("")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns base row", func(t *testing.T) {
c := AddColumnCommand{Name: "test_id", Column: testColumnType("definition")}
assert.Equal(t, "ADD COLUMN `test_id` definition", c.toSQL())
})
t.Run("it returns row with after column", func(t *testing.T) {
c := AddColumnCommand{Name: "test_id", Column: testColumnType("definition"), After: "id"}
assert.Equal(t, "ADD COLUMN `test_id` definition AFTER id", c.toSQL())
})
t.Run("it returns row with first flag", func(t *testing.T) {
c := AddColumnCommand{Name: "test_id", Column: testColumnType("definition"), First: true}
assert.Equal(t, "ADD COLUMN `test_id` definition FIRST", c.toSQL())
})
}
func TestRenameColumnCommand(t *testing.T) {
t.Run("it returns an empty string if old name missing", func(t *testing.T) {
c := RenameColumnCommand{New: "test"}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if new name missing", func(t *testing.T) {
c := RenameColumnCommand{Old: "test"}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := RenameColumnCommand{Old: "from", New: "to"}
assert.Equal(t, "RENAME COLUMN `from` TO `to`", c.toSQL())
})
}
func TestModifyColumnCommand(t *testing.T) {
t.Run("it returns an empty string if column definition missing", func(t *testing.T) {
c := ModifyColumnCommand{Name: "tests"}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column name missing", func(t *testing.T) {
c := ModifyColumnCommand{Column: testColumnType("test")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column definition empty", func(t *testing.T) {
c := ModifyColumnCommand{Name: "tests", Column: testColumnType("")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := ModifyColumnCommand{Name: "test_id", Column: testColumnType("definition")}
assert.Equal(t, "MODIFY `test_id` definition", c.toSQL())
})
}
func TestChangeColumnCommand(t *testing.T) {
t.Run("it returns an empty string if column definition missing", func(t *testing.T) {
c := ChangeColumnCommand{From: "tests", To: "something"}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column from name missing", func(t *testing.T) {
c := ChangeColumnCommand{To: "something", Column: testColumnType("test")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column to name missing", func(t *testing.T) {
c := ChangeColumnCommand{From: "tests", Column: testColumnType("test")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if column definition empty", func(t *testing.T) {
c := ChangeColumnCommand{From: "tests", To: "something", Column: testColumnType("")}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := ChangeColumnCommand{From: "tests", To: "something", Column: testColumnType("definition")}
assert.Equal(t, "CHANGE `tests` `something` definition", c.toSQL())
})
}
func TestDropColumnCommand(t *testing.T) {
t.Run("it returns an empty string if column name missing", func(t *testing.T) {
c := DropColumnCommand("")
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := DropColumnCommand("test_id")
assert.Equal(t, "DROP COLUMN `test_id`", c.toSQL())
})
}
func TestAddIndexCommand(t *testing.T) {
t.Run("it returns an empty string if index name missing", func(t *testing.T) {
c := AddIndexCommand{Columns: []string{"test"}}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if columns list empty", func(t *testing.T) {
c := AddIndexCommand{Name: "test", Columns: []string{}}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := AddIndexCommand{Name: "test_idx", Columns: []string{"test"}}
assert.Equal(t, "ADD KEY `test_idx` (`test`)", c.toSQL())
})
}
func TestDropIndexCommand(t *testing.T) {
t.Run("it returns an empty string if index name missing", func(t *testing.T) {
c := DropIndexCommand("")
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := DropIndexCommand("test_idx")
assert.Equal(t, "DROP KEY `test_idx`", c.toSQL())
})
}
func TestAddForeignCommand(t *testing.T) {
t.Run("it returns an empty string on missing foreign key", func(t *testing.T) {
c := AddForeignCommand{}
assert.Equal(t, "", c.toSQL())
})
t.Run("it builds a proper row", func(t *testing.T) {
c := AddForeignCommand{Foreign{Key: "idx_foreign", Column: "test_id", Reference: "id", On: "tests"}}
assert.Equal(t, "ADD CONSTRAINT `idx_foreign` FOREIGN KEY (`test_id`) REFERENCES `tests` (`id`)", c.toSQL())
})
}
func TestDropForeignCommand(t *testing.T) {
t.Run("it returns an empty string if index name missing", func(t *testing.T) {
c := DropForeignCommand("")
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := DropForeignCommand("test_idx")
assert.Equal(t, "DROP FOREIGN KEY `test_idx`", c.toSQL())
})
}
func TestAddUniqueIndexCommand(t *testing.T) {
t.Run("it returns an empty string if index name missing", func(t *testing.T) {
c := AddUniqueIndexCommand{Columns: []string{"test"}}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns an empty string if columns list empty", func(t *testing.T) {
c := AddUniqueIndexCommand{Key: "test", Columns: []string{}}
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := AddUniqueIndexCommand{Key: "test_idx", Columns: []string{"test"}}
assert.Equal(t, "ADD UNIQUE KEY `test_idx` (`test`)", c.toSQL())
})
}
func TestAddPrimaryIndexCommand(t *testing.T) {
t.Run("it returns an empty string if index name missing", func(t *testing.T) {
c := AddPrimaryIndexCommand("")
assert.Equal(t, "", c.toSQL())
})
t.Run("it returns a proper row", func(t *testing.T) {
c := AddPrimaryIndexCommand("test_idx")
assert.Equal(t, "ADD PRIMARY KEY (`test_idx`)", c.toSQL())
})
}
func TestDropPrimaryIndexCommand(t *testing.T) {
c := DropPrimaryIndexCommand{}
assert.Equal(t, "DROP PRIMARY KEY", c.toSQL())
}