live_test.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package assist
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "testing"
  7. "go-common/app/interface/main/creative/model/assist"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. func TestAssistLiveStatus(t *testing.T) {
  11. var (
  12. c = context.TODO()
  13. mid = int64(0)
  14. ip = ""
  15. res = struct {
  16. Code int `json:"code"`
  17. }{
  18. Code: 0,
  19. }
  20. )
  21. convey.Convey("LiveStatus", t, func(ctx convey.C) {
  22. httpMock("GET", d.liveStatusURL+"?uid="+strconv.FormatInt(mid, 10)).Reply(0).JSON(res)
  23. ok, err := d.LiveStatus(c, mid, ip)
  24. ctx.Convey("Then err should be nil.ok should not be nil.", func(ctx convey.C) {
  25. ctx.So(err, convey.ShouldBeNil)
  26. ctx.So(ok, convey.ShouldNotBeNil)
  27. })
  28. })
  29. }
  30. var msgRes = struct {
  31. Code int `json:"code"`
  32. Message string `json:"message"`
  33. }{
  34. Code: 0,
  35. Message: "message",
  36. }
  37. func TestAssistLiveAddAssist(t *testing.T) {
  38. var (
  39. c = context.TODO()
  40. mid = int64(1)
  41. assistMid = int64(10)
  42. cookie = ""
  43. ip = ""
  44. params = url.Values{}
  45. )
  46. params.Set("admin", strconv.FormatInt(assistMid, 10))
  47. params.Set("anchor_id", strconv.FormatInt(mid, 10))
  48. convey.Convey("LiveAddAssist", t, func(ctx convey.C) {
  49. httpMock("POST", d.liveAddAssistURL+"?"+params.Encode()).
  50. Reply(0).JSON(msgRes)
  51. err := d.LiveAddAssist(c, mid, assistMid, cookie, ip)
  52. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  53. ctx.So(err, convey.ShouldBeNil)
  54. })
  55. })
  56. }
  57. func TestAssistLiveDelAssist(t *testing.T) {
  58. var (
  59. c = context.TODO()
  60. mid = int64(0)
  61. assistMid = int64(0)
  62. cookie = ""
  63. ip = ""
  64. params = url.Values{}
  65. )
  66. params.Set("admin", strconv.FormatInt(assistMid, 10))
  67. params.Set("anchor_id", strconv.FormatInt(mid, 10))
  68. convey.Convey("LiveDelAssist", t, func(ctx convey.C) {
  69. httpMock("POST", d.liveDelAssistURL+"?"+params.Encode()).Reply(0).JSON(msgRes)
  70. err := d.LiveDelAssist(c, mid, assistMid, cookie, ip)
  71. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldBeNil)
  73. })
  74. })
  75. }
  76. func TestAssistLiveBannedRevoc(t *testing.T) {
  77. var (
  78. c = context.TODO()
  79. mid = int64(0)
  80. banID = ""
  81. cookie = ""
  82. ip = ""
  83. params = url.Values{}
  84. )
  85. params.Set("uid", strconv.FormatInt(mid, 10))
  86. params.Set("id", banID)
  87. convey.Convey("LiveBannedRevoc", t, func(ctx convey.C) {
  88. httpMock("POST", d.liveRevocBannedURL+"?"+params.Encode()).Reply(200).JSON(msgRes)
  89. err := d.LiveBannedRevoc(c, mid, banID, cookie, ip)
  90. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  91. ctx.So(err, convey.ShouldBeNil)
  92. })
  93. })
  94. }
  95. func TestAssistLiveAssists(t *testing.T) {
  96. var (
  97. c = context.TODO()
  98. mid = int64(0)
  99. ip = ""
  100. params = url.Values{}
  101. res = struct {
  102. Code int `json:"code"`
  103. Data []*assist.LiveAssist `json:"data"`
  104. }{
  105. Code: 0,
  106. Data: []*assist.LiveAssist{
  107. {
  108. AssistMid: 0,
  109. RoomID: 0,
  110. CTime: 0,
  111. Datetime: "",
  112. },
  113. },
  114. }
  115. )
  116. params.Set("anchor_id", strconv.FormatInt(mid, 10))
  117. convey.Convey("LiveAssists", t, func(ctx convey.C) {
  118. httpMock("GET", d.liveAssistsURL+"?"+params.Encode()).Reply(200).JSON(res)
  119. assists, err := d.LiveAssists(c, mid, ip)
  120. ctx.Convey("Then err should be nil.assists should not be nil.", func(ctx convey.C) {
  121. ctx.So(err, convey.ShouldBeNil)
  122. ctx.So(assists, convey.ShouldNotBeNil)
  123. })
  124. })
  125. }
  126. func TestAssistLiveCheckAssist(t *testing.T) {
  127. var (
  128. c = context.TODO()
  129. mid = int64(0)
  130. assistMid = int64(0)
  131. ip = ""
  132. params = url.Values{}
  133. res = struct {
  134. Code int `json:"code"`
  135. }{
  136. Code: 0,
  137. }
  138. )
  139. params.Set("uid", strconv.FormatInt(assistMid, 10))
  140. params.Set("anchor_id", strconv.FormatInt(mid, 10))
  141. convey.Convey("LiveCheckAssist", t, func(ctx convey.C) {
  142. httpMock("POST", d.liveCheckAssURL+"?"+params.Encode()).Reply(200).JSON(res)
  143. isAss, err := d.LiveCheckAssist(c, mid, assistMid, ip)
  144. ctx.Convey("Then err should be nil.isAss should not be nil.", func(ctx convey.C) {
  145. ctx.So(err, convey.ShouldBeNil)
  146. ctx.So(isAss, convey.ShouldNotBeNil)
  147. })
  148. })
  149. }