dao_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package data
  2. import (
  3. "context"
  4. "flag"
  5. "go-common/app/interface/main/creative/conf"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/log"
  8. "os"
  9. "reflect"
  10. "strings"
  11. "testing"
  12. "github.com/bouk/monkey"
  13. "github.com/smartystreets/goconvey/convey"
  14. gock "gopkg.in/h2non/gock.v1"
  15. )
  16. var (
  17. d *Dao
  18. )
  19. func TestMain(m *testing.M) {
  20. if os.Getenv("DEPLOY_ENV") != "" {
  21. flag.Set("app_id", "main.archive.creative")
  22. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  23. flag.Set("tree_id", "2305")
  24. flag.Set("conf_version", "docker-1")
  25. flag.Set("deploy_env", "uat")
  26. flag.Set("conf_host", "config.bilibili.co")
  27. flag.Set("conf_path", "/tmp")
  28. flag.Set("region", "sh")
  29. flag.Set("zone", "sh001")
  30. } else {
  31. flag.Set("conf", "../../cmd/creative.toml")
  32. }
  33. flag.Parse()
  34. if err := conf.Init(); err != nil {
  35. panic(err)
  36. }
  37. d = New(conf.Conf)
  38. m.Run()
  39. os.Exit(0)
  40. }
  41. func httpMock(method, url string) *gock.Request {
  42. r := gock.New(url)
  43. r.Method = strings.ToUpper(method)
  44. d.client.SetTransport(gock.DefaultTransport)
  45. d.statClient.SetTransport(gock.DefaultTransport)
  46. return r
  47. }
  48. func TestStat(t *testing.T) {
  49. var (
  50. c = context.TODO()
  51. mid = int64(1)
  52. ip = "127.0.0.1"
  53. dt = "iamdt"
  54. )
  55. convey.Convey("TestStat1", t, func(ctx convey.C) {
  56. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  57. return memcache.MockWith(memcache.ErrNotFound)
  58. })
  59. defer connGuard.Unpatch()
  60. _, err := d.Stat(c, ip, mid)
  61. ctx.Convey("Then err should be nil.stat should not be nil.", func(ctx convey.C) {
  62. ctx.So(err, convey.ShouldNotBeNil)
  63. })
  64. })
  65. convey.Convey("TestStat2", t, func(ctx convey.C) {
  66. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  67. return memcache.MockWith(memcache.ErrNotFound)
  68. })
  69. defer connGuard.Unpatch()
  70. _, err := d.UpStat(c, mid, dt)
  71. ctx.Convey("Then err should be nil.stat should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldNotBeNil)
  73. })
  74. })
  75. convey.Convey("Ping", t, func(ctx convey.C) {
  76. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  77. return memcache.MockWith(memcache.ErrNotFound)
  78. })
  79. defer connGuard.Unpatch()
  80. err := d.Ping(c)
  81. ctx.Convey("Then err should be nil.stat should not be nil.", func(ctx convey.C) {
  82. ctx.So(err, convey.ShouldNotBeNil)
  83. })
  84. })
  85. convey.Convey("Close", t, func(ctx convey.C) {
  86. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Close", func(_ *memcache.Pool) error {
  87. return nil
  88. })
  89. defer connGuard.Unpatch()
  90. err := d.Close()
  91. ctx.Convey("Then err should be nil.stat should not be nil.", func(ctx convey.C) {
  92. ctx.So(err, convey.ShouldBeNil)
  93. })
  94. })
  95. convey.Convey("AddCache", t, func(ctx convey.C) {
  96. d.AddCache(func() {
  97. log.Error("d.AddCache")
  98. })
  99. })
  100. }