dao_test.go 746 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package dao
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/ugcpay/conf"
  6. "os"
  7. "testing"
  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.account.ugcpay-interface")
  15. flag.Set("conf_token", "e6b959f71772ec8207eb80b8a86137cc")
  16. flag.Set("tree_id", "63917")
  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/test.toml")
  25. }
  26. flag.Parse()
  27. if err := conf.Init(); err != nil {
  28. panic(err)
  29. }
  30. d = New(conf.Conf)
  31. d.Ping(context.Background())
  32. i := m.Run()
  33. d.Close()
  34. os.Exit(i)
  35. }