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.
32 lines
650 B
32 lines
650 B
package dao |
|
|
|
import ( |
|
"flag" |
|
"os" |
|
"testing" |
|
|
|
"go-common/app/job/main/dm2/conf" |
|
"go-common/library/log" |
|
) |
|
|
|
var testDao *Dao |
|
|
|
func TestMain(m *testing.M) { |
|
flag.Set("app_id", "main.community.dm2-job") |
|
flag.Set("conf_token", "m7xxj8RU7YxRK0fmRocmD9SoGUGzsZSA") |
|
flag.Set("tree_id", "5391") |
|
flag.Set("conf_version", "docker-1") |
|
flag.Set("deploy_env", "uat") |
|
flag.Set("conf_host", "config.bilibili.co") |
|
flag.Set("conf_path", "/tmp") |
|
flag.Set("region", "sh") |
|
flag.Set("zone", "sh001") |
|
flag.Parse() |
|
if err := conf.Init(); err != nil { |
|
panic(err) |
|
} |
|
log.Init(conf.Conf.Xlog) |
|
defer log.Close() |
|
testDao = New(conf.Conf) |
|
os.Exit(m.Run()) |
|
}
|
|
|