dao_test.go 641 B

12345678910111213141516171819202122232425262728293031323334
  1. package dao
  2. import (
  3. "flag"
  4. "os"
  5. "testing"
  6. "go-common/app/job/main/member-cache/conf"
  7. )
  8. var (
  9. d *Dao
  10. )
  11. func TestMain(m *testing.M) {
  12. if os.Getenv("DEPLOY_ENV") != "" {
  13. flag.Set("app_id", "main.account.member-cache-job")
  14. flag.Set("conf_token", "31291cb6cd6b252ff27bf58d7fec72a6")
  15. flag.Set("tree_id", "56587")
  16. flag.Set("conf_version", "docker-1")
  17. flag.Set("deploy_env", "uat")
  18. flag.Set("conf_host", "config.bilibili.co")
  19. flag.Set("conf_path", "/tmp")
  20. flag.Set("region", "sh")
  21. flag.Set("zone", "sh001")
  22. }
  23. flag.Parse()
  24. if err := conf.Init(); err != nil {
  25. panic(err)
  26. }
  27. d = New(conf.Conf)
  28. m.Run()
  29. os.Exit(0)
  30. }