dao_test.go 964 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package data
  2. import (
  3. "flag"
  4. "os"
  5. "strings"
  6. "testing"
  7. "go-common/app/admin/main/up/conf"
  8. "gopkg.in/h2non/gock.v1"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.archive.up-admin")
  16. flag.Set("conf_token", "930697bb7def4df0713ef8080596b863")
  17. flag.Set("tree_id", "36438")
  18. flag.Set("conf_version", "1")
  19. flag.Set("deploy_env", "uat")
  20. flag.Set("conf_host", "config.bilibili.co")
  21. flag.Set("conf_path", "/tmp")
  22. flag.Set("region", "sh")
  23. flag.Set("zone", "sh001")
  24. } else {
  25. flag.Set("conf", "../../cmd/up-admin.toml")
  26. }
  27. if os.Getenv("UT_LOCAL_TEST") != "" {
  28. flag.Set("conf", "../../cmd/up-admin.toml")
  29. }
  30. flag.Parse()
  31. if err := conf.Init(); err != nil {
  32. panic(err)
  33. }
  34. d = New(conf.Conf)
  35. d.client.SetTransport(gock.DefaultTransport)
  36. os.Exit(m.Run())
  37. }
  38. func httpMock(method, url string) *gock.Request {
  39. r := gock.New(url)
  40. r.Method = strings.ToUpper(method)
  41. return r
  42. }