gorm/tests/create.go

186 lines
4.8 KiB
Go
Raw Normal View History

2020-04-15 14:13:36 +03:00
package tests
import (
2020-04-17 03:40:07 +03:00
"fmt"
2020-04-15 14:13:36 +03:00
"testing"
"github.com/jinzhu/gorm"
)
func TestCreate(t *testing.T, db *gorm.DB) {
db.Migrator().DropTable(&User{})
db.AutoMigrate(&User{})
t.Run("Create", func(t *testing.T) {
var user = User{
Name: "create",
Age: 18,
Birthday: Now(),
}
if err := db.Create(&user).Error; err != nil {
t.Fatalf("errors happened when create: %v", err)
}
if user.ID == 0 {
t.Errorf("user's primary key should has value after create, got : %v", user.ID)
}
if user.CreatedAt.IsZero() {
t.Errorf("user's created at should be not zero")
}
if user.UpdatedAt.IsZero() {
t.Errorf("user's updated at should be not zero")
}
var newUser User
if err := db.Where("id = ?", user.ID).First(&newUser).Error; err != nil {
t.Errorf("errors happened when query: %v", err)
} else {
AssertObjEqual(t, newUser, user, "Name", "Age", "Birthday")
}
})
2020-04-15 18:58:26 +03:00
TestCreateAssociations(t, db)
}
func TestCreateAssociations(t *testing.T, db *gorm.DB) {
db.Migrator().DropTable(&Company{})
db.Migrator().AutoMigrate(&Company{})
t.Run("Create-BelongsToAssociation", func(t *testing.T) {
var user = User{
Name: "create",
Age: 18,
Birthday: Now(),
Company: Company{Name: "company-belongs-to-association"},
Manager: &User{Name: "manager-belongs-to-association"},
}
if err := db.Create(&user).Error; err != nil {
t.Fatalf("errors happened when create: %v", err)
}
if user.CompanyID == nil {
t.Errorf("Failed to create belongs to association - Company")
} else {
var company Company
db.First(&company, "id = ?", *user.CompanyID)
if company.Name != "company-belongs-to-association" {
t.Errorf("Failed to query saved belongs to association - Company")
}
}
if user.ManagerID == nil {
t.Errorf("Failed to create belongs to association - Manager")
} else {
var manager User
db.First(&manager, "id = ?", *user.ManagerID)
if manager.Name != "manager-belongs-to-association" {
t.Errorf("Failed to query saved belongs to association - Manager")
}
}
})
2020-04-17 03:23:47 +03:00
t.Run("Create-HasOneAssociation", func(t *testing.T) {
var user = User{
Name: "create",
Age: 18,
Birthday: Now(),
Account: Account{Number: "account-has-one-association"},
}
if err := db.Create(&user).Error; err != nil {
t.Fatalf("errors happened when create: %v", err)
}
if user.Account.ID == 0 {
t.Errorf("Failed to create has one association - Account")
} else if user.Account.UserID.Int64 != int64(user.ID) {
t.Errorf("Failed to create has one association - Account")
} else {
var account Account
db.First(&account, "id = ?", user.Account.ID)
if user.Account.Number != "account-has-one-association" {
t.Errorf("Failed to query saved has one association - Account")
}
}
})
2020-04-17 03:40:07 +03:00
t.Run("Create-HasOneAssociation-Polymorphic", func(t *testing.T) {
var pet = Pet{
Name: "create",
Toy: Toy{Name: "Create-HasOneAssociation-Polymorphic"},
}
if err := db.Create(&pet).Error; err != nil {
t.Fatalf("errors happened when create: %v", err)
}
if pet.Toy.OwnerID != fmt.Sprint(pet.ID) || pet.Toy.OwnerType != "pets" {
t.Errorf("Failed to create polymorphic has one association - toy owner id %v, owner type %v", pet.Toy.OwnerID, pet.Toy.OwnerType)
} else {
var toy Toy
db.First(&toy, "owner_id = ? and owner_type = ?", pet.Toy.OwnerID, pet.Toy.OwnerType)
if toy.Name != "Create-HasOneAssociation-Polymorphic" {
t.Errorf("Failed to query saved polymorphic has one association")
}
}
})
2020-04-19 09:29:31 +03:00
t.Run("Create-HasManyAssociation", func(t *testing.T) {
var user = User{
Name: "create",
Age: 18,
Birthday: Now(),
Pets: []*Pet{{Name: "pet1"}, {Name: "pet2"}},
}
if err := db.Create(&user).Error; err != nil {
t.Fatalf("errors happened when create: %v", err)
}
for idx, pet := range user.Pets {
if pet.ID == 0 {
t.Fatalf("Failed to create pet #%v", idx)
}
var result Pet
db.First(&result, "id = ?", pet.ID)
if result.Name != pet.Name {
t.Errorf("Failed to query pet")
} else if result.UserID != user.ID {
t.Errorf("Failed to save relation")
}
}
})
t.Run("Create-HasManyAssociation-Polymorphic", func(t *testing.T) {
var user = User{
Name: "create",
Age: 18,
Birthday: Now(),
Toys: []Toy{{Name: "toy1"}, {Name: "toy2"}},
}
if err := db.Create(&user).Error; err != nil {
t.Fatalf("errors happened when create: %v", err)
}
for idx, toy := range user.Toys {
if toy.ID == 0 {
t.Fatalf("Failed to create toy #%v", idx)
}
var result Toy
db.First(&result, "id = ?", toy.ID)
if result.Name != toy.Name {
t.Errorf("Failed to query saved toy")
} else if result.OwnerID != fmt.Sprint(user.ID) || result.OwnerType != "users" {
t.Errorf("Failed to save relation")
}
}
})
2020-04-15 14:13:36 +03:00
}