dao_test.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package faq
  2. import (
  3. "context"
  4. "encoding/json"
  5. "errors"
  6. "flag"
  7. "go-common/app/interface/main/creative/conf"
  8. "go-common/app/interface/main/creative/model/faq"
  9. "go-common/library/cache/redis"
  10. "go-common/library/ecode"
  11. "os"
  12. "reflect"
  13. "strings"
  14. "testing"
  15. "github.com/bouk/monkey"
  16. "github.com/smartystreets/goconvey/convey"
  17. gock "gopkg.in/h2non/gock.v1"
  18. )
  19. var (
  20. d *Dao
  21. errConnClosed = errors.New("redigo: connection closed")
  22. )
  23. func TestMain(m *testing.M) {
  24. if os.Getenv("DEPLOY_ENV") != "" {
  25. flag.Set("app_id", "main.archive.creative")
  26. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  27. flag.Set("tree_id", "2305")
  28. flag.Set("conf_version", "docker-1")
  29. flag.Set("deploy_env", "uat")
  30. flag.Set("conf_host", "config.bilibili.co")
  31. flag.Set("conf_path", "/tmp")
  32. flag.Set("region", "sh")
  33. flag.Set("zone", "sh001")
  34. } else {
  35. flag.Set("conf", "../../cmd/creative.toml")
  36. }
  37. flag.Parse()
  38. if err := conf.Init(); err != nil {
  39. panic(err)
  40. }
  41. d = New(conf.Conf)
  42. m.Run()
  43. os.Exit(0)
  44. }
  45. func httpMock(method, url string) *gock.Request {
  46. r := gock.New(url)
  47. r.Method = strings.ToUpper(method)
  48. d.client.SetTransport(gock.DefaultTransport)
  49. return r
  50. }
  51. func TestFaqDetail(t *testing.T) {
  52. var (
  53. qTypeID string
  54. keyFlag, pn, ps int
  55. c = context.TODO()
  56. err error
  57. res struct {
  58. Code string `json:"retCode"`
  59. Data []*faq.Detail `json:"items"`
  60. Total int `json:"totalCount"`
  61. }
  62. data []*faq.Detail
  63. total int
  64. )
  65. convey.Convey("1", t, func(ctx convey.C) {
  66. defer gock.OffAll()
  67. httpMock("GET", d.searchURL).Reply(-502)
  68. data, total, err = d.Detail(c, qTypeID, keyFlag, pn, ps)
  69. ctx.Convey("1", func(ctx convey.C) {
  70. ctx.So(err, convey.ShouldNotBeNil)
  71. ctx.So(err, convey.ShouldEqual, ecode.HelpDetailError)
  72. ctx.So(total, convey.ShouldBeZeroValue)
  73. })
  74. })
  75. convey.Convey("2", t, func(ctx convey.C) {
  76. res.Code = "000000"
  77. res.Data = make([]*faq.Detail, 0)
  78. res.Total = 100
  79. js, _ := json.Marshal(res)
  80. defer gock.OffAll()
  81. httpMock("GET", d.searchURL).Reply(200).JSON(string(js))
  82. data, total, err = d.Detail(c, qTypeID, keyFlag, pn, ps)
  83. ctx.Convey("2", func(ctx convey.C) {
  84. ctx.So(err, convey.ShouldBeNil)
  85. ctx.So(data, convey.ShouldNotBeNil)
  86. ctx.So(total, convey.ShouldEqual, 100)
  87. })
  88. })
  89. convey.Convey("2", t, func(ctx convey.C) {
  90. res.Code = "0000001"
  91. res.Data = make([]*faq.Detail, 0)
  92. res.Total = 100
  93. js, _ := json.Marshal(res)
  94. defer gock.OffAll()
  95. httpMock("GET", d.searchURL).Reply(200).JSON(string(js))
  96. data, total, err = d.Detail(c, qTypeID, keyFlag, pn, ps)
  97. ctx.Convey("2", func(ctx convey.C) {
  98. ctx.So(data, convey.ShouldBeNil)
  99. ctx.So(err, convey.ShouldEqual, ecode.HelpDetailError)
  100. ctx.So(total, convey.ShouldEqual, 0)
  101. })
  102. })
  103. }
  104. func TestFaqDetailCache(t *testing.T) {
  105. var (
  106. qTypeID = "faq_id"
  107. keyFlag, pn, ps = int(1), int(1), int(10)
  108. c = context.TODO()
  109. err error
  110. data []*faq.Detail
  111. total int
  112. )
  113. convey.Convey("1", t, func(ctx convey.C) {
  114. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.redis), "Get", func(_ *redis.Pool, _ context.Context) redis.Conn {
  115. return redis.MockWith(errConnClosed)
  116. })
  117. defer connGuard.Unpatch()
  118. data, total, err = d.DetailCache(c, qTypeID, keyFlag, pn, ps)
  119. ctx.Convey("1", func(ctx convey.C) {
  120. ctx.So(err, convey.ShouldNotBeNil)
  121. ctx.So(total, convey.ShouldBeZeroValue)
  122. ctx.So(data, convey.ShouldBeNil)
  123. })
  124. })
  125. convey.Convey("2", t, func(ctx convey.C) {
  126. connGuard := monkey.Patch(redis.Values, func(_ interface{}, _ error) ([]interface{}, error) {
  127. detail := &faq.Detail{}
  128. data, _ := json.Marshal(detail)
  129. res := []interface{}{
  130. data,
  131. }
  132. return res, nil
  133. })
  134. defer connGuard.Unpatch()
  135. data, total, err = d.DetailCache(c, qTypeID, keyFlag, pn, ps)
  136. ctx.Convey("2", func(ctx convey.C) {
  137. ctx.So(err, convey.ShouldNotBeNil)
  138. ctx.So(total, convey.ShouldBeZeroValue)
  139. ctx.So(data, convey.ShouldBeNil)
  140. })
  141. })
  142. }
  143. func TestFaqSetDetailCache(t *testing.T) {
  144. var (
  145. qTypeID = "faq_id"
  146. keyFlag, pn, ps = int(1), int(1), int(10)
  147. c = context.TODO()
  148. err error
  149. data = make([]*faq.Detail, 0)
  150. total int
  151. )
  152. convey.Convey("1", t, func(ctx convey.C) {
  153. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.redis), "Get", func(_ *redis.Pool, _ context.Context) redis.Conn {
  154. return redis.MockWith(errConnClosed)
  155. })
  156. defer connGuard.Unpatch()
  157. err = d.SetDetailCache(c, qTypeID, keyFlag, pn, ps, total, data)
  158. ctx.Convey("1", func(ctx convey.C) {
  159. ctx.So(err, convey.ShouldNotBeNil)
  160. })
  161. })
  162. convey.Convey("2", t, func(ctx convey.C) {
  163. data = append(data, &faq.Detail{})
  164. err = d.SetDetailCache(c, qTypeID, keyFlag, pn, ps, total, data)
  165. ctx.Convey("2", func(ctx convey.C) {
  166. ctx.So(err, convey.ShouldBeNil)
  167. })
  168. })
  169. // convey.Convey("2", t, func(ctx convey.C) {
  170. // connGuard := monkey.Patch(redis.Values, func(_ interface{}, _ error) ([]interface{}, error) {
  171. // detail := &faq.Detail{}
  172. // data, _ := json.Marshal(detail)
  173. // res := []interface{}{
  174. // data,
  175. // }
  176. // return res, nil
  177. // })
  178. // defer connGuard.Unpatch()
  179. // data, total, err = d.DetailCache(c, qTypeID, keyFlag, pn, ps)
  180. // ctx.Convey("2", func(ctx convey.C) {
  181. // ctx.So(err, convey.ShouldNotBeNil)
  182. // ctx.So(total, convey.ShouldBeZeroValue)
  183. // ctx.So(data, convey.ShouldBeNil)
  184. // })
  185. // })
  186. }