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.
71 lines
1.6 KiB
71 lines
1.6 KiB
package space |
|
|
|
import ( |
|
"context" |
|
"flag" |
|
"os" |
|
"testing" |
|
|
|
"go-common/app/interface/main/app-interface/conf" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
var ( |
|
dao *Dao |
|
) |
|
|
|
func TestMain(m *testing.M) { |
|
if os.Getenv("DEPLOY_ENV") != "" { |
|
flag.Set("app_id", "main.app-svr.app-interface") |
|
flag.Set("conf_token", "1mWvdEwZHmCYGoXJCVIdszBOPVdtpXb3") |
|
flag.Set("tree_id", "2688") |
|
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/app-interface-test.toml") |
|
} |
|
flag.Parse() |
|
if err := conf.Init(); err != nil { |
|
panic(err) |
|
} |
|
dao = New(conf.Conf) |
|
os.Exit(m.Run()) |
|
// time.Sleep(time.Second) |
|
} |
|
|
|
// go test -conf="../../app-interface-test.toml" -v -test.run TestSetting |
|
func TestDao_Setting(t *testing.T) { |
|
Convey("TestSetting", t, func() { |
|
setting, err := dao.Setting(context.Background(), 2) |
|
So(setting, ShouldNotBeEmpty) |
|
So(err, ShouldBeNil) |
|
}) |
|
} |
|
|
|
func TestDao_Blacklist(t *testing.T) { |
|
Convey("Blacklist", t, func() { |
|
gotFs, err := dao.Blacklist(context.Background()) |
|
So(gotFs, ShouldBeEmpty) |
|
So(err, ShouldBeNil) |
|
}) |
|
} |
|
|
|
func TestDao_Report(t *testing.T) { |
|
Convey("TestReport", t, func() { |
|
err := dao.Report(context.Background(), 1, "12", "123") |
|
So(err, ShouldNotBeNil) |
|
}) |
|
} |
|
|
|
func TestDao_SpaceMob(t *testing.T) { |
|
Convey("SpaceMob", t, func() { |
|
gotMob, err := dao.SpaceMob(context.Background(), 1, 2, "", "") |
|
So(gotMob, ShouldBeNil) |
|
So(err, ShouldNotBeNil) |
|
}) |
|
}
|
|
|