2014-07-29 06:59:13 +04:00
|
|
|
package gorm_test
|
|
|
|
|
|
|
|
import (
|
2016-03-08 16:45:20 +03:00
|
|
|
"database/sql"
|
|
|
|
"database/sql/driver"
|
|
|
|
"errors"
|
2014-07-29 06:59:13 +04:00
|
|
|
"fmt"
|
2016-03-08 16:45:20 +03:00
|
|
|
"reflect"
|
2014-07-29 06:59:13 +04:00
|
|
|
"testing"
|
2014-07-29 08:32:58 +04:00
|
|
|
"time"
|
2016-03-08 16:45:20 +03:00
|
|
|
|
|
|
|
"github.com/jinzhu/gorm"
|
2014-07-29 06:59:13 +04:00
|
|
|
)
|
|
|
|
|
2016-03-08 16:45:20 +03:00
|
|
|
type User struct {
|
|
|
|
Id int64
|
|
|
|
Age int64
|
|
|
|
UserNum Num
|
2016-03-10 12:35:19 +03:00
|
|
|
Name string `sql:"size:255"`
|
|
|
|
Email string
|
2016-03-08 16:45:20 +03:00
|
|
|
Birthday time.Time // Time
|
|
|
|
CreatedAt time.Time // CreatedAt: Time of record is created, will be insert automatically
|
|
|
|
UpdatedAt time.Time // UpdatedAt: Time of record is updated, will be updated automatically
|
|
|
|
Emails []Email // Embedded structs
|
|
|
|
BillingAddress Address // Embedded struct
|
|
|
|
BillingAddressID sql.NullInt64 // Embedded struct's foreign key
|
|
|
|
ShippingAddress Address // Embedded struct
|
|
|
|
ShippingAddressId int64 // Embedded struct's foreign key
|
|
|
|
CreditCard CreditCard
|
|
|
|
Latitude float64
|
|
|
|
Languages []Language `gorm:"many2many:user_languages;"`
|
|
|
|
CompanyID *int
|
|
|
|
Company Company
|
|
|
|
Role
|
|
|
|
PasswordHash []byte
|
|
|
|
IgnoreMe int64 `sql:"-"`
|
|
|
|
IgnoreStringSlice []string `sql:"-"`
|
|
|
|
Ignored struct{ Name string } `sql:"-"`
|
|
|
|
IgnoredPointer *User `sql:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreditCard struct {
|
|
|
|
ID int8
|
|
|
|
Number string
|
|
|
|
UserId sql.NullInt64
|
|
|
|
CreatedAt time.Time `sql:"not null"`
|
|
|
|
UpdatedAt time.Time
|
|
|
|
DeletedAt *time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type Email struct {
|
|
|
|
Id int16
|
|
|
|
UserId int
|
|
|
|
Email string `sql:"type:varchar(100);"`
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type Address struct {
|
|
|
|
ID int
|
|
|
|
Address1 string
|
|
|
|
Address2 string
|
|
|
|
Post string
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
DeletedAt *time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type Language struct {
|
|
|
|
gorm.Model
|
|
|
|
Name string
|
|
|
|
Users []User `gorm:"many2many:user_languages;"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Product struct {
|
|
|
|
Id int64
|
|
|
|
Code string
|
|
|
|
Price int64
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
AfterFindCallTimes int64
|
|
|
|
BeforeCreateCallTimes int64
|
|
|
|
AfterCreateCallTimes int64
|
|
|
|
BeforeUpdateCallTimes int64
|
|
|
|
AfterUpdateCallTimes int64
|
|
|
|
BeforeSaveCallTimes int64
|
|
|
|
AfterSaveCallTimes int64
|
|
|
|
BeforeDeleteCallTimes int64
|
|
|
|
AfterDeleteCallTimes int64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Company struct {
|
|
|
|
Id int64
|
|
|
|
Name string
|
|
|
|
Owner *User `sql:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Role struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (role *Role) Scan(value interface{}) error {
|
|
|
|
if b, ok := value.([]uint8); ok {
|
|
|
|
role.Name = string(b)
|
|
|
|
} else {
|
|
|
|
role.Name = value.(string)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (role Role) Value() (driver.Value, error) {
|
|
|
|
return role.Name, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (role Role) IsAdmin() bool {
|
|
|
|
return role.Name == "admin"
|
|
|
|
}
|
|
|
|
|
|
|
|
type Num int64
|
|
|
|
|
|
|
|
func (i *Num) Scan(src interface{}) error {
|
|
|
|
switch s := src.(type) {
|
|
|
|
case []byte:
|
|
|
|
case int64:
|
|
|
|
*i = Num(s)
|
|
|
|
default:
|
|
|
|
return errors.New("Cannot scan NamedInt from " + reflect.ValueOf(src).String())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Animal struct {
|
|
|
|
Counter uint64 `gorm:"primary_key:yes"`
|
|
|
|
Name string `sql:"DEFAULT:'galeone'"`
|
|
|
|
From string //test reserved sql keyword as field name
|
|
|
|
Age time.Time `sql:"DEFAULT:current_timestamp"`
|
|
|
|
unexported string // unexported value
|
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type JoinTable struct {
|
|
|
|
From uint64
|
|
|
|
To uint64
|
|
|
|
Time time.Time `sql:"default: null"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Post struct {
|
|
|
|
Id int64
|
|
|
|
CategoryId sql.NullInt64
|
|
|
|
MainCategoryId int64
|
|
|
|
Title string
|
|
|
|
Body string
|
|
|
|
Comments []*Comment
|
|
|
|
Category Category
|
|
|
|
MainCategory Category
|
|
|
|
}
|
|
|
|
|
|
|
|
type Category struct {
|
|
|
|
gorm.Model
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Comment struct {
|
|
|
|
gorm.Model
|
|
|
|
PostId int64
|
|
|
|
Content string
|
|
|
|
Post Post
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scanner
|
|
|
|
type NullValue struct {
|
|
|
|
Id int64
|
|
|
|
Name sql.NullString `sql:"not null"`
|
|
|
|
Gender *sql.NullString `sql:"not null"`
|
|
|
|
Age sql.NullInt64
|
|
|
|
Male sql.NullBool
|
|
|
|
Height sql.NullFloat64
|
|
|
|
AddedAt NullTime
|
|
|
|
}
|
|
|
|
|
|
|
|
type NullTime struct {
|
|
|
|
Time time.Time
|
|
|
|
Valid bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (nt *NullTime) Scan(value interface{}) error {
|
|
|
|
if value == nil {
|
|
|
|
nt.Valid = false
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
nt.Time, nt.Valid = value.(time.Time), true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (nt NullTime) Value() (driver.Value, error) {
|
|
|
|
if !nt.Valid {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return nt.Time, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getPreparedUser(name string, role string) *User {
|
|
|
|
var company Company
|
|
|
|
DB.Where(Company{Name: role}).FirstOrCreate(&company)
|
|
|
|
|
|
|
|
return &User{
|
|
|
|
Name: name,
|
|
|
|
Age: 20,
|
|
|
|
Role: Role{role},
|
|
|
|
BillingAddress: Address{Address1: fmt.Sprintf("Billing Address %v", name)},
|
|
|
|
ShippingAddress: Address{Address1: fmt.Sprintf("Shipping Address %v", name)},
|
|
|
|
CreditCard: CreditCard{Number: fmt.Sprintf("123456%v", name)},
|
|
|
|
Emails: []Email{
|
|
|
|
{Email: fmt.Sprintf("user_%v@example1.com", name)}, {Email: fmt.Sprintf("user_%v@example2.com", name)},
|
|
|
|
},
|
|
|
|
Company: company,
|
|
|
|
Languages: []Language{
|
|
|
|
{Name: fmt.Sprintf("lang_1_%v", name)},
|
|
|
|
{Name: fmt.Sprintf("lang_2_%v", name)},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 06:59:13 +04:00
|
|
|
func runMigration() {
|
2015-02-28 12:01:27 +03:00
|
|
|
if err := DB.DropTableIfExists(&User{}).Error; err != nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
fmt.Printf("Got error when try to delete table users, %+v\n", err)
|
|
|
|
}
|
|
|
|
|
2014-08-28 14:53:27 +04:00
|
|
|
for _, table := range []string{"animals", "user_languages"} {
|
|
|
|
DB.Exec(fmt.Sprintf("drop table %v;", table))
|
|
|
|
}
|
|
|
|
|
2015-12-26 10:19:56 +03:00
|
|
|
values := []interface{}{&Product{}, &Email{}, &Address{}, &CreditCard{}, &Company{}, &Role{}, &Language{}, &HNPost{}, &EngadgetPost{}, &Animal{}, &User{}, &JoinTable{}, &Post{}, &Category{}, &Comment{}, &Cat{}, &Dog{}, &Toy{}}
|
2014-08-28 14:53:27 +04:00
|
|
|
for _, value := range values {
|
|
|
|
DB.DropTable(value)
|
|
|
|
}
|
2014-08-28 11:33:43 +04:00
|
|
|
|
2014-08-28 14:53:27 +04:00
|
|
|
if err := DB.AutoMigrate(values...).Error; err != nil {
|
2014-07-29 13:28:10 +04:00
|
|
|
panic(fmt.Sprintf("No error should happen when create table, but got %+v", err))
|
|
|
|
}
|
2014-07-29 06:59:13 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestIndexes(t *testing.T) {
|
2014-08-28 11:33:43 +04:00
|
|
|
if err := DB.Model(&Email{}).AddIndex("idx_email_email", "email").Error; err != nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
t.Errorf("Got error when tried to create index: %+v", err)
|
|
|
|
}
|
|
|
|
|
2015-03-02 18:02:40 +03:00
|
|
|
scope := DB.NewScope(&Email{})
|
2016-02-15 09:09:24 +03:00
|
|
|
if !scope.Dialect().HasIndex(scope.TableName(), "idx_email_email") {
|
2015-03-02 18:02:40 +03:00
|
|
|
t.Errorf("Email should have index idx_email_email")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if err := DB.Model(&Email{}).RemoveIndex("idx_email_email").Error; err != nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
t.Errorf("Got error when tried to remove index: %+v", err)
|
|
|
|
}
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
if scope.Dialect().HasIndex(scope.TableName(), "idx_email_email") {
|
2015-03-02 18:02:40 +03:00
|
|
|
t.Errorf("Email's index idx_email_email should be deleted")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if err := DB.Model(&Email{}).AddIndex("idx_email_email_and_user_id", "user_id", "email").Error; err != nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
t.Errorf("Got error when tried to create index: %+v", err)
|
|
|
|
}
|
2014-07-29 08:02:03 +04:00
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
if !scope.Dialect().HasIndex(scope.TableName(), "idx_email_email_and_user_id") {
|
2015-03-02 18:02:40 +03:00
|
|
|
t.Errorf("Email should have index idx_email_email_and_user_id")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if err := DB.Model(&Email{}).RemoveIndex("idx_email_email_and_user_id").Error; err != nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
t.Errorf("Got error when tried to remove index: %+v", err)
|
|
|
|
}
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
if scope.Dialect().HasIndex(scope.TableName(), "idx_email_email_and_user_id") {
|
2015-03-02 18:02:40 +03:00
|
|
|
t.Errorf("Email's index idx_email_email_and_user_id should be deleted")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if err := DB.Model(&Email{}).AddUniqueIndex("idx_email_email_and_user_id", "user_id", "email").Error; err != nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
t.Errorf("Got error when tried to create index: %+v", err)
|
|
|
|
}
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
if !scope.Dialect().HasIndex(scope.TableName(), "idx_email_email_and_user_id") {
|
2015-03-02 18:02:40 +03:00
|
|
|
t.Errorf("Email should have index idx_email_email_and_user_id")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if DB.Save(&User{Name: "unique_indexes", Emails: []Email{{Email: "user1@example.comiii"}, {Email: "user1@example.com"}, {Email: "user1@example.com"}}}).Error == nil {
|
2014-07-29 06:59:13 +04:00
|
|
|
t.Errorf("Should get to create duplicate record when having unique index")
|
|
|
|
}
|
2014-07-29 08:02:03 +04:00
|
|
|
|
2016-01-03 12:52:16 +03:00
|
|
|
var user = User{Name: "sample_user"}
|
|
|
|
DB.Save(&user)
|
|
|
|
if DB.Model(&user).Association("Emails").Append(Email{Email: "not-1duplicated@gmail.com"}, Email{Email: "not-duplicated2@gmail.com"}).Error != nil {
|
|
|
|
t.Errorf("Should get no error when append two emails for user")
|
|
|
|
}
|
|
|
|
|
|
|
|
if DB.Model(&user).Association("Emails").Append(Email{Email: "duplicated@gmail.com"}, Email{Email: "duplicated@gmail.com"}).Error == nil {
|
|
|
|
t.Errorf("Should get no duplicated email error when insert duplicated emails for a user")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if err := DB.Model(&Email{}).RemoveIndex("idx_email_email_and_user_id").Error; err != nil {
|
2014-07-29 08:02:03 +04:00
|
|
|
t.Errorf("Got error when tried to remove index: %+v", err)
|
|
|
|
}
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
if scope.Dialect().HasIndex(scope.TableName(), "idx_email_email_and_user_id") {
|
2015-03-02 18:02:40 +03:00
|
|
|
t.Errorf("Email's index idx_email_email_and_user_id should be deleted")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
if DB.Save(&User{Name: "unique_indexes", Emails: []Email{{Email: "user1@example.com"}, {Email: "user1@example.com"}}}).Error != nil {
|
2014-07-29 08:02:03 +04:00
|
|
|
t.Errorf("Should be able to create duplicated emails after remove unique index")
|
|
|
|
}
|
2014-07-29 06:59:13 +04:00
|
|
|
}
|
2014-07-29 08:32:58 +04:00
|
|
|
|
|
|
|
type BigEmail struct {
|
|
|
|
Id int64
|
|
|
|
UserId int64
|
2015-03-09 12:22:16 +03:00
|
|
|
Email string `sql:"index:idx_email_agent"`
|
|
|
|
UserAgent string `sql:"index:idx_email_agent"`
|
|
|
|
RegisteredAt time.Time `sql:"unique_index"`
|
2014-07-29 08:32:58 +04:00
|
|
|
CreatedAt time.Time
|
|
|
|
UpdatedAt time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b BigEmail) TableName() string {
|
|
|
|
return "emails"
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAutoMigration(t *testing.T) {
|
2014-11-25 09:41:09 +03:00
|
|
|
DB.AutoMigrate(&Address{})
|
|
|
|
if err := DB.Table("emails").AutoMigrate(&BigEmail{}).Error; err != nil {
|
2014-07-29 08:32:58 +04:00
|
|
|
t.Errorf("Auto Migrate should not raise any error")
|
|
|
|
}
|
|
|
|
|
2014-08-28 11:33:43 +04:00
|
|
|
DB.Save(&BigEmail{Email: "jinzhu@example.org", UserAgent: "pc", RegisteredAt: time.Now()})
|
2014-07-29 08:32:58 +04:00
|
|
|
|
2015-03-09 12:22:16 +03:00
|
|
|
scope := DB.NewScope(&BigEmail{})
|
2016-02-15 09:09:24 +03:00
|
|
|
if !scope.Dialect().HasIndex(scope.TableName(), "idx_email_agent") {
|
2015-03-09 12:22:16 +03:00
|
|
|
t.Errorf("Failed to create index")
|
|
|
|
}
|
|
|
|
|
2016-02-15 09:09:24 +03:00
|
|
|
if !scope.Dialect().HasIndex(scope.TableName(), "uix_emails_registered_at") {
|
2015-03-09 12:22:16 +03:00
|
|
|
t.Errorf("Failed to create index")
|
|
|
|
}
|
|
|
|
|
2014-07-29 08:32:58 +04:00
|
|
|
var bigemail BigEmail
|
2014-08-28 11:33:43 +04:00
|
|
|
DB.First(&bigemail, "user_agent = ?", "pc")
|
2014-07-29 08:32:58 +04:00
|
|
|
if bigemail.Email != "jinzhu@example.org" || bigemail.UserAgent != "pc" || bigemail.RegisteredAt.IsZero() {
|
|
|
|
t.Error("Big Emails should be saved and fetched correctly")
|
|
|
|
}
|
|
|
|
}
|