-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmigrator_test.go
373 lines (321 loc) · 10.2 KB
/
migrator_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
package oracle
import (
"encoding/json"
"reflect"
"testing"
"time"
"gorm.io/gorm"
)
func TestMigrator_AutoMigrate(t *testing.T) {
db, err := dbNamingCase, dbErrors[0]
if err != nil {
t.Fatal(err)
}
if db == nil {
t.Log("db is nil!")
return
}
type args struct {
drop bool
models []interface{}
comments []string
}
tests := []struct {
name string
args args
wantErr bool
}{
{name: "TestTableUser", args: args{models: []interface{}{TestTableUser{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUserDrop", args: args{drop: true, models: []interface{}{TestTableUser{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUserNoComments", args: args{drop: true, models: []interface{}{TestTableUserNoComments{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUserAddColumn", args: args{models: []interface{}{TestTableUserAddColumn{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUserMigrateColumn", args: args{models: []interface{}{TestTableUserMigrateColumn{}}, comments: []string{"用户信息表"}}},
}
for idx, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if len(tt.args.models) == 0 {
t.Fatal("models is nil")
}
migrator := db.Set("gorm:table_comments", tt.args.comments).Migrator()
if tt.args.drop {
for _, model := range tt.args.models {
if !migrator.HasTable(model) {
continue
}
if err = migrator.DropTable(model); err != nil {
t.Fatalf("DropTable() error = %v", err)
}
}
}
if err = migrator.AutoMigrate(tt.args.models...); (err != nil) != tt.wantErr {
t.Errorf("AutoMigrate() error = %v, wantErr %v", err, tt.wantErr)
} else if err == nil {
t.Log("AutoMigrate() success!")
}
if idx == len(tests)-1 {
wantUser := TestTableUserMigrateColumn{
TestTableUser: TestTableUser{
UID: "U0",
Name: "someone",
Account: "guest",
Password: "MAkOvrJ8JV",
Email: "",
PhoneNumber: "+8618888888888",
Sex: "1",
UserType: 1,
Enabled: true,
Remark: "Ahmad",
},
AddNewColumn: "AddNewColumnValue",
CommentSingleQuote: "CommentSingleQuoteValue",
}
result := db.Create(&wantUser)
if err = result.Error; err != nil {
t.Fatal(err)
}
var gotUser TestTableUserMigrateColumn
result.Where(&TestTableUser{UID: "U0"}).Find(&gotUser)
if err = result.Error; err != nil {
t.Fatal(err)
}
gotUserBytes, _ := json.Marshal(gotUser)
t.Logf("gotUser Result: %s", gotUserBytes)
if !reflect.DeepEqual(gotUser, wantUser) {
wantUserBytes, _ := json.Marshal(wantUser)
t.Errorf("wantUser Info: %s", wantUserBytes)
}
}
})
}
}
// TestTableUser 测试用户信息表模型
type TestTableUser struct {
ID uint64 `gorm:"column:id;size:64;not null;autoIncrement:true;autoIncrementIncrement:1;primaryKey;comment:自增 ID" json:"id"`
UID string `gorm:"column:uid;type:varchar(50);comment:用户身份标识" json:"uid"`
Name string `gorm:"column:name;size:50;comment:用户姓名" json:"name"`
Account string `gorm:"column:account;type:varchar(50);comment:登录账号" json:"account"`
Password string `gorm:"column:password;type:varchar(512);comment:登录密码(密文)" json:"password"`
Email string `gorm:"column:email;type:varchar(128);comment:邮箱地址" json:"email"`
PhoneNumber string `gorm:"column:phone_number;type:varchar(15);comment:E.164" json:"phoneNumber"`
Sex string `gorm:"column:sex;type:char(1);comment:性别" json:"sex"`
Birthday *time.Time `gorm:"column:birthday;->:false;<-:create;comment:生日" json:"birthday,omitempty"`
UserType int `gorm:"column:user_type;size:8;comment:用户类型" json:"userType"`
Enabled bool `gorm:"column:enabled;comment:是否可用" json:"enabled"`
Remark string `gorm:"column:remark;size:1024;comment:备注信息" json:"remark"`
}
func (TestTableUser) TableName() string {
return "test_user"
}
type TestTableUserNoComments struct {
ID uint64 `gorm:"column:id;size:64;not null;autoIncrement:true;autoIncrementIncrement:1;primaryKey" json:"id"`
UID string `gorm:"column:name;type:varchar(50)" json:"uid"`
Name string `gorm:"column:name;size:50" json:"name"`
Account string `gorm:"column:account;type:varchar(50)" json:"account"`
Password string `gorm:"column:password;type:varchar(512)" json:"password"`
Email string `gorm:"column:email;type:varchar(128)" json:"email"`
PhoneNumber string `gorm:"column:phone_number;type:varchar(15)" json:"phoneNumber"`
Sex string `gorm:"column:sex;type:char(1)" json:"sex"`
Birthday time.Time `gorm:"column:birthday" json:"birthday"`
UserType int `gorm:"column:user_type;size:8" json:"userType"`
Enabled bool `gorm:"column:enabled" json:"enabled"`
Remark string `gorm:"column:remark;size:1024" json:"remark"`
}
func (TestTableUserNoComments) TableName() string {
return "test_user"
}
type TestTableUserAddColumn struct {
TestTableUser
AddNewColumn string `gorm:"column:add_new_column;type:varchar(100);comment:添加新字段"`
}
func (TestTableUserAddColumn) TableName() string {
return "test_user"
}
type TestTableUserMigrateColumn struct {
TestTableUser
AddNewColumn string `gorm:"column:add_new_column;type:varchar(100);comment:测试添加新字段"`
CommentSingleQuote string `gorm:"column:comment_single_quote;comment:注释中存在单引号'[']'"`
}
func (TestTableUserMigrateColumn) TableName() string {
return "test_user"
}
type testTableColumnTypeModel struct {
ID int64 `gorm:"column:id;size:64;not null;autoIncrement:true;autoIncrementIncrement:1;primaryKey"`
Name string `gorm:"column:name;size:50"`
Age uint8 `gorm:"column:age;size:8"`
Avatar []byte `gorm:"column:avatar;"`
Balance float64 `gorm:"column:balance;type:decimal(18, 2)"`
Remark string `gorm:"column:remark;size:-1"`
Enabled bool `gorm:"column:enabled;"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt
}
func (t testTableColumnTypeModel) TableName() string {
return "test_table_column_type"
}
func TestMigrator_TableColumnType(t *testing.T) {
db, err := dbNamingCase, dbErrors[0]
if err != nil {
t.Fatal(err)
}
if db == nil {
t.Log("db is nil!")
return
}
testModel := new(testTableColumnTypeModel)
type args struct {
model interface{}
drop bool
}
tests := []struct {
name string
args args
}{
{name: "create", args: args{model: testModel}},
{name: "alter", args: args{model: testModel, drop: true}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err = db.AutoMigrate(tt.args.model); err != nil {
t.Errorf("AutoMigrate failed:%v", err)
}
if tt.args.drop {
_ = db.Migrator().DropTable(tt.args.model)
}
})
}
}
type testFieldNameIsReservedWord struct {
ID int64 `gorm:"column:id;size:64;not null;autoIncrement:true;autoIncrementIncrement:1;primaryKey"`
FLOAT float64 `gorm:"type:decimal(18, 2)"`
DESC string `gorm:"size:-1"`
ON bool
Order int
Sort int
CREATE time.Time
UPDATE time.Time
DELETE gorm.DeletedAt
}
func (t testFieldNameIsReservedWord) TableName() string {
return "test_name_is_reserved_word"
}
func TestMigrator_FieldNameIsReservedWord(t *testing.T) {
if err := dbErrors[0]; err != nil {
t.Fatal(err)
}
if dbNamingCase == nil {
t.Log("dbNamingCase is nil!")
return
}
if err := dbErrors[1]; err != nil {
t.Fatal(err)
}
if dbIgnoreCase == nil {
t.Log("dbNamingCase is nil!")
return
}
testModel := new(testFieldNameIsReservedWord)
_ = dbNamingCase.Migrator().DropTable(testModel)
_ = dbIgnoreCase.Migrator().DropTable(testModel)
type args struct {
db *gorm.DB
model interface{}
drop bool
}
tests := []struct {
name string
args args
}{
{name: "createNamingCase", args: args{db: dbNamingCase, model: testModel}},
{name: "alterNamingCase", args: args{db: dbNamingCase, model: testModel, drop: true}},
{name: "createIgnoreCase", args: args{db: dbIgnoreCase, model: testModel}},
{name: "alterIgnoreCase", args: args{db: dbIgnoreCase, model: testModel, drop: true}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
db := tt.args.db
if err := db.AutoMigrate(tt.args.model); err != nil {
t.Errorf("AutoMigrate failed:%v", err)
}
if tt.args.drop {
_ = db.Migrator().DropTable(tt.args.model)
}
})
}
}
func TestMigrator_DatatypesJsonMapNamingCase(t *testing.T) {
if err := dbErrors[0]; err != nil {
t.Fatal(err)
}
if dbNamingCase == nil {
t.Log("dbNamingCase is nil!")
return
}
type testJsonMapNamingCase struct {
gorm.Model
Extras JSONMap `gorm:"check:\"extras\" IS JSON"`
}
testModel := new(testJsonMapNamingCase)
_ = dbNamingCase.Migrator().DropTable(testModel)
type args struct {
db *gorm.DB
model interface{}
drop bool
}
tests := []struct {
name string
args args
}{
{name: "createDatatypesJsonMapNamingCase", args: args{db: dbNamingCase, model: testModel}},
{name: "alterDatatypesJsonMapNamingCase", args: args{db: dbNamingCase, model: testModel, drop: true}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
db := tt.args.db
if err := db.AutoMigrate(tt.args.model); err != nil {
t.Errorf("AutoMigrate failed:%v", err)
}
if tt.args.drop {
_ = db.Migrator().DropTable(tt.args.model)
}
})
}
}
func TestMigrator_DatatypesJsonMapIgnoreCase(t *testing.T) {
if err := dbErrors[1]; err != nil {
t.Fatal(err)
}
if dbIgnoreCase == nil {
t.Log("dbNamingCase is nil!")
return
}
type tesJsonMapIgnoreCase struct {
gorm.Model
Extras JSONMap `gorm:"check:extras IS JSON"`
}
testModel := new(tesJsonMapIgnoreCase)
_ = dbIgnoreCase.Migrator().DropTable(testModel)
type args struct {
db *gorm.DB
model interface{}
drop bool
}
tests := []struct {
name string
args args
}{
{name: "createDatatypesJsonMapIgnoreCase", args: args{db: dbIgnoreCase, model: testModel}},
{name: "alterDatatypesJsonMapIgnoreCase", args: args{db: dbIgnoreCase, model: testModel, drop: true}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
db := tt.args.db
if err := db.AutoMigrate(tt.args.model); err != nil {
t.Errorf("AutoMigrate failed:%v", err)
}
if tt.args.drop {
_ = db.Migrator().DropTable(tt.args.model)
}
})
}
}