action_test.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. package like
  2. import (
  3. "context"
  4. l "go-common/app/interface/main/activity/model/like"
  5. "testing"
  6. "fmt"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestLikelikeActScoreKey(t *testing.T) {
  10. convey.Convey("likeActScoreKey", t, func(ctx convey.C) {
  11. var (
  12. sid = int64(10256)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. p1 := likeActScoreKey(sid)
  16. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  17. ctx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestLikelikeActScoreTypeKey(t *testing.T) {
  23. convey.Convey("likeActScoreTypeKey", t, func(ctx convey.C) {
  24. var (
  25. sid = int64(10256)
  26. ltype = int(1)
  27. )
  28. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  29. p1 := likeActScoreTypeKey(sid, ltype)
  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 TestLikelikeActKey(t *testing.T) {
  37. convey.Convey("likeActKey", t, func(ctx convey.C) {
  38. var (
  39. sid = int64(10256)
  40. lid = int64(77)
  41. mid = int64(77)
  42. )
  43. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  44. p1 := likeActKey(sid, lid, mid)
  45. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  46. ctx.So(p1, convey.ShouldNotBeNil)
  47. })
  48. })
  49. })
  50. }
  51. func TestLikelikeLidKey(t *testing.T) {
  52. convey.Convey("likeLidKey", t, func(ctx convey.C) {
  53. var (
  54. oid = int64(77)
  55. )
  56. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  57. p1 := likeLidKey(oid)
  58. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  59. ctx.So(p1, convey.ShouldNotBeNil)
  60. })
  61. })
  62. })
  63. }
  64. func TestLikelikeCountKey(t *testing.T) {
  65. convey.Convey("likeCountKey", t, func(ctx convey.C) {
  66. var (
  67. sid = int64(10256)
  68. )
  69. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  70. p1 := likeCountKey(sid)
  71. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  72. ctx.So(p1, convey.ShouldNotBeNil)
  73. })
  74. })
  75. })
  76. }
  77. func TestLikeLikeActInfos(t *testing.T) {
  78. convey.Convey("LikeActInfos", t, func(ctx convey.C) {
  79. var (
  80. c = context.Background()
  81. lids = []int64{1, 2}
  82. mid = int64(77)
  83. )
  84. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  85. likeActs, err := d.LikeActInfos(c, lids, mid)
  86. ctx.Convey("Then err should be nil.likeActs should not be nil.", func(ctx convey.C) {
  87. ctx.So(err, convey.ShouldBeNil)
  88. ctx.So(likeActs, convey.ShouldNotBeNil)
  89. })
  90. })
  91. })
  92. }
  93. func TestLikeLikeActSums(t *testing.T) {
  94. convey.Convey("LikeActSums", t, func(ctx convey.C) {
  95. var (
  96. c = context.Background()
  97. sid = int64(1056)
  98. lids = []int64{1, 2}
  99. )
  100. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  101. res, err := d.LikeActSums(c, sid, lids)
  102. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  103. ctx.So(err, convey.ShouldBeNil)
  104. ctx.So(res, convey.ShouldNotBeNil)
  105. })
  106. })
  107. })
  108. }
  109. func TestLikeStoryLikeActSum(t *testing.T) {
  110. convey.Convey("StoryLikeActSum", t, func(ctx convey.C) {
  111. var (
  112. c = context.Background()
  113. sid = int64(10256)
  114. mid = int64(77)
  115. stime = "2018-10-16 00:00:00"
  116. etime = "2018-10-16 23:59:59"
  117. )
  118. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  119. res, err := d.StoryLikeActSum(c, sid, mid, stime, etime)
  120. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  121. ctx.So(err, convey.ShouldBeNil)
  122. ctx.So(res, convey.ShouldNotBeNil)
  123. })
  124. })
  125. })
  126. }
  127. func TestLikeStoryEachLikeAct(t *testing.T) {
  128. convey.Convey("StoryEachLikeAct", t, func(ctx convey.C) {
  129. var (
  130. c = context.Background()
  131. sid = int64(10296)
  132. mid = int64(216761)
  133. lid = int64(13538)
  134. stime = "2018-10-17 00:00:00"
  135. etime = "2018-10-17 23:59:59"
  136. )
  137. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  138. res, err := d.StoryEachLikeAct(c, sid, mid, lid, stime, etime)
  139. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  140. ctx.So(err, convey.ShouldBeNil)
  141. fmt.Printf("%d", res)
  142. })
  143. })
  144. })
  145. }
  146. func TestLikeSetRedisCache(t *testing.T) {
  147. convey.Convey("SetRedisCache", t, func(ctx convey.C) {
  148. var (
  149. c = context.Background()
  150. sid = int64(10296)
  151. lid = int64(13538)
  152. score = int64(10)
  153. likeType = int(1)
  154. )
  155. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  156. err := d.SetRedisCache(c, sid, lid, score, likeType)
  157. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  158. ctx.So(err, convey.ShouldBeNil)
  159. })
  160. })
  161. })
  162. }
  163. func TestLikeRedisCache(t *testing.T) {
  164. convey.Convey("RedisCache", t, func(ctx convey.C) {
  165. var (
  166. c = context.Background()
  167. sid = int64(10296)
  168. start = int(0)
  169. end = int(100)
  170. )
  171. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  172. res, err := d.RedisCache(c, sid, start, end)
  173. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  174. ctx.So(err, convey.ShouldBeNil)
  175. fmt.Printf("%+v", res)
  176. })
  177. })
  178. })
  179. }
  180. func TestLikeLikeActZscore(t *testing.T) {
  181. convey.Convey("LikeActZscore", t, func(ctx convey.C) {
  182. var (
  183. c = context.Background()
  184. sid = int64(10296)
  185. lid = int64(13528)
  186. )
  187. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  188. res, err := d.LikeActZscore(c, sid, lid)
  189. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  190. ctx.So(err, convey.ShouldBeNil)
  191. fmt.Printf("%d", res)
  192. })
  193. })
  194. })
  195. }
  196. func TestLikeSetInitializeLikeCache(t *testing.T) {
  197. convey.Convey("SetInitializeLikeCache", t, func(ctx convey.C) {
  198. var (
  199. c = context.Background()
  200. sid = int64(10256)
  201. lidLikeAct = map[int64]int64{77: 1, 88: 2}
  202. typeLike = map[int64]int{77: 1, 88: 2}
  203. )
  204. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  205. err := d.SetInitializeLikeCache(c, sid, lidLikeAct, typeLike)
  206. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  207. ctx.So(err, convey.ShouldBeNil)
  208. })
  209. })
  210. })
  211. }
  212. func TestLikeLikeActAdd(t *testing.T) {
  213. convey.Convey("LikeActAdd", t, func(ctx convey.C) {
  214. var (
  215. c = context.Background()
  216. likeAct = &l.Action{Sid: 10256, Lid: 77, Action: 1, IPv6: make([]byte, 0)}
  217. )
  218. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  219. id, err := d.LikeActAdd(c, likeAct)
  220. ctx.Convey("Then err should be nil.id should not be nil.", func(ctx convey.C) {
  221. ctx.So(err, convey.ShouldBeNil)
  222. ctx.So(id, convey.ShouldNotBeNil)
  223. })
  224. })
  225. })
  226. }
  227. func TestLikeLikeActLidCounts(t *testing.T) {
  228. convey.Convey("LikeActLidCounts", t, func(ctx convey.C) {
  229. var (
  230. c = context.Background()
  231. lids = []int64{2354, 2355}
  232. )
  233. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  234. res, err := d.LikeActLidCounts(c, lids)
  235. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  236. ctx.So(err, convey.ShouldBeNil)
  237. fmt.Printf("%+v", res)
  238. })
  239. })
  240. })
  241. }
  242. func TestLikeLikeActs(t *testing.T) {
  243. convey.Convey("LikeActs", t, func(ctx convey.C) {
  244. var (
  245. c = context.Background()
  246. sid = int64(10256)
  247. mid = int64(77)
  248. lids = []int64{1, 2}
  249. )
  250. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  251. res, err := d.LikeActs(c, sid, mid, lids)
  252. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  253. ctx.So(err, convey.ShouldBeNil)
  254. ctx.So(res, convey.ShouldNotBeNil)
  255. })
  256. })
  257. })
  258. }
  259. func TestLikeCacheLikeActs(t *testing.T) {
  260. convey.Convey("CacheLikeActs", t, func(ctx convey.C) {
  261. var (
  262. c = context.Background()
  263. sid = int64(1256)
  264. mid = int64(77)
  265. lids = []int64{1, 2}
  266. )
  267. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  268. res, err := d.CacheLikeActs(c, sid, mid, lids)
  269. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  270. ctx.So(err, convey.ShouldBeNil)
  271. fmt.Printf("%+v", res)
  272. })
  273. })
  274. })
  275. }
  276. func TestLikeAddCacheLikeActs(t *testing.T) {
  277. convey.Convey("AddCacheLikeActs", t, func(ctx convey.C) {
  278. var (
  279. c = context.Background()
  280. sid = int64(10256)
  281. mid = int64(77)
  282. values = map[int64]int{77: 1}
  283. )
  284. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  285. err := d.AddCacheLikeActs(c, sid, mid, values)
  286. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  287. ctx.So(err, convey.ShouldBeNil)
  288. })
  289. })
  290. })
  291. }