12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package cache
- import (
- "flag"
- "os"
- "testing"
- "go-common/app/interface/main/mcn/conf"
- "github.com/smartystreets/goconvey/convey"
- )
- func TestMain(m *testing.M) {
- if os.Getenv("DEPLOY_ENV") != "" {
- flag.Set("app_id", "main.archive.mcn-interface")
- flag.Set("conf_token", "49e4671bafbf93059aeb602685052ca0")
- flag.Set("tree_id", "58909")
- 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")
- } else {
- flag.Set("conf", "../../cmd/mcn-interface.toml")
- }
- if os.Getenv("UT_LOCAL_TEST") != "" {
- flag.Set("conf", "../../cmd/mcn-interface.toml")
- }
- flag.Parse()
- if err := conf.Init(); err != nil {
- panic(err)
- }
- os.Exit(m.Run())
- }
- func TestCacheLoadCache(t *testing.T) {
- convey.Convey("LoadCache", t, func(ctx convey.C) {
- ctx.Convey("When everything goes positive", func(ctx convey.C) {
- LoadCache()
- ctx.Convey("No return values", func(ctx convey.C) {
- })
- })
- })
- }
|