gorm/update_test.go

161 lines
5.3 KiB
Go
Raw Normal View History

2014-07-29 06:59:13 +04:00
package gorm_test
import (
"testing"
"time"
)
func TestUpdate(t *testing.T) {
2014-07-29 08:32:58 +04:00
product1 := Product{Code: "product1code"}
product2 := Product{Code: "product2code"}
2014-07-29 06:59:13 +04:00
2014-08-28 11:33:43 +04:00
DB.Save(&product1).Save(&product2).Update("code", "product2newcode")
2014-07-29 06:59:13 +04:00
2014-07-29 08:32:58 +04:00
if product2.Code != "product2newcode" {
t.Errorf("Record should be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
DB.First(&product1, product1.Id)
DB.First(&product2, product2.Id)
2014-07-29 08:32:58 +04:00
updatedAt1 := product1.UpdatedAt
updatedAt2 := product2.UpdatedAt
2014-07-29 06:59:13 +04:00
var product3 Product
2014-08-28 11:33:43 +04:00
DB.First(&product3, product2.Id).Update("code", "product2newcode")
2014-07-29 08:32:58 +04:00
if updatedAt2.Format(time.RFC3339Nano) != product3.UpdatedAt.Format(time.RFC3339Nano) {
t.Errorf("updatedAt should not be updated if nothing changed")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.First(&Product{}, "code = ?", product1.Code).RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product1 should not be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if !DB.First(&Product{}, "code = ?", "product2code").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product2's code should be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.First(&Product{}, "code = ?", "product2newcode").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product2's code should be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
DB.Table("products").Where("code in (?)", []string{"product1code"}).Update("code", "product1newcode")
2014-07-29 06:59:13 +04:00
var product4 Product
2014-08-28 11:33:43 +04:00
DB.First(&product4, product1.Id)
2014-07-29 08:32:58 +04:00
if updatedAt1.Format(time.RFC3339Nano) != product4.UpdatedAt.Format(time.RFC3339Nano) {
t.Errorf("updatedAt should be updated if something changed")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if !DB.First(&Product{}, "code = 'product1code'").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product1's code should be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.First(&Product{}, "code = 'product1newcode'").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product should not be changed to 789")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.Model(product2).Update("CreatedAt", time.Now().Add(time.Hour)).Error != nil {
2014-07-29 06:59:13 +04:00
t.Error("No error should raise when update with CamelCase")
}
2014-08-28 11:33:43 +04:00
if DB.Model(&product2).UpdateColumn("CreatedAt", time.Now().Add(time.Hour)).Error != nil {
2014-07-29 06:59:13 +04:00
t.Error("No error should raise when update_column with CamelCase")
}
2014-07-29 08:32:58 +04:00
var products []Product
2014-08-28 11:33:43 +04:00
DB.Find(&products)
if count := DB.Model(Product{}).Update("CreatedAt", time.Now().Add(2*time.Hour)).RowsAffected; count != int64(len(products)) {
2014-07-29 08:32:58 +04:00
t.Error("RowsAffected should be correct when do batch update")
2014-07-29 06:59:13 +04:00
}
2014-07-29 08:32:58 +04:00
}
2014-07-29 06:59:13 +04:00
2014-07-29 08:32:58 +04:00
func TestUpdateWithNoStdPrimaryKey(t *testing.T) {
animal := Animal{Name: "Ferdinand"}
2014-08-28 11:33:43 +04:00
DB.Save(&animal)
2014-07-29 08:32:58 +04:00
updatedAt1 := animal.UpdatedAt
2014-07-29 06:59:13 +04:00
2014-08-28 11:33:43 +04:00
DB.Save(&animal).Update("name", "Francis")
2014-07-29 06:59:13 +04:00
2014-07-29 08:32:58 +04:00
if updatedAt1.Format(time.RFC3339Nano) == animal.UpdatedAt.Format(time.RFC3339Nano) {
t.Errorf("updatedAt should not be updated if nothing changed")
2014-07-29 06:59:13 +04:00
}
var animals []Animal
2014-08-28 11:33:43 +04:00
DB.Find(&animals)
if count := DB.Model(Animal{}).Update("CreatedAt", time.Now().Add(2*time.Hour)).RowsAffected; count != int64(len(animals)) {
2014-07-29 06:59:13 +04:00
t.Error("RowsAffected should be correct when do batch update")
}
}
func TestUpdates(t *testing.T) {
2014-07-29 08:32:58 +04:00
product1 := Product{Code: "product1code", Price: 10}
product2 := Product{Code: "product2code", Price: 10}
2014-08-28 11:33:43 +04:00
DB.Save(&product1).Save(&product2)
DB.Model(&product1).Updates(map[string]interface{}{"code": "product1newcode", "price": 100})
2014-07-29 08:32:58 +04:00
if product1.Code != "product1newcode" || product1.Price != 100 {
t.Errorf("Record should be updated also with map")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
DB.First(&product1, product1.Id)
DB.First(&product2, product2.Id)
2014-07-29 08:32:58 +04:00
updatedAt1 := product1.UpdatedAt
updatedAt2 := product2.UpdatedAt
2014-07-29 06:59:13 +04:00
var product3 Product
2014-08-28 11:33:43 +04:00
DB.First(&product3, product1.Id).Updates(Product{Code: "product1newcode", Price: 100})
2014-07-29 08:32:58 +04:00
if product3.Code != "product1newcode" || product3.Price != 100 {
t.Errorf("Record should be updated with struct")
2014-07-29 06:59:13 +04:00
}
2014-07-29 08:32:58 +04:00
if updatedAt1.Format(time.RFC3339Nano) != product3.UpdatedAt.Format(time.RFC3339Nano) {
t.Errorf("updatedAt should not be updated if nothing changed")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.First(&Product{}, "code = ? and price = ?", product2.Code, product2.Price).RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product2 should not be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.First(&Product{}, "code = ?", "product1newcode").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product1 should be updated")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
DB.Table("products").Where("code in (?)", []string{"product2code"}).Updates(Product{Code: "product2newcode"})
if !DB.First(&Product{}, "code = 'product2code'").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("Product2's code should be updated")
2014-07-29 06:59:13 +04:00
}
var product4 Product
2014-08-28 11:33:43 +04:00
DB.First(&product4, product2.Id)
2014-07-29 08:32:58 +04:00
if updatedAt2.Format(time.RFC3339Nano) != product4.UpdatedAt.Format(time.RFC3339Nano) {
t.Errorf("updatedAt should be updated if something changed")
2014-07-29 06:59:13 +04:00
}
2014-08-28 11:33:43 +04:00
if DB.First(&Product{}, "code = ?", "product2newcode").RecordNotFound() {
2014-07-29 08:32:58 +04:00
t.Errorf("product2's code should be updated")
2014-07-29 06:59:13 +04:00
}
}
func TestUpdateColumn(t *testing.T) {
2014-07-29 08:32:58 +04:00
product1 := Product{Code: "product1code", Price: 10}
product2 := Product{Code: "product2code", Price: 20}
2014-08-28 11:33:43 +04:00
DB.Save(&product1).Save(&product2).UpdateColumn(map[string]interface{}{"code": "product2newcode", "price": 100})
2014-07-29 08:32:58 +04:00
if product2.Code != "product2newcode" || product2.Price != 100 {
2014-07-29 06:59:13 +04:00
t.Errorf("product 2 should be updated with update column")
}
var product3 Product
2014-08-28 11:33:43 +04:00
DB.First(&product3, product1.Id)
2014-07-29 08:32:58 +04:00
if product3.Code != "product1code" || product3.Price != 10 {
2014-07-29 06:59:13 +04:00
t.Errorf("product 1 should not be updated")
}
2014-08-28 11:33:43 +04:00
DB.First(&product2, product2.Id)
2014-07-29 08:32:58 +04:00
updatedAt2 := product2.UpdatedAt
2014-08-28 11:33:43 +04:00
DB.Model(product2).UpdateColumn("code", "update_column_new")
2014-07-29 08:32:58 +04:00
var product4 Product
2014-08-28 11:33:43 +04:00
DB.First(&product4, product2.Id)
2014-07-29 08:32:58 +04:00
if updatedAt2.Format(time.RFC3339Nano) != product4.UpdatedAt.Format(time.RFC3339Nano) {
t.Errorf("updatedAt should not be updated with update column")
2014-07-29 06:59:13 +04:00
}
}