dao_test.go 767 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package archive
  2. import (
  3. "flag"
  4. "os"
  5. "path/filepath"
  6. "testing"
  7. "go-common/app/service/main/videoup/conf"
  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.archive.videoup-service")
  15. flag.Set("conf_token", "4b62721602981eb3635dba3b0d866ac5")
  16. flag.Set("tree_id", "2308")
  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. dir, _ := filepath.Abs("../../cmd/videoup-service.toml")
  25. flag.Set("conf", dir)
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. //conf.Init()
  32. d = New(conf.Conf)
  33. m.Run()
  34. os.Exit(0)
  35. }