mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
fix: unit test of dm failed occasionally (#3382)
This commit is contained in:
parent
04756d05a7
commit
164aad48c3
@ -198,7 +198,7 @@ func TestModelInsert(t *testing.T) {
|
||||
AccountName: fmt.Sprintf(`A%dtwo`, i),
|
||||
PwdReset: 0,
|
||||
AttrIndex: 99,
|
||||
// CreatedTime: time.Now(),
|
||||
CreatedTime: time.Now(),
|
||||
UpdatedTime: time.Now(),
|
||||
}
|
||||
// _, err := db.Schema(TestDBName).Model(table).Data(data).Insert()
|
||||
@ -214,7 +214,7 @@ func TestModelInsert(t *testing.T) {
|
||||
PwdReset: 1,
|
||||
CreatedTime: time.Now(),
|
||||
AttrIndex: 98,
|
||||
// UpdatedTime: time.Now(),
|
||||
UpdatedTime: time.Now(),
|
||||
}
|
||||
// _, err := db.Schema(TestDBName).Model(table).Data(data).Insert()
|
||||
_, err := db.Model(table).Data(&data).Insert()
|
||||
@ -232,6 +232,8 @@ func TestDBInsert(t *testing.T) {
|
||||
"ACCOUNT_NAME": fmt.Sprintf(`A%dthress`, i),
|
||||
"PWD_RESET": 3,
|
||||
"ATTR_INDEX": 98,
|
||||
"CREATED_TIME": gtime.Now(),
|
||||
"UPDATED_TIME": gtime.Now(),
|
||||
}
|
||||
_, err := db.Insert(ctx, table, &data)
|
||||
gtest.Assert(err, nil)
|
||||
@ -253,18 +255,21 @@ func Test_DB_Insert(t *testing.T) {
|
||||
table := "A_tables"
|
||||
createInitTable(table)
|
||||
gtest.C(t, func(t *gtest.T) {
|
||||
timeNow := time.Now()
|
||||
// normal map
|
||||
_, err := db.Insert(ctx, table, g.Map{
|
||||
"ID": 1000,
|
||||
"ACCOUNT_NAME": "map1",
|
||||
"CREATED_TIME": gtime.Now(),
|
||||
"CREATED_TIME": timeNow,
|
||||
"UPDATED_TIME": timeNow,
|
||||
})
|
||||
t.AssertNil(err)
|
||||
|
||||
result, err := db.Insert(ctx, table, g.Map{
|
||||
"ID": "2000",
|
||||
"ACCOUNT_NAME": "map2",
|
||||
"CREATED_TIME": gtime.Now(),
|
||||
"CREATED_TIME": timeNow,
|
||||
"UPDATED_TIME": timeNow,
|
||||
})
|
||||
t.AssertNil(err)
|
||||
n, _ := result.RowsAffected()
|
||||
@ -273,7 +278,8 @@ func Test_DB_Insert(t *testing.T) {
|
||||
result, err = db.Insert(ctx, table, g.Map{
|
||||
"ID": 3000,
|
||||
"ACCOUNT_NAME": "map3",
|
||||
// "CREATED_TIME": gtime.Now(),
|
||||
"CREATED_TIME": timeNow,
|
||||
"UPDATED_TIME": timeNow,
|
||||
})
|
||||
t.AssertNil(err)
|
||||
n, _ = result.RowsAffected()
|
||||
@ -283,8 +289,8 @@ func Test_DB_Insert(t *testing.T) {
|
||||
result, err = db.Insert(ctx, table, User{
|
||||
ID: 4000,
|
||||
AccountName: "struct_4",
|
||||
// CreatedTime: timeStr,
|
||||
// UpdatedTime: timeStr,
|
||||
CreatedTime: timeNow,
|
||||
UpdatedTime: timeNow,
|
||||
})
|
||||
t.AssertNil(err)
|
||||
n, _ = result.RowsAffected()
|
||||
@ -299,12 +305,11 @@ func Test_DB_Insert(t *testing.T) {
|
||||
// t.Assert(one["CREATED_TIME"].GTime().String(), timeStr)
|
||||
|
||||
// *struct
|
||||
timeStr := time.Now()
|
||||
result, err = db.Insert(ctx, table, &User{
|
||||
ID: 5000,
|
||||
AccountName: "struct_5",
|
||||
CreatedTime: timeStr,
|
||||
// UpdatedTime: timeStr,
|
||||
CreatedTime: timeNow,
|
||||
UpdatedTime: timeNow,
|
||||
})
|
||||
t.AssertNil(err)
|
||||
n, _ = result.RowsAffected()
|
||||
@ -320,10 +325,14 @@ func Test_DB_Insert(t *testing.T) {
|
||||
g.Map{
|
||||
"ID": 6000,
|
||||
"ACCOUNT_NAME": "t6000",
|
||||
"CREATED_TIME": timeNow,
|
||||
"UPDATED_TIME": timeNow,
|
||||
},
|
||||
g.Map{
|
||||
"ID": 6001,
|
||||
"ACCOUNT_NAME": "t6001",
|
||||
"CREATED_TIME": timeNow,
|
||||
"UPDATED_TIME": timeNow,
|
||||
},
|
||||
})
|
||||
t.AssertNil(err)
|
||||
@ -345,12 +354,14 @@ func Test_DB_BatchInsert(t *testing.T) {
|
||||
{
|
||||
"ID": 400,
|
||||
"ACCOUNT_NAME": "list_400",
|
||||
// "CREATE_TIME": gtime.Now(),
|
||||
"CREATE_TIME": gtime.Now(),
|
||||
"UPDATED_TIME": gtime.Now(),
|
||||
},
|
||||
{
|
||||
"ID": 401,
|
||||
"ACCOUNT_NAME": "list_401",
|
||||
"CREATE_TIME": gtime.Now(),
|
||||
"UPDATED_TIME": gtime.Now(),
|
||||
},
|
||||
}, 1)
|
||||
t.AssertNil(err)
|
||||
@ -365,11 +376,13 @@ func Test_DB_BatchInsert(t *testing.T) {
|
||||
"ID": 500,
|
||||
"ACCOUNT_NAME": "500_batch_500",
|
||||
"CREATE_TIME": gtime.Now(),
|
||||
"UPDATED_TIME": gtime.Now(),
|
||||
},
|
||||
g.Map{
|
||||
"ID": 501,
|
||||
"ACCOUNT_NAME": "501_batch_501",
|
||||
// "CREATE_TIME": gtime.Now(),
|
||||
"CREATE_TIME": gtime.Now(),
|
||||
"UPDATED_TIME": gtime.Now(),
|
||||
},
|
||||
}, 1)
|
||||
t.AssertNil(err)
|
||||
@ -383,6 +396,7 @@ func Test_DB_BatchInsert(t *testing.T) {
|
||||
"ID": 600,
|
||||
"ACCOUNT_NAME": "600_batch_600",
|
||||
"CREATE_TIME": gtime.Now(),
|
||||
"UPDATED_TIME": gtime.Now(),
|
||||
})
|
||||
t.AssertNil(err)
|
||||
n, _ := result.RowsAffected()
|
||||
@ -400,6 +414,7 @@ func Test_DB_BatchInsert_Struct(t *testing.T) {
|
||||
ID: 700,
|
||||
AccountName: "BatchInsert_Struct_700",
|
||||
CreatedTime: time.Now(),
|
||||
UpdatedTime: time.Now(),
|
||||
}
|
||||
result, err := db.Model(table).Insert(user)
|
||||
t.AssertNil(err)
|
||||
|
Loading…
x
Reference in New Issue
Block a user