case_redis_test.go 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/credit/model"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaovoteIndexKey(t *testing.T) {
  9. convey.Convey("voteIndexKey", t, func(convCtx convey.C) {
  10. var (
  11. cid = int64(0)
  12. otype = int8(0)
  13. )
  14. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  15. p1 := voteIndexKey(cid, otype)
  16. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  17. convCtx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestDaocaseIndexKey(t *testing.T) {
  23. convey.Convey("caseIndexKey", t, func(convCtx convey.C) {
  24. var (
  25. cid = int64(0)
  26. )
  27. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  28. p1 := caseIndexKey(cid)
  29. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  30. convCtx.So(p1, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }
  35. func TestDaoVoteOpIdxCache(t *testing.T) {
  36. convey.Convey("VoteOpIdxCache", t, func(convCtx convey.C) {
  37. var (
  38. c = context.Background()
  39. cid = int64(0)
  40. start = int64(0)
  41. end = int64(0)
  42. otype = int8(0)
  43. )
  44. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  45. ids, err := d.VoteOpIdxCache(c, cid, start, end, otype)
  46. convCtx.Convey("Then err should be nil.ids should be nil.", func(convCtx convey.C) {
  47. convCtx.So(err, convey.ShouldBeNil)
  48. convCtx.So(ids, convey.ShouldBeNil)
  49. })
  50. })
  51. })
  52. }
  53. func TestDaoExpireVoteIdx(t *testing.T) {
  54. convey.Convey("ExpireVoteIdx", t, func(convCtx convey.C) {
  55. var (
  56. c = context.Background()
  57. cid = int64(0)
  58. otype = int8(0)
  59. )
  60. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  61. ok, err := d.ExpireVoteIdx(c, cid, otype)
  62. convCtx.Convey("Then err should be nil.ok should not be nil.", func(convCtx convey.C) {
  63. convCtx.So(err, convey.ShouldBeNil)
  64. convCtx.So(ok, convey.ShouldNotBeNil)
  65. })
  66. })
  67. })
  68. }
  69. func TestDaoLenVoteIdx(t *testing.T) {
  70. convey.Convey("LenVoteIdx", t, func(convCtx convey.C) {
  71. var (
  72. c = context.Background()
  73. cid = int64(0)
  74. otype = int8(0)
  75. )
  76. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  77. count, err := d.LenVoteIdx(c, cid, otype)
  78. convCtx.Convey("Then err should be nil.count should not be nil.", func(convCtx convey.C) {
  79. convCtx.So(err, convey.ShouldBeNil)
  80. convCtx.So(count, convey.ShouldNotBeNil)
  81. })
  82. })
  83. })
  84. }
  85. func TestDaoCaseOpIdxCache(t *testing.T) {
  86. convey.Convey("CaseOpIdxCache", t, func(convCtx convey.C) {
  87. var (
  88. c = context.Background()
  89. cid = int64(0)
  90. start = int64(0)
  91. end = int64(0)
  92. )
  93. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  94. ids, err := d.CaseOpIdxCache(c, cid, start, end)
  95. convCtx.Convey("Then err should be nil.ids should be nil.", func(convCtx convey.C) {
  96. convCtx.So(err, convey.ShouldBeNil)
  97. convCtx.So(ids, convey.ShouldBeNil)
  98. })
  99. })
  100. })
  101. }
  102. func TestDaoLenCaseIdx(t *testing.T) {
  103. convey.Convey("LenCaseIdx", t, func(convCtx convey.C) {
  104. var (
  105. c = context.Background()
  106. cid = int64(0)
  107. )
  108. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  109. count, err := d.LenCaseIdx(c, cid)
  110. convCtx.Convey("Then err should be nil.count should not be nil.", func(convCtx convey.C) {
  111. convCtx.So(err, convey.ShouldBeNil)
  112. convCtx.So(count, convey.ShouldNotBeNil)
  113. })
  114. })
  115. })
  116. }
  117. func TestDaoExpireCaseIdx(t *testing.T) {
  118. convey.Convey("ExpireCaseIdx", t, func(convCtx convey.C) {
  119. var (
  120. c = context.Background()
  121. cid = int64(0)
  122. )
  123. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  124. ok, err := d.ExpireCaseIdx(c, cid)
  125. convCtx.Convey("Then err should be nil.ok should not be nil.", func(convCtx convey.C) {
  126. convCtx.So(err, convey.ShouldBeNil)
  127. convCtx.So(ok, convey.ShouldNotBeNil)
  128. })
  129. })
  130. })
  131. }
  132. func TestDaoLoadVoteOpIdxs(t *testing.T) {
  133. convey.Convey("LoadVoteOpIdxs", t, func(convCtx convey.C) {
  134. var (
  135. c = context.Background()
  136. cid = int64(0)
  137. otype = int8(0)
  138. idx = []int64{}
  139. )
  140. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  141. err := d.LoadVoteOpIdxs(c, cid, otype, idx)
  142. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  143. convCtx.So(err, convey.ShouldBeNil)
  144. })
  145. })
  146. })
  147. }
  148. func TestDaoLoadCaseIdxs(t *testing.T) {
  149. convey.Convey("LoadCaseIdxs", t, func(convCtx convey.C) {
  150. var (
  151. c = context.Background()
  152. cid = int64(0)
  153. ops = []*model.Opinion{}
  154. )
  155. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  156. err := d.LoadCaseIdxs(c, cid, ops)
  157. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  158. convCtx.So(err, convey.ShouldBeNil)
  159. })
  160. })
  161. })
  162. }
  163. func TestDaoDelCaseIdx(t *testing.T) {
  164. convey.Convey("DelCaseIdx", t, func(convCtx convey.C) {
  165. var (
  166. c = context.Background()
  167. cid = int64(0)
  168. )
  169. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  170. err := d.DelCaseIdx(c, cid)
  171. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  172. convCtx.So(err, convey.ShouldBeNil)
  173. })
  174. })
  175. })
  176. }
  177. func TestDaoDelVoteIdx(t *testing.T) {
  178. convey.Convey("DelVoteIdx", t, func(convCtx convey.C) {
  179. var (
  180. c = context.Background()
  181. cid = int64(0)
  182. )
  183. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  184. err := d.DelVoteIdx(c, cid)
  185. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  186. convCtx.So(err, convey.ShouldBeNil)
  187. })
  188. })
  189. })
  190. }
  191. // TestVoteOpIdxCache .
  192. func TestVoteOpIdxCache(t *testing.T) {
  193. var (
  194. idx = []int64{1, 2, 3, 4}
  195. cid int64 = 639
  196. c = context.TODO()
  197. otype int8 = 1
  198. )
  199. convey.Convey("return someting", t, func(convCtx convey.C) {
  200. d.LoadVoteOpIdxs(c, cid, otype, idx)
  201. ids, err := d.VoteOpIdxCache(c, cid, 1, 3, otype)
  202. convey.So(err, convey.ShouldBeNil)
  203. convey.So(ids, convey.ShouldNotBeNil)
  204. convey.Convey("get vote count", func(convCtx convey.C) {
  205. count, err := d.LenVoteIdx(c, cid, otype)
  206. convey.So(err, convey.ShouldBeNil)
  207. convey.So(count, convey.ShouldEqual, 4)
  208. })
  209. })
  210. }
  211. // TestCaseOpIdxCache .
  212. func TestCaseOpIdxCache(t *testing.T) {
  213. var (
  214. c = context.TODO()
  215. cid int64 = 2
  216. )
  217. convey.Convey("return someting", t, func(ctx convey.C) {
  218. ops, err := d.Opinions(c, []int64{631, 633})
  219. convey.So(err, convey.ShouldBeNil)
  220. convey.So(ops, convey.ShouldNotBeNil)
  221. convey.Convey("gets case data from cache", func(ctx convey.C) {
  222. d.LoadCaseIdxs(c, cid, ops)
  223. ids, err := d.CaseOpIdxCache(c, cid, 0, 3)
  224. convey.So(err, convey.ShouldBeNil)
  225. convey.So(ids, convey.ShouldNotBeNil)
  226. })
  227. convey.Convey("count cid from case cache", func(ctx convey.C) {
  228. count, err := d.LenCaseIdx(c, cid)
  229. convey.So(err, convey.ShouldBeNil)
  230. convey.So(count, convey.ShouldEqual, len(ops))
  231. })
  232. })
  233. }