dao_test.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package space
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/app-interface/conf"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. dao *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.app-svr.app-interface")
  16. flag.Set("conf_token", "1mWvdEwZHmCYGoXJCVIdszBOPVdtpXb3")
  17. flag.Set("tree_id", "2688")
  18. flag.Set("conf_version", "docker-1")
  19. flag.Set("deploy_env", "uat")
  20. flag.Set("conf_host", "config.bilibili.co")
  21. flag.Set("conf_path", "/tmp")
  22. flag.Set("region", "sh")
  23. flag.Set("zone", "sh001")
  24. } else {
  25. flag.Set("conf", "../../cmd/app-interface-test.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. dao = New(conf.Conf)
  32. os.Exit(m.Run())
  33. // time.Sleep(time.Second)
  34. }
  35. // go test -conf="../../app-interface-test.toml" -v -test.run TestSetting
  36. func TestDao_Setting(t *testing.T) {
  37. Convey("TestSetting", t, func() {
  38. setting, err := dao.Setting(context.Background(), 2)
  39. So(setting, ShouldNotBeEmpty)
  40. So(err, ShouldBeNil)
  41. })
  42. }
  43. func TestDao_Blacklist(t *testing.T) {
  44. Convey("Blacklist", t, func() {
  45. gotFs, err := dao.Blacklist(context.Background())
  46. So(gotFs, ShouldBeEmpty)
  47. So(err, ShouldBeNil)
  48. })
  49. }
  50. func TestDao_Report(t *testing.T) {
  51. Convey("TestReport", t, func() {
  52. err := dao.Report(context.Background(), 1, "12", "123")
  53. So(err, ShouldNotBeNil)
  54. })
  55. }
  56. func TestDao_SpaceMob(t *testing.T) {
  57. Convey("SpaceMob", t, func() {
  58. gotMob, err := dao.SpaceMob(context.Background(), 1, 2, "", "")
  59. So(gotMob, ShouldBeNil)
  60. So(err, ShouldNotBeNil)
  61. })
  62. }