mc.cache_test.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. package like
  2. import (
  3. "context"
  4. likemdl "go-common/app/interface/main/activity/model/like"
  5. "testing"
  6. "fmt"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestLikeCacheLike(t *testing.T) {
  10. convey.Convey("CacheLike", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. id = int64(1)
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. res, err := d.CacheLike(c, id)
  17. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. fmt.Printf("%v", res)
  20. })
  21. })
  22. })
  23. }
  24. func TestLikeCacheLikes(t *testing.T) {
  25. convey.Convey("CacheLikes", t, func(ctx convey.C) {
  26. var (
  27. c = context.Background()
  28. ids = []int64{1}
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. res, err := d.CacheLikes(c, ids)
  32. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. fmt.Printf("%v", res)
  35. })
  36. })
  37. })
  38. }
  39. func TestLikeAddCacheLike(t *testing.T) {
  40. convey.Convey("AddCacheLike", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. id = int64(0)
  44. val = &likemdl.Item{ID: 0}
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. err := d.AddCacheLike(c, id, val)
  48. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. })
  51. })
  52. })
  53. }
  54. func TestLikeCacheActSubject(t *testing.T) {
  55. convey.Convey("CacheActSubject", t, func(ctx convey.C) {
  56. var (
  57. c = context.Background()
  58. id = int64(10256)
  59. )
  60. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  61. res, err := d.CacheActSubject(c, id)
  62. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  63. ctx.So(err, convey.ShouldBeNil)
  64. fmt.Printf("%v", res)
  65. })
  66. })
  67. })
  68. }
  69. func TestLikeAddCacheActSubject(t *testing.T) {
  70. convey.Convey("AddCacheActSubject", t, func(ctx convey.C) {
  71. var (
  72. c = context.Background()
  73. id = int64(0)
  74. val = &likemdl.SubjectItem{ID: 0}
  75. )
  76. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  77. err := d.AddCacheActSubject(c, id, val)
  78. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  79. ctx.So(err, convey.ShouldBeNil)
  80. })
  81. })
  82. })
  83. }
  84. func TestLikeCacheActSubjectMaxID(t *testing.T) {
  85. convey.Convey("CacheActSubjectMaxID", t, func(ctx convey.C) {
  86. var (
  87. c = context.Background()
  88. )
  89. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  90. res, err := d.CacheActSubjectMaxID(c)
  91. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  92. ctx.So(err, convey.ShouldBeNil)
  93. ctx.So(res, convey.ShouldNotBeNil)
  94. })
  95. })
  96. })
  97. }
  98. func TestLikeAddCacheActSubjectMaxID(t *testing.T) {
  99. convey.Convey("AddCacheActSubjectMaxID", t, func(ctx convey.C) {
  100. var (
  101. c = context.Background()
  102. val = int64(10256)
  103. )
  104. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  105. err := d.AddCacheActSubjectMaxID(c, val)
  106. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  107. ctx.So(err, convey.ShouldBeNil)
  108. })
  109. })
  110. })
  111. }
  112. func TestLikeCacheLikeMaxID(t *testing.T) {
  113. convey.Convey("CacheLikeMaxID", t, func(ctx convey.C) {
  114. var (
  115. c = context.Background()
  116. )
  117. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  118. res, err := d.CacheLikeMaxID(c)
  119. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  120. ctx.So(err, convey.ShouldBeNil)
  121. ctx.So(res, convey.ShouldNotBeNil)
  122. })
  123. })
  124. })
  125. }
  126. func TestLikeAddCacheLikeMaxID(t *testing.T) {
  127. convey.Convey("AddCacheLikeMaxID", t, func(ctx convey.C) {
  128. var (
  129. c = context.Background()
  130. val = int64(10586)
  131. )
  132. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  133. err := d.AddCacheLikeMaxID(c, val)
  134. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  135. ctx.So(err, convey.ShouldBeNil)
  136. })
  137. })
  138. })
  139. }
  140. func TestLikeCacheLikeMissionBuff(t *testing.T) {
  141. convey.Convey("CacheLikeMissionBuff", t, func(ctx convey.C) {
  142. var (
  143. c = context.Background()
  144. id = int64(10256)
  145. mid = int64(77)
  146. )
  147. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  148. res, err := d.CacheLikeMissionBuff(c, id, mid)
  149. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  150. ctx.So(err, convey.ShouldBeNil)
  151. ctx.So(res, convey.ShouldNotBeNil)
  152. })
  153. })
  154. })
  155. }
  156. func TestLikeAddCacheLikeMissionBuff(t *testing.T) {
  157. convey.Convey("AddCacheLikeMissionBuff", t, func(ctx convey.C) {
  158. var (
  159. c = context.Background()
  160. id = int64(10256)
  161. val = int64(1)
  162. mid = int64(77)
  163. )
  164. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  165. err := d.AddCacheLikeMissionBuff(c, id, val, mid)
  166. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  167. ctx.So(err, convey.ShouldBeNil)
  168. })
  169. })
  170. })
  171. }
  172. func TestLikeCacheMissionGroupItems(t *testing.T) {
  173. convey.Convey("CacheMissionGroupItems", t, func(ctx convey.C) {
  174. var (
  175. c = context.Background()
  176. ids = []int64{1, 2}
  177. )
  178. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  179. res, err := d.CacheMissionGroupItems(c, ids)
  180. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  181. ctx.So(err, convey.ShouldBeNil)
  182. ctx.So(res, convey.ShouldNotBeNil)
  183. })
  184. })
  185. })
  186. }
  187. func TestLikeAddCacheMissionGroupItems(t *testing.T) {
  188. convey.Convey("AddCacheMissionGroupItems", t, func(ctx convey.C) {
  189. var (
  190. c = context.Background()
  191. values = map[int64]*likemdl.MissionGroup{1: {ID: 1, Sid: 1}}
  192. )
  193. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  194. err := d.AddCacheMissionGroupItems(c, values)
  195. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  196. ctx.So(err, convey.ShouldBeNil)
  197. })
  198. })
  199. })
  200. }
  201. func TestLikeCacheActMission(t *testing.T) {
  202. convey.Convey("CacheActMission", t, func(ctx convey.C) {
  203. var (
  204. c = context.Background()
  205. id = int64(10256)
  206. lid = int64(77)
  207. mid = int64(77)
  208. )
  209. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  210. res, err := d.CacheActMission(c, id, lid, mid)
  211. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  212. ctx.So(err, convey.ShouldBeNil)
  213. ctx.So(res, convey.ShouldNotBeNil)
  214. })
  215. })
  216. })
  217. }
  218. func TestLikeAddCacheActMission(t *testing.T) {
  219. convey.Convey("AddCacheActMission", t, func(ctx convey.C) {
  220. var (
  221. c = context.Background()
  222. id = int64(10256)
  223. val = int64(1)
  224. lid = int64(77)
  225. mid = int64(77)
  226. )
  227. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  228. err := d.AddCacheActMission(c, id, val, lid, mid)
  229. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  230. ctx.So(err, convey.ShouldBeNil)
  231. })
  232. })
  233. })
  234. }
  235. func TestLikeCacheActLikeAchieves(t *testing.T) {
  236. convey.Convey("CacheActLikeAchieves", t, func(ctx convey.C) {
  237. var (
  238. c = context.Background()
  239. id = int64(10256)
  240. )
  241. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  242. res, err := d.CacheActLikeAchieves(c, id)
  243. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  244. ctx.So(err, convey.ShouldBeNil)
  245. fmt.Printf("%+v", res)
  246. })
  247. })
  248. })
  249. }
  250. func TestLikeAddCacheActLikeAchieves(t *testing.T) {
  251. convey.Convey("AddCacheActLikeAchieves", t, func(ctx convey.C) {
  252. var (
  253. c = context.Background()
  254. id = int64(0)
  255. val = &likemdl.Achievements{}
  256. )
  257. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  258. err := d.AddCacheActLikeAchieves(c, id, val)
  259. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  260. ctx.So(err, convey.ShouldBeNil)
  261. })
  262. })
  263. })
  264. }
  265. func TestLikeCacheActMissionFriends(t *testing.T) {
  266. convey.Convey("CacheActMissionFriends", t, func(ctx convey.C) {
  267. var (
  268. c = context.Background()
  269. id = int64(10256)
  270. lid = int64(1)
  271. )
  272. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  273. res, err := d.CacheActMissionFriends(c, id, lid)
  274. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  275. ctx.So(err, convey.ShouldBeNil)
  276. fmt.Printf("%+v", res)
  277. })
  278. })
  279. })
  280. }
  281. func TestLikeDelCacheActMissionFriends(t *testing.T) {
  282. convey.Convey("DelCacheActMissionFriends", t, func(ctx convey.C) {
  283. var (
  284. c = context.Background()
  285. id = int64(10256)
  286. lid = int64(1)
  287. )
  288. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  289. err := d.DelCacheActMissionFriends(c, id, lid)
  290. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  291. ctx.So(err, convey.ShouldBeNil)
  292. })
  293. })
  294. })
  295. }
  296. func TestLikeAddCacheActMissionFriends(t *testing.T) {
  297. convey.Convey("AddCacheActMissionFriends", t, func(ctx convey.C) {
  298. var (
  299. c = context.Background()
  300. id = int64(0)
  301. val = &likemdl.ActMissionGroups{}
  302. lid = int64(0)
  303. )
  304. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  305. err := d.AddCacheActMissionFriends(c, id, val, lid)
  306. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  307. ctx.So(err, convey.ShouldBeNil)
  308. })
  309. })
  310. })
  311. }
  312. func TestLikeCacheActUserAchieve(t *testing.T) {
  313. convey.Convey("CacheActUserAchieve", t, func(ctx convey.C) {
  314. var (
  315. c = context.Background()
  316. id = int64(10256)
  317. )
  318. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  319. res, err := d.CacheActUserAchieve(c, id)
  320. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  321. ctx.So(err, convey.ShouldBeNil)
  322. fmt.Printf("%+v", res)
  323. })
  324. })
  325. })
  326. }
  327. func TestLikeAddCacheActUserAchieve(t *testing.T) {
  328. convey.Convey("AddCacheActUserAchieve", t, func(ctx convey.C) {
  329. var (
  330. c = context.Background()
  331. id = int64(0)
  332. val = &likemdl.ActLikeUserAchievement{}
  333. )
  334. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  335. err := d.AddCacheActUserAchieve(c, id, val)
  336. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  337. ctx.So(err, convey.ShouldBeNil)
  338. })
  339. })
  340. })
  341. }
  342. func TestLikeCacheActUserAward(t *testing.T) {
  343. convey.Convey("CacheActUserAward", t, func(ctx convey.C) {
  344. var (
  345. c = context.Background()
  346. id = int64(10256)
  347. )
  348. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  349. res, err := d.CacheActUserAward(c, id)
  350. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  351. ctx.So(err, convey.ShouldBeNil)
  352. ctx.So(res, convey.ShouldNotBeNil)
  353. })
  354. })
  355. })
  356. }
  357. func TestLikeAddCacheActUserAward(t *testing.T) {
  358. convey.Convey("AddCacheActUserAward", t, func(ctx convey.C) {
  359. var (
  360. c = context.Background()
  361. id = int64(10256)
  362. val = int64(77)
  363. )
  364. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  365. err := d.AddCacheActUserAward(c, id, val)
  366. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  367. ctx.So(err, convey.ShouldBeNil)
  368. })
  369. })
  370. })
  371. }
  372. func TestLikeCacheSubjectStat(t *testing.T) {
  373. convey.Convey("CacheSubjectStat", t, func(ctx convey.C) {
  374. var (
  375. c = context.Background()
  376. id = int64(10256)
  377. )
  378. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  379. res, err := d.CacheSubjectStat(c, id)
  380. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  381. ctx.So(err, convey.ShouldBeNil)
  382. fmt.Printf("%+v", res)
  383. })
  384. })
  385. })
  386. }
  387. func TestLikeAddCacheSubjectStat(t *testing.T) {
  388. convey.Convey("AddCacheSubjectStat", t, func(ctx convey.C) {
  389. var (
  390. c = context.Background()
  391. id = int64(0)
  392. val = &likemdl.SubjectStat{}
  393. )
  394. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  395. err := d.AddCacheSubjectStat(c, id, val)
  396. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  397. ctx.So(err, convey.ShouldBeNil)
  398. })
  399. })
  400. })
  401. }
  402. func TestLikeCacheViewRank(t *testing.T) {
  403. convey.Convey("CacheViewRank", t, func(ctx convey.C) {
  404. var (
  405. c = context.Background()
  406. id = int64(10256)
  407. )
  408. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  409. res, err := d.CacheViewRank(c, id)
  410. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  411. ctx.So(err, convey.ShouldBeNil)
  412. ctx.So(res, convey.ShouldNotBeNil)
  413. })
  414. })
  415. })
  416. }
  417. func TestLikeAddCacheViewRank(t *testing.T) {
  418. convey.Convey("AddCacheViewRank", t, func(ctx convey.C) {
  419. var (
  420. c = context.Background()
  421. id = int64(0)
  422. val = ""
  423. )
  424. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  425. err := d.AddCacheViewRank(c, id, val)
  426. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  427. ctx.So(err, convey.ShouldBeNil)
  428. })
  429. })
  430. })
  431. }
  432. func TestLikeCacheLikeContent(t *testing.T) {
  433. convey.Convey("CacheLikeContent", t, func(ctx convey.C) {
  434. var (
  435. c = context.Background()
  436. ids = []int64{1, 2}
  437. )
  438. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  439. res, err := d.CacheLikeContent(c, ids)
  440. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  441. ctx.So(err, convey.ShouldBeNil)
  442. fmt.Printf("%+v", res)
  443. })
  444. })
  445. })
  446. }
  447. func TestLikeAddCacheLikeContent(t *testing.T) {
  448. convey.Convey("AddCacheLikeContent", t, func(ctx convey.C) {
  449. var (
  450. c = context.Background()
  451. values map[int64]*likemdl.LikeContent
  452. )
  453. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  454. err := d.AddCacheLikeContent(c, values)
  455. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  456. ctx.So(err, convey.ShouldBeNil)
  457. })
  458. })
  459. })
  460. }
  461. func TestLikeAddCacheSourceItemData(t *testing.T) {
  462. convey.Convey("AddCacheSourceItemData", t, func(ctx convey.C) {
  463. var (
  464. c = context.Background()
  465. sid = int64(213)
  466. values = []int64{10884, 10883, 10882, 10881, 10880}
  467. )
  468. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  469. err := d.AddCacheSourceItemData(c, sid, values)
  470. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  471. ctx.So(err, convey.ShouldBeNil)
  472. })
  473. })
  474. })
  475. }
  476. func TestLikeCacheSourceItemData(t *testing.T) {
  477. convey.Convey("CacheSourceItemData", t, func(ctx convey.C) {
  478. var (
  479. c = context.Background()
  480. sid = int64(213)
  481. )
  482. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  483. res, err := d.CacheSourceItemData(c, sid)
  484. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  485. ctx.So(err, convey.ShouldBeNil)
  486. fmt.Printf("%+v", res)
  487. })
  488. })
  489. })
  490. }