dao_test.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package dao
  2. import (
  3. "flag"
  4. "os"
  5. "strings"
  6. "testing"
  7. gock "gopkg.in/h2non/gock.v1"
  8. "go-common/app/interface/main/credit/conf"
  9. _ "github.com/go-sql-driver/mysql"
  10. // . "github.com/smartystreets/goconvey/convey"
  11. )
  12. var d *Dao
  13. // func CleanCache() {
  14. // c := context.TODO()
  15. // pool := redis.NewPool(conf.Conf.Redis.Config)
  16. // pool.Get(c).Do("FLUSHDB")
  17. // }
  18. func TestMain(m *testing.M) {
  19. if os.Getenv("DEPLOY_ENV") != "" {
  20. flag.Set("app_id", "main.account-law.credit")
  21. flag.Set("conf_appid", "main.account-law.credit")
  22. flag.Set("conf_token", "aX4znxOXioonmhCtY5Piod6XLCHDPUKt")
  23. flag.Set("tree_id", "5659")
  24. flag.Set("conf_version", "docker-1")
  25. flag.Set("deploy_env", "uat")
  26. flag.Set("conf_env", "10")
  27. flag.Set("conf_host", "config.bilibili.co")
  28. flag.Set("conf_path", "/tmp")
  29. flag.Set("region", "sh")
  30. flag.Set("zone", "sh001")
  31. } else {
  32. flag.Set("conf", "../cmd/credit-test.toml")
  33. }
  34. flag.Parse()
  35. if err := conf.Init(); err != nil {
  36. panic(err)
  37. }
  38. d = New(conf.Conf)
  39. d.client.SetTransport(gock.DefaultTransport)
  40. os.Exit(m.Run())
  41. }
  42. func httpMock(method, url string) *gock.Request {
  43. r := gock.New(url)
  44. r.Method = strings.ToUpper(method)
  45. return r
  46. }
  47. // func WithDao(f func(d *Dao)) func() {
  48. // return func() {
  49. // Reset(func() { CleanCache() })
  50. // f(d)
  51. // }
  52. // }
  53. // func WithMysql(f func(d *Dao)) func() {
  54. // return func() {
  55. // Reset(func() { CleanCache() })
  56. // f(d)
  57. // }
  58. // }
  59. // func WithCleanCache(f func()) func() {
  60. // return func() {
  61. // Reset(func() { CleanCache() })
  62. // }
  63. // }
  64. // func httpMock(method, url string) *gock.Request {
  65. // r := gock.New(url)
  66. // r.Method = strings.ToUpper(method)
  67. // return r
  68. // }
  69. // func ctx() context.Context {
  70. // return context.Background()
  71. // }