dao_test.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package reply
  2. import (
  3. "context"
  4. "encoding/json"
  5. "flag"
  6. "go-common/app/interface/main/creative/conf"
  7. "go-common/app/interface/main/creative/model/reply"
  8. "os"
  9. "strings"
  10. "testing"
  11. "github.com/smartystreets/goconvey/convey"
  12. gock "gopkg.in/h2non/gock.v1"
  13. )
  14. var (
  15. d *Dao
  16. )
  17. func httpMock(method, url string) *gock.Request {
  18. r := gock.New(url)
  19. r.Method = strings.ToUpper(method)
  20. d.client.SetTransport(gock.DefaultTransport)
  21. return r
  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 TestReplyMinfo(t *testing.T) {
  46. var (
  47. c = context.TODO()
  48. err error
  49. ak, ck string
  50. mid, tp int64
  51. DeriveIds, DeriveOids []int64
  52. ip string
  53. data = make(map[int64]*reply.Reply)
  54. res = &struct {
  55. Code int `json:"code"`
  56. Data map[int64]*reply.Reply `json:"data"`
  57. }{}
  58. )
  59. convey.Convey("1", t, func(ctx convey.C) {
  60. defer gock.OffAll()
  61. httpMock("Get", d.replyMinfoURI).Reply(-502)
  62. data, err = d.ReplyMinfo(c, ak, ck, mid, tp, DeriveIds, DeriveOids, ip)
  63. ctx.Convey("1", func(ctx convey.C) {
  64. ctx.So(err, convey.ShouldNotBeNil)
  65. ctx.So(data, convey.ShouldBeNil)
  66. })
  67. })
  68. convey.Convey("2", t, func(ctx convey.C) {
  69. defer gock.OffAll()
  70. js, _ := json.Marshal(res)
  71. httpMock("Get", d.replyMinfoURI).Reply(200).JSON(string(js))
  72. data, err = d.ReplyMinfo(c, ak, ck, mid, tp, DeriveIds, DeriveOids, ip)
  73. ctx.Convey("2", func(ctx convey.C) {
  74. ctx.So(err, convey.ShouldBeNil)
  75. ctx.So(data, convey.ShouldBeNil)
  76. })
  77. })
  78. convey.Convey("3", t, func(ctx convey.C) {
  79. defer gock.OffAll()
  80. res.Code = 20001
  81. js, _ := json.Marshal(res)
  82. httpMock("Get", d.replyMinfoURI).Reply(200).JSON(string(js))
  83. data, err = d.ReplyMinfo(c, ak, ck, mid, tp, DeriveIds, DeriveOids, ip)
  84. ctx.Convey("3", func(ctx convey.C) {
  85. ctx.So(err, convey.ShouldNotBeNil)
  86. ctx.So(data, convey.ShouldBeNil)
  87. })
  88. })
  89. }
  90. func TestReplyRecover(t *testing.T) {
  91. var (
  92. c = context.TODO()
  93. err error
  94. mid, oid, rpid int64
  95. ip string
  96. res = &struct {
  97. Code int `json:"code"`
  98. }{}
  99. )
  100. convey.Convey("1", t, func(ctx convey.C) {
  101. defer gock.OffAll()
  102. httpMock("Post", d.replyRecoverURI).Reply(-502)
  103. err = d.ReplyRecover(c, mid, oid, rpid, ip)
  104. ctx.Convey("1", func(ctx convey.C) {
  105. ctx.So(err, convey.ShouldNotBeNil)
  106. })
  107. })
  108. convey.Convey("2", t, func(ctx convey.C) {
  109. defer gock.OffAll()
  110. js, _ := json.Marshal(res)
  111. httpMock("Post", d.replyRecoverURI).Reply(200).JSON(string(js))
  112. err = d.ReplyRecover(c, mid, oid, rpid, ip)
  113. ctx.Convey("2", func(ctx convey.C) {
  114. ctx.So(err, convey.ShouldBeNil)
  115. })
  116. })
  117. convey.Convey("3", t, func(ctx convey.C) {
  118. defer gock.OffAll()
  119. res.Code = 20001
  120. js, _ := json.Marshal(res)
  121. httpMock("Post", d.replyRecoverURI).Reply(200).JSON(string(js))
  122. err = d.ReplyRecover(c, mid, oid, rpid, ip)
  123. ctx.Convey("3", func(ctx convey.C) {
  124. ctx.So(err, convey.ShouldNotBeNil)
  125. })
  126. })
  127. }