dao_test.go 698 B

1234567891011121314151617181920212223242526272829303132333435
  1. package message
  2. import (
  3. "flag"
  4. "go-common/app/service/main/assist/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", "main.archive.assist-service")
  14. flag.Set("conf_token", "6e0dae2c95d90ff8d0da53460ef11ae8")
  15. flag.Set("tree_id", "2084")
  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/assist-service.toml")
  24. }
  25. flag.Parse()
  26. if err := conf.Init(); err != nil {
  27. panic(err)
  28. }
  29. d = New(conf.Conf)
  30. m.Run()
  31. os.Exit(0)
  32. }