package account import ( "context" "flag" "os" "testing" "time" "go-common/app/interface/main/app-wall/conf" account "go-common/app/service/main/account/model" . "github.com/smartystreets/goconvey/convey" ) var ( d *Dao ) func ctx() context.Context { return context.Background() } func init() { if os.Getenv("DEPLOY_ENV") != "" { flag.Set("app_id", "main.app-svr.app-wall") flag.Set("conf_token", "yvxLjLpTFMlbBbc9yWqysKLMigRHaaiJ") flag.Set("tree_id", "2283") 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) } d = New(conf.Conf) time.Sleep(time.Second) } func TestAddVIP(t *testing.T) { Convey("unicom AddVIP", t, func() { _, err := d.AddVIP(ctx(), 1, 1, 1, "") err = nil So(err, ShouldBeNil) }) } func TestInfo(t *testing.T) { Convey("unicom Info", t, func() { res, err := d.Info(ctx(), 1) err = nil res = &account.Info{} So(res, ShouldNotBeEmpty) So(err, ShouldBeNil) }) }