dao_test.go 687 B

12345678910111213141516171819202122232425262728293031323334
  1. package dao
  2. import (
  3. "flag"
  4. "go-common/app/service/video/stream-mng/conf"
  5. "os"
  6. "testing"
  7. )
  8. var (
  9. d *Dao
  10. )
  11. func TestMain(m *testing.M) {
  12. if os.Getenv("DEPLOY_ENV") != "" {
  13. flag.Set("app_id", "video.live.stream-mng")
  14. flag.Set("conf_token", "a5640e59138e6b1845f802b6b7dcd348")
  15. flag.Set("tree_id", "62771")
  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. } else {
  23. flag.Set("conf", "../cmd/stream-mng.toml")
  24. }
  25. flag.Parse()
  26. if err := conf.Init(); err != nil {
  27. panic(err)
  28. }
  29. d = New(conf.Conf)
  30. os.Exit(m.Run())
  31. }