act_mission_test.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package like
  2. import (
  3. "context"
  4. "fmt"
  5. "testing"
  6. l "go-common/app/interface/main/activity/model/like"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestLikemissionLikeLimitKey(t *testing.T) {
  10. convey.Convey("missionLikeLimitKey", t, func(ctx convey.C) {
  11. var (
  12. sid = int64(10256)
  13. mid = int64(77)
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. p1 := missionLikeLimitKey(sid, mid)
  17. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  18. ctx.So(p1, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestLikelikeActMissionScoreKey(t *testing.T) {
  24. convey.Convey("likeActMissionScoreKey", t, func(ctx convey.C) {
  25. var (
  26. sid = int64(10256)
  27. )
  28. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  29. p1 := likeActMissionScoreKey(sid)
  30. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  31. ctx.So(p1, convey.ShouldNotBeNil)
  32. })
  33. })
  34. })
  35. }
  36. func TestLikelikeMissionScoreStrKey(t *testing.T) {
  37. convey.Convey("likeMissionScoreStrKey", t, func(ctx convey.C) {
  38. var (
  39. sid = int64(10256)
  40. lid = int64(77)
  41. )
  42. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  43. p1 := likeMissionScoreStrKey(sid, lid)
  44. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  45. ctx.So(p1, convey.ShouldNotBeNil)
  46. })
  47. })
  48. })
  49. }
  50. func TestLikescoreMaxTime(t *testing.T) {
  51. convey.Convey("scoreMaxTime", t, func(ctx convey.C) {
  52. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  53. p1 := scoreMaxTime()
  54. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  55. ctx.So(p1, convey.ShouldNotBeNil)
  56. })
  57. })
  58. })
  59. }
  60. func TestLikescoreMaxNum(t *testing.T) {
  61. convey.Convey("scoreMaxNum", t, func(ctx convey.C) {
  62. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  63. p1 := scoreMaxNum()
  64. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  65. ctx.So(p1, convey.ShouldNotBeNil)
  66. })
  67. })
  68. })
  69. }
  70. func TestLikebuildRankScore(t *testing.T) {
  71. convey.Convey("buildRankScore", t, func(ctx convey.C) {
  72. var (
  73. num = int64(3)
  74. ctime = int64(15487588)
  75. )
  76. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  77. p1 := buildRankScore(num, ctime)
  78. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  79. ctx.So(p1, convey.ShouldNotBeNil)
  80. })
  81. })
  82. })
  83. }
  84. func TestLikeRawActMission(t *testing.T) {
  85. convey.Convey("RawActMission", t, func(ctx convey.C) {
  86. var (
  87. c = context.Background()
  88. sid = int64(10256)
  89. lid = int64(123)
  90. mid = int64(123)
  91. )
  92. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  93. res, err := d.RawActMission(c, sid, lid, mid)
  94. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  95. ctx.So(err, convey.ShouldBeNil)
  96. fmt.Printf("%+v", res)
  97. })
  98. })
  99. })
  100. }
  101. func TestLikeMissionLikeLimit(t *testing.T) {
  102. convey.Convey("MissionLikeLimit", t, func(ctx convey.C) {
  103. var (
  104. c = context.Background()
  105. sid = int64(10256)
  106. mid = int64(77)
  107. )
  108. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  109. res, err := d.MissionLikeLimit(c, sid, mid)
  110. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  111. ctx.So(err, convey.ShouldBeNil)
  112. fmt.Printf("%+v", res)
  113. })
  114. })
  115. })
  116. }
  117. func TestLikeInrcMissionLikeLimit(t *testing.T) {
  118. convey.Convey("InrcMissionLikeLimit", t, func(ctx convey.C) {
  119. var (
  120. c = context.Background()
  121. sid = int64(10256)
  122. mid = int64(77)
  123. val = int64(1)
  124. )
  125. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  126. res, err := d.InrcMissionLikeLimit(c, sid, mid, val)
  127. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  128. ctx.So(err, convey.ShouldBeNil)
  129. fmt.Printf("%+v", res)
  130. })
  131. })
  132. })
  133. }
  134. func TestLikeSetMissionTop(t *testing.T) {
  135. convey.Convey("SetMissionTop", t, func(ctx convey.C) {
  136. var (
  137. c = context.Background()
  138. sid = int64(10256)
  139. lid = int64(123)
  140. score = int64(1)
  141. ctime = int64(158748596)
  142. )
  143. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  144. count, err := d.SetMissionTop(c, sid, lid, score, ctime)
  145. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  146. ctx.So(err, convey.ShouldBeNil)
  147. fmt.Printf("%+v", count)
  148. })
  149. })
  150. })
  151. }
  152. func TestLikeMissionLidScore(t *testing.T) {
  153. convey.Convey("MissionLidScore", t, func(ctx convey.C) {
  154. var (
  155. c = context.Background()
  156. sid = int64(10256)
  157. lid = int64(77)
  158. )
  159. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  160. score, err := d.MissionLidScore(c, sid, lid)
  161. ctx.Convey("Then err should be nil.score should not be nil.", func(ctx convey.C) {
  162. ctx.So(err, convey.ShouldBeNil)
  163. ctx.So(score, convey.ShouldNotBeNil)
  164. })
  165. })
  166. })
  167. }
  168. func TestLikeMissionLidRank(t *testing.T) {
  169. convey.Convey("MissionLidRank", t, func(ctx convey.C) {
  170. var (
  171. c = context.Background()
  172. sid = int64(10256)
  173. lid = int64(77)
  174. )
  175. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  176. rank, err := d.MissionLidRank(c, sid, lid)
  177. ctx.Convey("Then err should be nil.rank should not be nil.", func(ctx convey.C) {
  178. ctx.So(err, convey.ShouldBeNil)
  179. ctx.So(rank, convey.ShouldNotBeNil)
  180. })
  181. })
  182. })
  183. }
  184. func TestLikeMissionScoreList(t *testing.T) {
  185. convey.Convey("MissionScoreList", t, func(ctx convey.C) {
  186. var (
  187. c = context.Background()
  188. sid = int64(10256)
  189. start = int(1)
  190. end = int(2)
  191. )
  192. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  193. data, err := d.MissionScoreList(c, sid, start, end)
  194. ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
  195. ctx.So(err, convey.ShouldBeNil)
  196. ctx.So(data, convey.ShouldNotBeNil)
  197. })
  198. })
  199. })
  200. }
  201. func TestLikeAddActMission(t *testing.T) {
  202. convey.Convey("AddActMission", t, func(ctx convey.C) {
  203. var (
  204. c = context.Background()
  205. act = &l.ActMissionGroup{Sid: 10256, Lid: 1235, Mid: 77, IPv6: make([]byte, 0)}
  206. )
  207. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  208. actID, err := d.AddActMission(c, act)
  209. ctx.Convey("Then err should be nil.actID should not be nil.", func(ctx convey.C) {
  210. ctx.So(err, convey.ShouldBeNil)
  211. ctx.So(actID, convey.ShouldNotBeNil)
  212. })
  213. })
  214. })
  215. }
  216. func TestLikeRawActMissionFriends(t *testing.T) {
  217. convey.Convey("RawActMissionFriends", t, func(ctx convey.C) {
  218. var (
  219. c = context.Background()
  220. sid = int64(10256)
  221. lid = int64(77)
  222. )
  223. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  224. res, err := d.RawActMissionFriends(c, sid, lid)
  225. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  226. ctx.So(err, convey.ShouldBeNil)
  227. ctx.So(res, convey.ShouldNotBeNil)
  228. })
  229. })
  230. })
  231. }