gorm/dialects/mysql/mysql_test.go

36 lines
626 B
Go
Raw Normal View History

2020-02-02 03:35:01 +03:00
package mysql_test
import (
2020-02-22 18:08:20 +03:00
"fmt"
2020-02-23 07:39:26 +03:00
"os"
2020-02-02 03:35:01 +03:00
"testing"
"github.com/jinzhu/gorm"
"github.com/jinzhu/gorm/dialects/mysql"
2020-02-22 18:08:20 +03:00
"github.com/jinzhu/gorm/tests"
2020-02-02 03:35:01 +03:00
)
2020-02-22 18:08:20 +03:00
var (
DB *gorm.DB
err error
)
func init() {
2020-03-12 03:39:42 +03:00
dsn := "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
2020-02-23 07:39:26 +03:00
if os.Getenv("GORM_DSN") != "" {
dsn = os.Getenv("GORM_DSN")
}
if DB, err = gorm.Open(mysql.Open(dsn), &gorm.Config{}); err != nil {
2020-02-22 18:08:20 +03:00
panic(fmt.Sprintf("failed to initialize database, got error %v", err))
}
}
func TestCURD(t *testing.T) {
tests.RunTestsSuit(t, DB)
}
func TestMigrate(t *testing.T) {
tests.TestMigrate(t, DB)
}