assist_test.go 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. package assist
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/assist"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestAssistAssists(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. mid = int64(0)
  12. ip = ""
  13. )
  14. convey.Convey("Assists", t, func(ctx convey.C) {
  15. var res = struct {
  16. Code int `json:"code"`
  17. Data []*assist.Assist `json:"data"`
  18. }{
  19. Code: 0,
  20. Data: []*assist.Assist{
  21. {
  22. AssistMid: 1,
  23. Banned: 1,
  24. },
  25. },
  26. }
  27. httpMock("GET", d.assistListURL).Reply(200).JSON(res)
  28. assists, err := d.Assists(c, mid, ip)
  29. ctx.Convey("Then err should be nil.assists should not be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldBeNil)
  31. ctx.So(assists, convey.ShouldNotBeNil)
  32. })
  33. })
  34. }
  35. var assLogRes = struct {
  36. Code int `json:"code"`
  37. Data *assist.AssistLog `json:"data"`
  38. }{
  39. Code: 0,
  40. Data: &assist.AssistLog{
  41. ID: 1,
  42. Mid: 0,
  43. AssistMid: 0,
  44. AssistAvatar: "",
  45. AssistName: "",
  46. Type: 0,
  47. Action: 0,
  48. SubjectID: 0,
  49. ObjectID: "",
  50. Detail: "",
  51. State: 0,
  52. CTime: 0,
  53. },
  54. }
  55. func TestAssistAssistLog(t *testing.T) {
  56. var (
  57. c = context.TODO()
  58. mid = int64(0)
  59. assistMid = int64(0)
  60. logID = int64(0)
  61. ip = ""
  62. )
  63. convey.Convey("AssistLog", t, func(ctx convey.C) {
  64. httpMock("GET", d.assistLogInfoURL).Reply(200).JSON(assLogRes)
  65. assistLog, err := d.AssistLog(c, mid, assistMid, logID, ip)
  66. ctx.Convey("Then err should be nil.assistLog should not be nil.", func(ctx convey.C) {
  67. ctx.So(err, convey.ShouldBeNil)
  68. ctx.So(assistLog, convey.ShouldNotBeNil)
  69. })
  70. })
  71. }
  72. func TestAssistAssistLogs(t *testing.T) {
  73. var (
  74. c = context.TODO()
  75. mid = int64(0)
  76. assistMid = int64(0)
  77. pn = int64(0)
  78. ps = int64(0)
  79. stime = int64(0)
  80. etime = int64(0)
  81. ip = ""
  82. res = struct {
  83. Code int `json:"code"`
  84. Data []*assist.AssistLog `json:"data"`
  85. Pager map[string]int64 `json:"pager"`
  86. }{
  87. Code: 0,
  88. Data: []*assist.AssistLog{
  89. {
  90. ID: 0,
  91. Mid: 0,
  92. AssistMid: 0,
  93. AssistAvatar: "",
  94. AssistName: "",
  95. Type: 0,
  96. Action: 0,
  97. SubjectID: 0,
  98. ObjectID: "",
  99. Detail: "",
  100. State: 0,
  101. CTime: 0,
  102. },
  103. },
  104. Pager: map[string]int64{
  105. "pn": 1,
  106. "ps": 10,
  107. },
  108. }
  109. )
  110. convey.Convey("AssistLogs", t, func(ctx convey.C) {
  111. httpMock("GET", d.assistLogsURL).Reply(200).JSON(res)
  112. logs, pager, err := d.AssistLogs(c, mid, assistMid, pn, ps, stime, etime, ip)
  113. ctx.Convey("Then err should be nil.logs,pager should not be nil.", func(ctx convey.C) {
  114. ctx.So(err, convey.ShouldBeNil)
  115. ctx.So(pager, convey.ShouldNotBeNil)
  116. ctx.So(logs, convey.ShouldNotBeNil)
  117. })
  118. })
  119. }
  120. func TestAssistAddAssist(t *testing.T) {
  121. var (
  122. c = context.TODO()
  123. mid = int64(0)
  124. assistMid = int64(0)
  125. ip = "127.0.0.1"
  126. upUname = "12"
  127. )
  128. convey.Convey("AddAssist", t, func(ctx convey.C) {
  129. httpMock("POST", d.assistAddURL).Reply(200).JSON(`{"code":0}`)
  130. err := d.AddAssist(c, mid, assistMid, ip, upUname)
  131. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  132. ctx.So(err, convey.ShouldBeNil)
  133. })
  134. })
  135. }
  136. func TestAssistDelAssist(t *testing.T) {
  137. var (
  138. c = context.TODO()
  139. mid = int64(0)
  140. assistMid = int64(0)
  141. ip = ""
  142. upUname = ""
  143. )
  144. convey.Convey("DelAssist", t, func(ctx convey.C) {
  145. httpMock("POST", d.assistDelURL).Reply(200).JSON(`{"code":0}`)
  146. err := d.DelAssist(c, mid, assistMid, ip, upUname)
  147. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  148. ctx.So(err, convey.ShouldBeNil)
  149. })
  150. })
  151. }
  152. func TestAssistRevocAssistLog(t *testing.T) {
  153. var (
  154. c = context.TODO()
  155. mid = int64(0)
  156. assistMid = int64(0)
  157. logID = int64(0)
  158. ip = ""
  159. )
  160. convey.Convey("RevocAssistLog", t, func(ctx convey.C) {
  161. httpMock("POST", d.assistLogRevocURL).Reply(200).JSON(`{"code":0}`)
  162. err := d.RevocAssistLog(c, mid, assistMid, logID, ip)
  163. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  164. ctx.So(err, convey.ShouldBeNil)
  165. })
  166. })
  167. }
  168. func TestAssistStat(t *testing.T) {
  169. var (
  170. c = context.TODO()
  171. mid = int64(0)
  172. assistMids = []int64{}
  173. ip = ""
  174. res = struct {
  175. Code int `json:"code"`
  176. Data map[int64]map[int8]map[int8]int `json:"data"`
  177. }{
  178. Code: 0,
  179. Data: map[int64]map[int8]map[int8]int{},
  180. }
  181. )
  182. convey.Convey("Stat", t, func(ctx convey.C) {
  183. httpMock("GET", d.assistStatURL).Reply(200).JSON(res)
  184. stat, err := d.Stat(c, mid, assistMids, ip)
  185. ctx.Convey("Then err should be nil.stat should not be nil.", func(ctx convey.C) {
  186. ctx.So(err, convey.ShouldBeNil)
  187. ctx.So(stat, convey.ShouldNotBeNil)
  188. })
  189. })
  190. }
  191. func TestAssistInfo(t *testing.T) {
  192. var (
  193. c = context.TODO()
  194. mid = int64(0)
  195. assistMid = int64(0)
  196. ip = ""
  197. res = struct {
  198. Code int `json:"code"`
  199. Data struct {
  200. Assist int8 `json:"assist"`
  201. } `json:"data"`
  202. }{
  203. Code: 0,
  204. Data: struct {
  205. Assist int8 `json:"assist"`
  206. }{
  207. Assist: 1,
  208. },
  209. }
  210. )
  211. convey.Convey("Info", t, func(ctx convey.C) {
  212. httpMock("GET", d.assistInfoURL).Reply(200).JSON(res)
  213. assist, err := d.Info(c, mid, assistMid, ip)
  214. ctx.Convey("Then err should be nil.assist should not be nil.", func(ctx convey.C) {
  215. ctx.So(err, convey.ShouldBeNil)
  216. ctx.So(assist, convey.ShouldNotBeNil)
  217. })
  218. })
  219. }
  220. func TestAssistAssistLogObj(t *testing.T) {
  221. var (
  222. c = context.TODO()
  223. tp = int8(0)
  224. act = int8(0)
  225. mid = int64(0)
  226. objID = int64(0)
  227. )
  228. convey.Convey("AssistLogObj", t, func(ctx convey.C) {
  229. httpMock("GET", d.assistLogObjURL).Reply(200).JSON(assLogRes)
  230. assLog, err := d.AssistLogObj(c, tp, act, mid, objID)
  231. ctx.Convey("Then err should be nil.assLog should not be nil.", func(ctx convey.C) {
  232. ctx.So(err, convey.ShouldBeNil)
  233. ctx.So(assLog, convey.ShouldNotBeNil)
  234. })
  235. })
  236. }