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.
52 lines
1.1 KiB
52 lines
1.1 KiB
package redis |
|
|
|
import ( |
|
"context" |
|
"flag" |
|
"fmt" |
|
"os" |
|
"testing" |
|
|
|
"go-common/app/admin/main/aegis/conf" |
|
|
|
"github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
var ( |
|
d *Dao |
|
cntx 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) |
|
cntx = context.TODO() |
|
os.Exit(m.Run()) |
|
} |
|
|
|
func TestRedisPing(t *testing.T) { |
|
convey.Convey("Ping", t, func(ctx convey.C) { |
|
ctx.Convey("When everything goes positive", func(ctx convey.C) { |
|
err := d.Ping(cntx) |
|
ctx.Convey("Then err should be nil.", func(ctx convey.C) { |
|
ctx.So(err, convey.ShouldBeNil) |
|
}) |
|
}) |
|
}) |
|
}
|
|
|