-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
migrator_test.go
260 lines (214 loc) · 8.57 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
package dameng
import (
"encoding/json"
"reflect"
"testing"
"time"
"gorm.io/gorm"
)
var (
dsnOptions = map[string]string{
"schema": dmSchema,
"appName": "dm_TestMigrator",
"connectTimeout": "30000",
}
)
func TestMigrator_AutoMigrate(t *testing.T) {
db, err := gorm.Open(New(Config{
DriverName: DriverName,
DSN: BuildUrl(dmUsername, dmPassword, dmHost, dmPort, dsnOptions),
VarcharSizeIsCharLength: true,
}))
if err != nil {
t.Fatalf("initialize db session based on dialector got error: %v", err)
}
type args struct {
drop bool
models []interface{}
comments []string
}
tests := []struct {
name string
args args
wantErr bool
}{
{name: "TestTableUser-create", args: args{models: []interface{}{TestTableUser{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUser-alter", args: args{models: []interface{}{TestTableUser{}}, comments: []string{"用户信息表"}, drop: true}},
{name: "TestTableUserNoComments", args: args{models: []interface{}{TestTableUserNoComments{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUserAddColumn", args: args{models: []interface{}{TestTableUserAddColumn{}}, comments: []string{"用户信息表"}}},
{name: "TestTableUserMigrateColumn", args: args{models: []interface{}{TestTableUserMigrateColumn{}}, comments: []string{"用户信息表"}, drop: true}},
{name: "TestTableColumnTypeModel-create", args: args{models: []interface{}{testTableColumnTypeModel{}}, comments: []string{"测试字段类型表"}}},
{name: "TestTableColumnTypeModel-alter", args: args{models: []interface{}{testTableColumnTypeModel{}}, comments: []string{"测试字段类型表"}, drop: true}},
}
for _, 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() got 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 tt.name == "TestTableUserMigrateColumn" {
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"
}
type TestTableFieldComment struct {
ID string `gorm:"column:id;primaryKey"`
Name string `gorm:"column:name;comment:姓名"`
Age uint `gorm:"column:age;comment:年龄"`
}
func (*TestTableFieldComment) TableName() string { return "test_table_field_comment" }
type TestTableFieldCommentUpdate struct {
ID string `gorm:"column:id;primaryKey"`
Name string `gorm:"column:name;comment:姓名"`
Age uint `gorm:"column:age;comment:周岁"`
Birthday *time.Time `gorm:"column:birthday;comment:生日"`
}
func (*TestTableFieldCommentUpdate) TableName() string { return "test_table_field_comment" }
func TestMigrator_MigrateColumnComment(t *testing.T) {
dsn := BuildUrl(dmUsername, dmPassword, dmHost, dmPort, dsnOptions)
db, err := gorm.Open(New(Config{DriverName: DriverName, DSN: dsn}))
if err != nil {
t.Error(err)
}
migrator := db.Debug().Migrator()
tableModel := new(TestTableFieldComment)
defer func() {
if err = migrator.DropTable(tableModel); err != nil {
t.Errorf("couldn't drop table %q, got error: %v", tableModel.TableName(), err)
}
}()
if err = migrator.AutoMigrate(tableModel); err != nil {
t.Fatal(err)
}
tableModelUpdate := new(TestTableFieldCommentUpdate)
if err = migrator.AutoMigrate(tableModelUpdate); err != nil {
t.Error(err)
}
if m, ok := migrator.(Migrator); ok {
stmt := db.Model(tableModelUpdate).Find(nil).Statement
if stmt == nil || stmt.Schema == nil {
t.Fatal("expected Statement.Schema, got nil")
}
wantComments := []string{"", "姓名", "周岁", "生日"}
gotComments := make([]string, len(stmt.Schema.DBNames))
for i, fieldDBName := range stmt.Schema.DBNames {
comment := m.GetColumnComment(stmt, fieldDBName)
gotComments[i] = comment
}
if !reflect.DeepEqual(wantComments, gotComments) {
t.Fatalf("expected comments %#v, got %#v", wantComments, gotComments)
}
t.Logf("got comments: %#v", gotComments)
}
}