redis_test.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/esports/model"
  5. arcmdl "go-common/app/service/main/archive/api"
  6. "testing"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestDaokeyCale(t *testing.T) {
  10. convey.Convey("keyCale", t, func(ctx convey.C) {
  11. var (
  12. stime = ""
  13. etime = ""
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. p1 := keyCale(stime, etime)
  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 TestDaokeyCont(t *testing.T) {
  24. convey.Convey("keyCont", t, func(ctx convey.C) {
  25. var (
  26. ps = int(1)
  27. )
  28. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  29. p1 := keyCont(ps)
  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 TestDaokeyVideo(t *testing.T) {
  37. convey.Convey("keyVideo", t, func(ctx convey.C) {
  38. var (
  39. ps = int(1)
  40. )
  41. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  42. p1 := keyVideo(ps)
  43. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  44. ctx.So(p1, convey.ShouldNotBeNil)
  45. })
  46. })
  47. })
  48. }
  49. func TestDaokeyContID(t *testing.T) {
  50. convey.Convey("keyContID", t, func(ctx convey.C) {
  51. var (
  52. cid = int64(1)
  53. )
  54. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  55. p1 := keyContID(cid)
  56. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  57. ctx.So(p1, convey.ShouldNotBeNil)
  58. })
  59. })
  60. })
  61. }
  62. func TestDaokeyCoFav(t *testing.T) {
  63. convey.Convey("keyCoFav", t, func(ctx convey.C) {
  64. var (
  65. mid = int64(1)
  66. )
  67. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  68. p1 := keyCoFav(mid)
  69. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  70. ctx.So(p1, convey.ShouldNotBeNil)
  71. })
  72. })
  73. })
  74. }
  75. func TestDaokeyCoAppFav(t *testing.T) {
  76. convey.Convey("keyCoAppFav", t, func(ctx convey.C) {
  77. var (
  78. mid = int64(1)
  79. )
  80. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  81. p1 := keyCoAppFav(mid)
  82. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  83. ctx.So(p1, convey.ShouldNotBeNil)
  84. })
  85. })
  86. })
  87. }
  88. func TestDaokeySID(t *testing.T) {
  89. convey.Convey("keySID", t, func(ctx convey.C) {
  90. var (
  91. sid = int64(1)
  92. )
  93. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  94. p1 := keySID(sid)
  95. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  96. ctx.So(p1, convey.ShouldNotBeNil)
  97. })
  98. })
  99. })
  100. }
  101. func TestDaokeyMatchAct(t *testing.T) {
  102. convey.Convey("keyMatchAct", t, func(ctx convey.C) {
  103. var (
  104. aid = int64(1)
  105. )
  106. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  107. p1 := keyMatchAct(aid)
  108. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  109. ctx.So(p1, convey.ShouldNotBeNil)
  110. })
  111. })
  112. })
  113. }
  114. func TestDaokeyMatchModule(t *testing.T) {
  115. convey.Convey("keyMatchModule", t, func(ctx convey.C) {
  116. var (
  117. mmid = int64(1)
  118. )
  119. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  120. p1 := keyMatchModule(mmid)
  121. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  122. ctx.So(p1, convey.ShouldNotBeNil)
  123. })
  124. })
  125. })
  126. }
  127. func TestDaokeyKnock(t *testing.T) {
  128. convey.Convey("keyKnock", t, func(ctx convey.C) {
  129. var (
  130. mdID = int64(1)
  131. )
  132. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  133. p1 := keyKnock(mdID)
  134. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  135. ctx.So(p1, convey.ShouldNotBeNil)
  136. })
  137. })
  138. })
  139. }
  140. func TestDaokeyTop(t *testing.T) {
  141. convey.Convey("keyTop", t, func(ctx convey.C) {
  142. var (
  143. aid = int64(1)
  144. ps = int64(1)
  145. )
  146. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  147. p1 := keyTop(aid, ps)
  148. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  149. ctx.So(p1, convey.ShouldNotBeNil)
  150. })
  151. })
  152. })
  153. }
  154. func TestDaokeyPoint(t *testing.T) {
  155. convey.Convey("keyPoint", t, func(ctx convey.C) {
  156. var (
  157. aid = int64(1)
  158. mdID = int64(1)
  159. ps = int64(1)
  160. )
  161. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  162. p1 := keyPoint(aid, mdID, ps)
  163. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  164. ctx.So(p1, convey.ShouldNotBeNil)
  165. })
  166. })
  167. })
  168. }
  169. func TestDaoFMatCache(t *testing.T) {
  170. convey.Convey("FMatCache", t, func(ctx convey.C) {
  171. var (
  172. c = context.Background()
  173. )
  174. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  175. _, err := d.FMatCache(c)
  176. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  177. ctx.So(err, convey.ShouldBeNil)
  178. })
  179. })
  180. })
  181. }
  182. func TestDaoFVideoCache(t *testing.T) {
  183. convey.Convey("FVideoCache", t, func(ctx convey.C) {
  184. var (
  185. c = context.Background()
  186. )
  187. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  188. _, err := d.FVideoCache(c)
  189. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  190. ctx.So(err, convey.ShouldBeNil)
  191. })
  192. })
  193. })
  194. }
  195. func TestDaofilterCache(t *testing.T) {
  196. convey.Convey("filterCache", t, func(ctx convey.C) {
  197. var (
  198. c = context.Background()
  199. key = "1"
  200. )
  201. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  202. _, err := d.filterCache(c, key)
  203. ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
  204. ctx.So(err, convey.ShouldBeNil)
  205. })
  206. })
  207. })
  208. }
  209. func TestDaoSetFMatCache(t *testing.T) {
  210. convey.Convey("SetFMatCache", t, func(ctx convey.C) {
  211. var (
  212. c = context.Background()
  213. fs map[string][]*model.Filter
  214. )
  215. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  216. err := d.SetFMatCache(c, fs)
  217. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  218. ctx.So(err, convey.ShouldBeNil)
  219. })
  220. })
  221. })
  222. }
  223. func TestDaoSetFVideoCache(t *testing.T) {
  224. convey.Convey("SetFVideoCache", t, func(ctx convey.C) {
  225. var (
  226. c = context.Background()
  227. fs map[string][]*model.Filter
  228. )
  229. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  230. err := d.SetFVideoCache(c, fs)
  231. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  232. ctx.So(err, convey.ShouldBeNil)
  233. })
  234. })
  235. })
  236. }
  237. func TestDaosetFilterCache(t *testing.T) {
  238. convey.Convey("setFilterCache", t, func(ctx convey.C) {
  239. var (
  240. c = context.Background()
  241. key = ""
  242. fs map[string][]*model.Filter
  243. )
  244. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  245. err := d.setFilterCache(c, key, fs)
  246. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  247. ctx.So(err, convey.ShouldBeNil)
  248. })
  249. })
  250. })
  251. }
  252. func TestDaoContestCache(t *testing.T) {
  253. convey.Convey("ContestCache", t, func(ctx convey.C) {
  254. var (
  255. c = context.Background()
  256. ps = int(1)
  257. )
  258. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  259. _, total, err := d.ContestCache(c, ps)
  260. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  261. ctx.So(err, convey.ShouldBeNil)
  262. ctx.So(total, convey.ShouldNotBeNil)
  263. })
  264. })
  265. })
  266. }
  267. func TestDaoFavCoCache(t *testing.T) {
  268. convey.Convey("FavCoCache", t, func(ctx convey.C) {
  269. var (
  270. c = context.Background()
  271. mid = int64(1)
  272. )
  273. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  274. _, total, err := d.FavCoCache(c, mid)
  275. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  276. ctx.So(err, convey.ShouldBeNil)
  277. ctx.So(total, convey.ShouldNotBeNil)
  278. })
  279. })
  280. })
  281. }
  282. func TestDaoFavCoAppCache(t *testing.T) {
  283. convey.Convey("FavCoAppCache", t, func(ctx convey.C) {
  284. var (
  285. c = context.Background()
  286. mid = int64(1)
  287. )
  288. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  289. _, total, err := d.FavCoAppCache(c, mid)
  290. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  291. ctx.So(err, convey.ShouldBeNil)
  292. ctx.So(total, convey.ShouldNotBeNil)
  293. })
  294. })
  295. })
  296. }
  297. func TestDaocosCache(t *testing.T) {
  298. convey.Convey("cosCache", t, func(ctx convey.C) {
  299. var (
  300. c = context.Background()
  301. key = "1"
  302. )
  303. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  304. _, total, err := d.cosCache(c, key)
  305. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  306. ctx.So(err, convey.ShouldBeNil)
  307. ctx.So(total, convey.ShouldNotBeNil)
  308. })
  309. })
  310. })
  311. }
  312. func TestDaoSetContestCache(t *testing.T) {
  313. convey.Convey("SetContestCache", t, func(ctx convey.C) {
  314. var (
  315. c = context.Background()
  316. ps = int(1)
  317. con = &model.Contest{}
  318. contests = []*model.Contest{con}
  319. total = int(0)
  320. )
  321. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  322. err := d.SetContestCache(c, ps, contests, total)
  323. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  324. ctx.So(err, convey.ShouldBeNil)
  325. })
  326. })
  327. })
  328. }
  329. func TestDaoSetFavCoCache(t *testing.T) {
  330. convey.Convey("SetFavCoCache", t, func(ctx convey.C) {
  331. var (
  332. c = context.Background()
  333. mid = int64(0)
  334. con = &model.Contest{}
  335. contests = []*model.Contest{con}
  336. total = int(0)
  337. )
  338. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  339. err := d.SetFavCoCache(c, mid, contests, total)
  340. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  341. ctx.So(err, convey.ShouldBeNil)
  342. })
  343. })
  344. })
  345. }
  346. func TestDaoSetAppFavCoCache(t *testing.T) {
  347. convey.Convey("SetAppFavCoCache", t, func(ctx convey.C) {
  348. var (
  349. c = context.Background()
  350. mid = int64(0)
  351. con = &model.Contest{}
  352. contests = []*model.Contest{con}
  353. total = int(0)
  354. )
  355. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  356. err := d.SetAppFavCoCache(c, mid, contests, total)
  357. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  358. ctx.So(err, convey.ShouldBeNil)
  359. })
  360. })
  361. })
  362. }
  363. func TestDaoDelFavCoCache(t *testing.T) {
  364. convey.Convey("DelFavCoCache", t, func(ctx convey.C) {
  365. var (
  366. c = context.Background()
  367. mid = int64(1)
  368. )
  369. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  370. err := d.DelFavCoCache(c, mid)
  371. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  372. ctx.So(err, convey.ShouldBeNil)
  373. })
  374. })
  375. })
  376. }
  377. func TestDaosetCosCache(t *testing.T) {
  378. convey.Convey("setCosCache", t, func(ctx convey.C) {
  379. var (
  380. c = context.Background()
  381. key = ""
  382. con = &model.Contest{}
  383. contests = []*model.Contest{con}
  384. total = int(1)
  385. )
  386. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  387. err := d.setCosCache(c, key, contests, total)
  388. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  389. ctx.So(err, convey.ShouldBeNil)
  390. })
  391. })
  392. })
  393. }
  394. func TestDaoCalendarCache(t *testing.T) {
  395. convey.Convey("CalendarCache", t, func(ctx convey.C) {
  396. var (
  397. c = context.Background()
  398. p = &model.ParamFilter{}
  399. )
  400. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  401. _, err := d.CalendarCache(c, p)
  402. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  403. ctx.So(err, convey.ShouldBeNil)
  404. })
  405. })
  406. })
  407. }
  408. func TestDaoSetCalendarCache(t *testing.T) {
  409. convey.Convey("SetCalendarCache", t, func(ctx convey.C) {
  410. var (
  411. c = context.Background()
  412. p = &model.ParamFilter{}
  413. cal = &model.Calendar{}
  414. cales = []*model.Calendar{cal}
  415. )
  416. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  417. err := d.SetCalendarCache(c, p, cales)
  418. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  419. ctx.So(err, convey.ShouldBeNil)
  420. })
  421. })
  422. })
  423. }
  424. func TestDaoVideoCache(t *testing.T) {
  425. convey.Convey("VideoCache", t, func(ctx convey.C) {
  426. var (
  427. c = context.Background()
  428. ps = int(1)
  429. )
  430. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  431. _, total, err := d.VideoCache(c, ps)
  432. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  433. ctx.So(err, convey.ShouldBeNil)
  434. ctx.So(total, convey.ShouldNotBeNil)
  435. })
  436. })
  437. })
  438. }
  439. func TestDaoSetVideoCache(t *testing.T) {
  440. convey.Convey("SetVideoCache", t, func(ctx convey.C) {
  441. var (
  442. c = context.Background()
  443. ps = int(0)
  444. arc = &arcmdl.Arc{}
  445. videos = []*arcmdl.Arc{arc}
  446. total = int(0)
  447. )
  448. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  449. err := d.SetVideoCache(c, ps, videos, total)
  450. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  451. ctx.So(err, convey.ShouldBeNil)
  452. })
  453. })
  454. })
  455. }
  456. func TestDaoseasonsCache(t *testing.T) {
  457. convey.Convey("seasonsCache", t, func(ctx convey.C) {
  458. var (
  459. c = context.Background()
  460. key = "1"
  461. start = int(0)
  462. end = int(0)
  463. )
  464. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  465. _, total, err := d.seasonsCache(c, key, start, end)
  466. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  467. ctx.So(err, convey.ShouldBeNil)
  468. ctx.So(total, convey.ShouldNotBeNil)
  469. })
  470. })
  471. })
  472. }
  473. func TestDaosetSeasonsCache(t *testing.T) {
  474. convey.Convey("setSeasonsCache", t, func(ctx convey.C) {
  475. var (
  476. c = context.Background()
  477. key = "1"
  478. seasons = []*model.Season{}
  479. total = int(0)
  480. )
  481. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  482. err := d.setSeasonsCache(c, key, seasons, total)
  483. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  484. ctx.So(err, convey.ShouldBeNil)
  485. })
  486. })
  487. })
  488. }
  489. func TestDaoSeasonCache(t *testing.T) {
  490. convey.Convey("SeasonCache", t, func(ctx convey.C) {
  491. var (
  492. c = context.Background()
  493. start = int(0)
  494. end = int(0)
  495. )
  496. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  497. _, total, err := d.SeasonCache(c, start, end)
  498. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  499. ctx.So(err, convey.ShouldBeNil)
  500. ctx.So(total, convey.ShouldNotBeNil)
  501. })
  502. })
  503. })
  504. }
  505. func TestDaoSetSeasonCache(t *testing.T) {
  506. convey.Convey("SetSeasonCache", t, func(ctx convey.C) {
  507. var (
  508. c = context.Background()
  509. seasons = []*model.Season{}
  510. total = int(0)
  511. )
  512. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  513. err := d.SetSeasonCache(c, seasons, total)
  514. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  515. ctx.So(err, convey.ShouldBeNil)
  516. })
  517. })
  518. })
  519. }
  520. func TestDaoSeasonMCache(t *testing.T) {
  521. convey.Convey("SeasonMCache", t, func(ctx convey.C) {
  522. var (
  523. c = context.Background()
  524. start = int(0)
  525. end = int(0)
  526. )
  527. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  528. _, total, err := d.SeasonMCache(c, start, end)
  529. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  530. ctx.So(err, convey.ShouldBeNil)
  531. ctx.So(total, convey.ShouldNotBeNil)
  532. })
  533. })
  534. })
  535. }
  536. func TestDaoSetSeasonMCache(t *testing.T) {
  537. convey.Convey("SetSeasonMCache", t, func(ctx convey.C) {
  538. var (
  539. c = context.Background()
  540. seasons = []*model.Season{}
  541. total = int(0)
  542. )
  543. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  544. err := d.SetSeasonMCache(c, seasons, total)
  545. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  546. ctx.So(err, convey.ShouldBeNil)
  547. })
  548. })
  549. })
  550. }
  551. func TestDaofrom(t *testing.T) {
  552. convey.Convey("from", t, func(ctx convey.C) {
  553. var (
  554. i = int64(0)
  555. )
  556. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  557. p1 := from(i)
  558. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  559. ctx.So(p1, convey.ShouldNotBeNil)
  560. })
  561. })
  562. })
  563. }
  564. func TestDaocombine(t *testing.T) {
  565. convey.Convey("combine", t, func(ctx convey.C) {
  566. var (
  567. sort = int64(0)
  568. count = int(0)
  569. )
  570. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  571. p1 := combine(sort, count)
  572. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  573. ctx.So(p1, convey.ShouldNotBeNil)
  574. })
  575. })
  576. })
  577. }
  578. func TestDaoCacheEpContests(t *testing.T) {
  579. convey.Convey("CacheEpContests", t, func(ctx convey.C) {
  580. var (
  581. c = context.Background()
  582. ids = []int64{1}
  583. )
  584. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  585. res, err := d.CacheEpContests(c, ids)
  586. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  587. ctx.So(err, convey.ShouldBeNil)
  588. ctx.So(res, convey.ShouldNotBeNil)
  589. })
  590. })
  591. })
  592. }
  593. func TestDaoAddCacheEpContests(t *testing.T) {
  594. convey.Convey("AddCacheEpContests", t, func(ctx convey.C) {
  595. var (
  596. c = context.Background()
  597. data map[int64]*model.Contest
  598. )
  599. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  600. err := d.AddCacheEpContests(c, data)
  601. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  602. ctx.So(err, convey.ShouldBeNil)
  603. })
  604. })
  605. })
  606. }
  607. func TestDaoCacheEpSeasons(t *testing.T) {
  608. convey.Convey("CacheEpSeasons", t, func(ctx convey.C) {
  609. var (
  610. c = context.Background()
  611. ids = []int64{1}
  612. )
  613. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  614. res, err := d.CacheEpSeasons(c, ids)
  615. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  616. ctx.So(err, convey.ShouldBeNil)
  617. ctx.So(res, convey.ShouldNotBeNil)
  618. })
  619. })
  620. })
  621. }
  622. func TestDaoAddCacheEpSeasons(t *testing.T) {
  623. convey.Convey("AddCacheEpSeasons", t, func(ctx convey.C) {
  624. var (
  625. c = context.Background()
  626. data map[int64]*model.Season
  627. )
  628. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  629. err := d.AddCacheEpSeasons(c, data)
  630. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  631. ctx.So(err, convey.ShouldBeNil)
  632. })
  633. })
  634. })
  635. }
  636. func TestDaoGetActPageCache(t *testing.T) {
  637. convey.Convey("GetActPageCache", t, func(ctx convey.C) {
  638. var (
  639. c = context.Background()
  640. id = int64(0)
  641. )
  642. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  643. _, err := d.GetActPageCache(c, id)
  644. ctx.Convey("Then err should be nil.act should not be nil.", func(ctx convey.C) {
  645. ctx.So(err, convey.ShouldBeNil)
  646. })
  647. })
  648. })
  649. }
  650. func TestDaoAddActPageCache(t *testing.T) {
  651. convey.Convey("AddActPageCache", t, func(ctx convey.C) {
  652. var (
  653. c = context.Background()
  654. aid = int64(0)
  655. act = &model.ActivePage{}
  656. )
  657. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  658. err := d.AddActPageCache(c, aid, act)
  659. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  660. ctx.So(err, convey.ShouldBeNil)
  661. })
  662. })
  663. })
  664. }
  665. func TestDaoGetActModuleCache(t *testing.T) {
  666. convey.Convey("GetActModuleCache", t, func(ctx convey.C) {
  667. var (
  668. c = context.Background()
  669. mmid = int64(0)
  670. )
  671. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  672. _, err := d.GetActModuleCache(c, mmid)
  673. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  674. ctx.So(err, convey.ShouldBeNil)
  675. })
  676. })
  677. })
  678. }
  679. func TestDaoAddActModuleCache(t *testing.T) {
  680. convey.Convey("AddActModuleCache", t, func(ctx convey.C) {
  681. var (
  682. c = context.Background()
  683. mmid = int64(0)
  684. module []*arcmdl.Arc
  685. )
  686. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  687. err := d.AddActModuleCache(c, mmid, module)
  688. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  689. ctx.So(err, convey.ShouldBeNil)
  690. })
  691. })
  692. })
  693. }
  694. func TestDaoGetActTopCache(t *testing.T) {
  695. convey.Convey("GetActTopCache", t, func(ctx convey.C) {
  696. var (
  697. c = context.Background()
  698. aid = int64(0)
  699. ps = int64(0)
  700. )
  701. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  702. _, total, err := d.GetActTopCache(c, aid, ps)
  703. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  704. ctx.So(err, convey.ShouldBeNil)
  705. ctx.So(total, convey.ShouldNotBeNil)
  706. })
  707. })
  708. })
  709. }
  710. func TestDaoAddActTopCache(t *testing.T) {
  711. convey.Convey("AddActTopCache", t, func(ctx convey.C) {
  712. var (
  713. c = context.Background()
  714. aid = int64(0)
  715. ps = int64(0)
  716. con = &model.Contest{}
  717. tops = []*model.Contest{con}
  718. total = int(0)
  719. )
  720. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  721. err := d.AddActTopCache(c, aid, ps, tops, total)
  722. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  723. ctx.So(err, convey.ShouldBeNil)
  724. })
  725. })
  726. })
  727. }
  728. func TestDaoGetActPointsCache(t *testing.T) {
  729. convey.Convey("GetActPointsCache", t, func(ctx convey.C) {
  730. var (
  731. c = context.Background()
  732. aid = int64(0)
  733. mdID = int64(0)
  734. ps = int64(0)
  735. )
  736. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  737. _, total, err := d.GetActPointsCache(c, aid, mdID, ps)
  738. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  739. ctx.So(err, convey.ShouldBeNil)
  740. ctx.So(total, convey.ShouldNotBeNil)
  741. })
  742. })
  743. })
  744. }
  745. func TestDaoAddActPointsCache(t *testing.T) {
  746. convey.Convey("AddActPointsCache", t, func(ctx convey.C) {
  747. var (
  748. c = context.Background()
  749. aid = int64(0)
  750. mdID = int64(0)
  751. ps = int64(0)
  752. con = &model.Contest{}
  753. points = []*model.Contest{con}
  754. total = int(0)
  755. )
  756. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  757. err := d.AddActPointsCache(c, aid, mdID, ps, points, total)
  758. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  759. ctx.So(err, convey.ShouldBeNil)
  760. })
  761. })
  762. })
  763. }
  764. func TestDaoGetActKnockoutCache(t *testing.T) {
  765. convey.Convey("GetActKnockoutCache", t, func(ctx convey.C) {
  766. var (
  767. c = context.Background()
  768. mdID = int64(0)
  769. )
  770. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  771. _, err := d.GetActKnockoutCache(c, mdID)
  772. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  773. ctx.So(err, convey.ShouldBeNil)
  774. })
  775. })
  776. })
  777. }
  778. func TestDaoAddActKnockoutCache(t *testing.T) {
  779. convey.Convey("AddActKnockoutCache", t, func(ctx convey.C) {
  780. var (
  781. c = context.Background()
  782. mdID = int64(0)
  783. knock = [][]*model.TreeList{}
  784. )
  785. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  786. err := d.AddActKnockoutCache(c, mdID, knock)
  787. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  788. ctx.So(err, convey.ShouldBeNil)
  789. })
  790. })
  791. })
  792. }
  793. func TestDaoAddActKnockCacheTime(t *testing.T) {
  794. convey.Convey("AddActKnockCacheTime", t, func(convCtx convey.C) {
  795. var (
  796. c = context.Background()
  797. mdID = int64(1)
  798. )
  799. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  800. err := d.AddActKnockCacheTime(c, mdID)
  801. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  802. convCtx.So(err, convey.ShouldBeNil)
  803. })
  804. })
  805. })
  806. }
  807. func TestDaoGetMActCache(t *testing.T) {
  808. convey.Convey("GetMActCache", t, func(convCtx convey.C) {
  809. var (
  810. c = context.Background()
  811. aid = int64(1)
  812. )
  813. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  814. res, err := d.GetMActCache(c, aid)
  815. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  816. convCtx.So(err, convey.ShouldBeNil)
  817. println(res)
  818. })
  819. })
  820. })
  821. }
  822. func TestDaoAddMActCache(t *testing.T) {
  823. convey.Convey("AddMActCache", t, func(convCtx convey.C) {
  824. var (
  825. c = context.Background()
  826. aid = int64(1)
  827. act = &model.Active{}
  828. )
  829. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  830. err := d.AddMActCache(c, aid, act)
  831. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  832. convCtx.So(err, convey.ShouldBeNil)
  833. })
  834. })
  835. })
  836. }