dao_test.go 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package dao
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/library/conf/paladin"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.community.broadcast-service")
  16. flag.Set("conf_token", "0cb70f9480b77c89626931c31ad2b65b")
  17. flag.Set("tree_id", "39091")
  18. flag.Set("conf_version", "server-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/local")
  26. }
  27. flag.Parse()
  28. if err := paladin.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New()
  32. m.Run()
  33. d.Close()
  34. os.Exit(0)
  35. }
  36. func TestClose(t *testing.T) {
  37. convey.Convey("keyMidServer", t, func(ctx convey.C) {
  38. ctx.So(d.Ping(context.TODO()), convey.ShouldBeNil)
  39. })
  40. }