You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
69 lines
1.3 KiB
package blocked |
|
|
|
import ( |
|
"context" |
|
"flag" |
|
"os" |
|
"testing" |
|
|
|
"go-common/app/admin/main/credit/conf" |
|
_ "go-common/library/database/orm" |
|
|
|
_ "github.com/jinzhu/gorm" |
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
var d *Dao |
|
|
|
func TestMain(m *testing.M) { |
|
if os.Getenv("DEPLOY_ENV") != "" { |
|
flag.Set("app_id", "main.account-law.credit-admin") |
|
flag.Set("conf_appid", "main.account-law.credit-admin") |
|
flag.Set("conf_token", "eKmbn2M4jvSyyjMEOywLFOQlX5ggRG9x") |
|
flag.Set("tree_id", "5885") |
|
flag.Set("conf_version", "docker-1") |
|
flag.Set("deploy_env", "uat") |
|
flag.Set("conf_env", "10") |
|
flag.Set("conf_host", "config.bilibili.co") |
|
flag.Set("conf_path", "/tmp") |
|
flag.Set("region", "sh") |
|
flag.Set("zone", "sh001") |
|
} else { |
|
flag.Set("conf", "../../cmd/convey-test.toml") |
|
} |
|
flag.Parse() |
|
if err := conf.Init(); err != nil { |
|
panic(err) |
|
} |
|
d = New(conf.Conf) |
|
os.Exit(m.Run()) |
|
} |
|
|
|
func WithDao(f func(d *Dao)) func() { |
|
return func() { |
|
f(d) |
|
} |
|
} |
|
|
|
func WithMysql(f func(d *Dao)) func() { |
|
return func() { |
|
f(d) |
|
} |
|
} |
|
|
|
func ctx() context.Context { |
|
return context.Background() |
|
} |
|
|
|
func Test_initORM(t *testing.T) { |
|
Convey("not need return", t, func() { |
|
d.initORM() |
|
}) |
|
} |
|
|
|
func Test_Ping(t *testing.T) { |
|
Convey("return someting", t, func() { |
|
err := d.Ping(context.TODO()) |
|
So(err, ShouldBeNil) |
|
}) |
|
}
|
|
|