123456789101112131415161718192021222324252627282930313233343536373839 |
- package mc
- import (
- "context"
- "flag"
- "fmt"
- "os"
- "testing"
- "go-common/app/admin/main/aegis/conf"
- )
- var (
- d *Dao
- ctx context.Context
- )
- func TestMain(m *testing.M) {
- if os.Getenv("DEPLOY_ENV") != "" {
- flag.Set("app_id", "main.archive.aegis-admin")
- flag.Set("conf_token", "cad913269be022e1eb8c45a8d5408d78")
- flag.Set("tree_id", "60977")
- flag.Set("conf_version", "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")
- } else {
- flag.Set("conf", "../../cmd/aegis-admin.toml")
- }
- flag.Parse()
- if err := conf.Init(); err != nil {
- panic(fmt.Sprintf("conf.Init() error(%v)", err))
- }
- d = New(conf.Conf)
- ctx = context.TODO()
- os.Exit(m.Run())
- }
|