memcache_test.go 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  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 TestDaonoticeKey(t *testing.T) {
  9. convey.Convey("noticeKey", t, func(convCtx convey.C) {
  10. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  11. p1 := noticeKey()
  12. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  13. convCtx.So(p1, convey.ShouldNotBeNil)
  14. })
  15. })
  16. })
  17. }
  18. func TestDaoreasonKey(t *testing.T) {
  19. convey.Convey("reasonKey", t, func(convCtx convey.C) {
  20. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  21. p1 := reasonKey()
  22. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  23. convCtx.So(p1, convey.ShouldNotBeNil)
  24. })
  25. })
  26. })
  27. }
  28. func TestDaoopinionKey(t *testing.T) {
  29. convey.Convey("opinionKey", t, func(convCtx convey.C) {
  30. var (
  31. opid = int64(0)
  32. )
  33. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  34. p1 := opinionKey(opid)
  35. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  36. convCtx.So(p1, convey.ShouldNotBeNil)
  37. })
  38. })
  39. })
  40. }
  41. func TestDaoquestionKey(t *testing.T) {
  42. convey.Convey("questionKey", t, func(convCtx convey.C) {
  43. var (
  44. mid = int64(0)
  45. )
  46. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  47. p1 := questionKey(mid)
  48. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  49. convCtx.So(p1, convey.ShouldNotBeNil)
  50. })
  51. })
  52. })
  53. }
  54. func TestDaolabourKey(t *testing.T) {
  55. convey.Convey("labourKey", t, func(convCtx convey.C) {
  56. var (
  57. mid = int64(0)
  58. )
  59. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  60. p1 := labourKey(mid)
  61. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  62. convCtx.So(p1, convey.ShouldNotBeNil)
  63. })
  64. })
  65. })
  66. }
  67. func TestDaojuryInfoKey(t *testing.T) {
  68. convey.Convey("juryInfoKey", t, func(convCtx convey.C) {
  69. var (
  70. mid = int64(0)
  71. )
  72. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  73. p1 := juryInfoKey(mid)
  74. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  75. convCtx.So(p1, convey.ShouldNotBeNil)
  76. })
  77. })
  78. })
  79. }
  80. func TestDaopingMC(t *testing.T) {
  81. convey.Convey("pingMC", t, func(convCtx convey.C) {
  82. var (
  83. c = context.Background()
  84. )
  85. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  86. err := d.pingMC(c)
  87. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  88. convCtx.So(err, convey.ShouldBeNil)
  89. })
  90. })
  91. })
  92. }
  93. func TestDaoNoticeInfoCache(t *testing.T) {
  94. convey.Convey("NoticeInfoCache", t, func(convCtx convey.C) {
  95. var (
  96. c = context.Background()
  97. )
  98. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  99. dt, err := d.NoticeInfoCache(c)
  100. convCtx.Convey("Then err should be nil.dt should be nil.", func(convCtx convey.C) {
  101. convCtx.So(err, convey.ShouldBeNil)
  102. convCtx.So(dt, convey.ShouldBeNil)
  103. })
  104. })
  105. })
  106. }
  107. func TestDaoSetReasonListCache(t *testing.T) {
  108. convey.Convey("SetReasonListCache", t, func(convCtx convey.C) {
  109. var (
  110. c = context.Background()
  111. dt = []*model.Reason{}
  112. )
  113. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  114. err := d.SetReasonListCache(c, dt)
  115. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  116. convCtx.So(err, convey.ShouldBeNil)
  117. })
  118. })
  119. })
  120. }
  121. func TestDaoSetNoticeInfoCache(t *testing.T) {
  122. convey.Convey("SetNoticeInfoCache", t, func(convCtx convey.C) {
  123. var (
  124. c = context.Background()
  125. n = &model.Notice{}
  126. )
  127. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  128. err := d.SetNoticeInfoCache(c, n)
  129. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  130. convCtx.So(err, convey.ShouldBeNil)
  131. })
  132. })
  133. })
  134. }
  135. func TestDaoDelNoticeInfoCache(t *testing.T) {
  136. convey.Convey("DelNoticeInfoCache", t, func(convCtx convey.C) {
  137. var (
  138. c = context.Background()
  139. mid = int64(0)
  140. )
  141. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  142. err := d.DelNoticeInfoCache(c, mid)
  143. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  144. convCtx.So(err, convey.ShouldBeNil)
  145. })
  146. })
  147. })
  148. }
  149. func TestDaoReasonListCache(t *testing.T) {
  150. convey.Convey("ReasonListCache", t, func(convCtx convey.C) {
  151. var (
  152. c = context.Background()
  153. )
  154. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  155. dt, err := d.ReasonListCache(c)
  156. convCtx.Convey("Then err should be nil.dt should not be nil.", func(convCtx convey.C) {
  157. convCtx.So(err, convey.ShouldBeNil)
  158. convCtx.So(dt, convey.ShouldNotBeNil)
  159. })
  160. })
  161. })
  162. }
  163. func TestDaoDelReasonListCache(t *testing.T) {
  164. convey.Convey("DelReasonListCache", t, func(convCtx convey.C) {
  165. var (
  166. c = context.Background()
  167. )
  168. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  169. err := d.DelReasonListCache(c)
  170. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  171. convCtx.So(err, convey.ShouldBeNil)
  172. })
  173. })
  174. })
  175. }
  176. func TestDaoAddOpinionCache(t *testing.T) {
  177. convey.Convey("AddOpinionCache", t, func(convCtx convey.C) {
  178. var (
  179. c = context.Background()
  180. op = &model.Opinion{}
  181. )
  182. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  183. err := d.AddOpinionCache(c, op)
  184. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  185. convCtx.So(err, convey.ShouldBeNil)
  186. })
  187. })
  188. })
  189. }
  190. func TestDaoOpinionsCache(t *testing.T) {
  191. convey.Convey("OpinionsCache", t, func(convCtx convey.C) {
  192. var (
  193. c = context.Background()
  194. opids = []int64{}
  195. )
  196. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  197. ops, miss, err := d.OpinionsCache(c, opids)
  198. convCtx.Convey("Then err should be nil.ops should not be nil,miss should be nil.", func(convCtx convey.C) {
  199. convCtx.So(err, convey.ShouldBeNil)
  200. convCtx.So(miss, convey.ShouldBeNil)
  201. convCtx.So(ops, convey.ShouldNotBeNil)
  202. })
  203. })
  204. })
  205. }
  206. func TestDaoSetQsCache(t *testing.T) {
  207. convey.Convey("SetQsCache", t, func(convCtx convey.C) {
  208. var (
  209. c = context.Background()
  210. mid = int64(0)
  211. qsid = &model.QsCache{}
  212. )
  213. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  214. err := d.SetQsCache(c, mid, qsid)
  215. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  216. convCtx.So(err, convey.ShouldBeNil)
  217. })
  218. })
  219. })
  220. }
  221. func TestDaoGetQsCache(t *testing.T) {
  222. convey.Convey("GetQsCache", t, func(convCtx convey.C) {
  223. var (
  224. c = context.Background()
  225. mid = int64(0)
  226. )
  227. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  228. qsid, err := d.GetQsCache(c, mid)
  229. convCtx.Convey("Then err should be nil.qsid should not be nil.", func(convCtx convey.C) {
  230. convCtx.So(err, convey.ShouldBeNil)
  231. convCtx.So(qsid, convey.ShouldNotBeNil)
  232. })
  233. })
  234. })
  235. }
  236. func TestDaoDelQsCache(t *testing.T) {
  237. convey.Convey("DelQsCache", t, func(convCtx convey.C) {
  238. var (
  239. c = context.Background()
  240. mid = int64(0)
  241. )
  242. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  243. err := d.DelQsCache(c, mid)
  244. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  245. convCtx.So(err, convey.ShouldBeNil)
  246. })
  247. })
  248. })
  249. }
  250. func TestDaoSetAnswerStateCache(t *testing.T) {
  251. convey.Convey("SetAnswerStateCache", t, func(convCtx convey.C) {
  252. var (
  253. c = context.Background()
  254. mid = int64(0)
  255. state = int8(0)
  256. )
  257. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  258. err := d.SetAnswerStateCache(c, mid, state)
  259. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  260. convCtx.So(err, convey.ShouldBeNil)
  261. })
  262. })
  263. })
  264. }
  265. func TestDaoGetAnswerStateCache(t *testing.T) {
  266. convey.Convey("GetAnswerStateCache", t, func(convCtx convey.C) {
  267. var (
  268. c = context.Background()
  269. mid = int64(0)
  270. )
  271. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  272. state, found, err := d.GetAnswerStateCache(c, mid)
  273. convCtx.Convey("Then err should be nil.state,found should not be nil.", func(convCtx convey.C) {
  274. convCtx.So(err, convey.ShouldBeNil)
  275. convCtx.So(found, convey.ShouldNotBeNil)
  276. convCtx.So(state, convey.ShouldNotBeNil)
  277. })
  278. })
  279. })
  280. }
  281. func TestDaoJuryInfoCache(t *testing.T) {
  282. convey.Convey("JuryInfoCache", t, func(convCtx convey.C) {
  283. var (
  284. c = context.Background()
  285. mid = int64(0)
  286. )
  287. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  288. bj, err := d.JuryInfoCache(c, mid)
  289. convCtx.Convey("Then err should be nil.bj should be nil.", func(convCtx convey.C) {
  290. convCtx.So(err, convey.ShouldBeNil)
  291. convCtx.So(bj, convey.ShouldBeNil)
  292. })
  293. })
  294. })
  295. }
  296. func TestDaoSetJuryInfoCache(t *testing.T) {
  297. convey.Convey("SetJuryInfoCache", t, func(convCtx convey.C) {
  298. var (
  299. c = context.Background()
  300. mid = int64(0)
  301. bj = &model.BlockedJury{}
  302. )
  303. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  304. err := d.SetJuryInfoCache(c, mid, bj)
  305. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  306. convCtx.So(err, convey.ShouldBeNil)
  307. })
  308. })
  309. })
  310. }
  311. func TestDaoDelJuryInfoCache(t *testing.T) {
  312. convey.Convey("DelJuryInfoCache", t, func(convCtx convey.C) {
  313. var (
  314. c = context.Background()
  315. mid = int64(0)
  316. )
  317. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  318. err := d.DelJuryInfoCache(c, mid)
  319. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  320. convCtx.So(err, convey.ShouldBeNil)
  321. })
  322. })
  323. })
  324. }