dao_test.go 824 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package recommend
  2. import (
  3. "flag"
  4. "go-common/app/interface/main/app-intl/conf"
  5. "os"
  6. "testing"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. var (
  10. d *Dao
  11. )
  12. func TestMain(m *testing.M) {
  13. if os.Getenv("DEPLOY_ENV") != "" {
  14. flag.Set("app_id", "main.app-svr.app-intl")
  15. flag.Set("conf_token", "02007e8d0f77d31baee89acb5ce6d3ac")
  16. flag.Set("tree_id", "64518")
  17. flag.Set("conf_version", "docker-1")
  18. flag.Set("deploy_env", "uat")
  19. flag.Set("conf_host", "config.bilibili.co")
  20. flag.Set("conf_path", "/tmp")
  21. flag.Set("region", "sh")
  22. flag.Set("zone", "sh001")
  23. } else {
  24. flag.Set("conf", "../../cmd/app-intl-test.toml")
  25. }
  26. flag.Parse()
  27. if err := conf.Init(); err != nil {
  28. panic(err)
  29. }
  30. d = New(conf.Conf)
  31. os.Exit(m.Run())
  32. }
  33. func TestClose(t *testing.T) {
  34. Convey(t.Name(), t, func() {
  35. d.Close()
  36. })
  37. }