like_test.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. package like
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/activity/model/like"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. func TestLikeipRequestKey(t *testing.T) {
  12. convey.Convey("ipRequestKey", t, func(ctx convey.C) {
  13. var (
  14. ip = "10.256.8.3"
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. p1 := ipRequestKey(ip)
  18. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  19. ctx.So(p1, convey.ShouldNotBeNil)
  20. })
  21. })
  22. })
  23. }
  24. func TestLikelikeListCtimeKey(t *testing.T) {
  25. convey.Convey("likeListCtimeKey", t, func(ctx convey.C) {
  26. var (
  27. sid = int64(10256)
  28. )
  29. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  30. p1 := likeListCtimeKey(sid)
  31. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  32. ctx.So(p1, convey.ShouldNotBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestLikeListRandomKey(t *testing.T) {
  38. convey.Convey("likeListCtimeKey", t, func(ctx convey.C) {
  39. var (
  40. sid = int64(10256)
  41. )
  42. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  43. p1 := likeListRandomKey(sid)
  44. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  45. ctx.So(p1, convey.ShouldNotBeNil)
  46. })
  47. })
  48. })
  49. }
  50. func TestLikelikeListTypeCtimeKey(t *testing.T) {
  51. convey.Convey("likeListTypeCtimeKey", t, func(ctx convey.C) {
  52. var (
  53. types = int(1)
  54. sid = int64(10256)
  55. )
  56. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  57. p1 := likeListTypeCtimeKey(types, sid)
  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 TestLikekeyLikeTag(t *testing.T) {
  65. convey.Convey("keyLikeTag", t, func(ctx convey.C) {
  66. var (
  67. sid = int64(10256)
  68. tagID = int64(1)
  69. )
  70. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  71. p1 := keyLikeTag(sid, tagID)
  72. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  73. ctx.So(p1, convey.ShouldNotBeNil)
  74. })
  75. })
  76. })
  77. }
  78. func TestLikekeyLikeTagCounts(t *testing.T) {
  79. convey.Convey("keyLikeTagCounts", t, func(ctx convey.C) {
  80. var (
  81. sid = int64(10256)
  82. )
  83. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  84. p1 := keyLikeTagCounts(sid)
  85. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  86. ctx.So(p1, convey.ShouldNotBeNil)
  87. })
  88. })
  89. })
  90. }
  91. func TestLikekeyLikeRegion(t *testing.T) {
  92. convey.Convey("keyLikeRegion", t, func(ctx convey.C) {
  93. var (
  94. sid = int64(10256)
  95. regionID = int16(1)
  96. )
  97. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  98. p1 := keyLikeRegion(sid, regionID)
  99. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  100. ctx.So(p1, convey.ShouldNotBeNil)
  101. })
  102. })
  103. })
  104. }
  105. func TestLikekeyStoryLikeKey(t *testing.T) {
  106. convey.Convey("keyStoryLikeKey", t, func(ctx convey.C) {
  107. var (
  108. sid = int64(10256)
  109. mid = int64(1)
  110. daily = ""
  111. )
  112. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  113. p1 := keyStoryLikeKey(sid, mid, daily)
  114. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  115. ctx.So(p1, convey.ShouldNotBeNil)
  116. })
  117. })
  118. })
  119. }
  120. func TestLikekeyStoryEachLike(t *testing.T) {
  121. convey.Convey("keyStoryEachLike", t, func(ctx convey.C) {
  122. var (
  123. sid = int64(10256)
  124. mid = int64(1)
  125. lid = int64(1)
  126. daily = ""
  127. )
  128. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  129. p1 := keyStoryEachLike(sid, mid, lid, daily)
  130. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  131. ctx.So(p1, convey.ShouldNotBeNil)
  132. })
  133. })
  134. })
  135. }
  136. func TestLikeLikeList(t *testing.T) {
  137. convey.Convey("LikeList", t, func(ctx convey.C) {
  138. var (
  139. c = context.Background()
  140. sid = int64(10256)
  141. )
  142. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  143. ns, err := d.LikeList(c, sid)
  144. ctx.Convey("Then err should be nil.ns should not be nil.", func(ctx convey.C) {
  145. ctx.So(err, convey.ShouldBeNil)
  146. ctx.So(ns, convey.ShouldNotBeNil)
  147. })
  148. })
  149. })
  150. }
  151. func TestLikeLikeTagCache(t *testing.T) {
  152. convey.Convey("LikeTagCache", t, func(ctx convey.C) {
  153. var (
  154. c = context.Background()
  155. sid = int64(10256)
  156. tagID = int64(1)
  157. start = int(1)
  158. end = int(2)
  159. )
  160. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  161. likes, err := d.LikeTagCache(c, sid, tagID, start, end)
  162. ctx.Convey("Then err should be nil.likes should not be nil.", func(ctx convey.C) {
  163. ctx.So(err, convey.ShouldBeNil)
  164. fmt.Printf("%+v", likes)
  165. })
  166. })
  167. })
  168. }
  169. func TestLikeLikeTagCnt(t *testing.T) {
  170. convey.Convey("LikeTagCnt", t, func(ctx convey.C) {
  171. var (
  172. c = context.Background()
  173. sid = int64(10256)
  174. tagID = int64(1)
  175. )
  176. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  177. count, err := d.LikeTagCnt(c, sid, tagID)
  178. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  179. ctx.So(err, convey.ShouldBeNil)
  180. ctx.So(count, convey.ShouldNotBeNil)
  181. })
  182. })
  183. })
  184. }
  185. func TestLikeLikeRegionCache(t *testing.T) {
  186. convey.Convey("LikeRegionCache", t, func(ctx convey.C) {
  187. var (
  188. c = context.Background()
  189. sid = int64(10256)
  190. regionID = int16(1)
  191. start = int(1)
  192. end = int(2)
  193. )
  194. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  195. likes, err := d.LikeRegionCache(c, sid, regionID, start, end)
  196. ctx.Convey("Then err should be nil.likes should not be nil.", func(ctx convey.C) {
  197. ctx.So(err, convey.ShouldBeNil)
  198. fmt.Printf("%+v", likes)
  199. })
  200. })
  201. })
  202. }
  203. func TestLikeLikeRegionCnt(t *testing.T) {
  204. convey.Convey("LikeRegionCnt", t, func(ctx convey.C) {
  205. var (
  206. c = context.Background()
  207. sid = int64(10256)
  208. regionID = int16(1)
  209. )
  210. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  211. count, err := d.LikeRegionCnt(c, sid, regionID)
  212. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  213. ctx.So(err, convey.ShouldBeNil)
  214. ctx.So(count, convey.ShouldNotBeNil)
  215. })
  216. })
  217. })
  218. }
  219. func TestLikeSetLikeRegionCache(t *testing.T) {
  220. convey.Convey("SetLikeRegionCache", t, func(ctx convey.C) {
  221. var (
  222. c = context.Background()
  223. sid = int64(10256)
  224. regionID = int16(1)
  225. likes = []*like.Item{{Sid: 10256, Wid: 1, Mid: 44}}
  226. )
  227. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  228. err := d.SetLikeRegionCache(c, sid, regionID, likes)
  229. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  230. ctx.So(err, convey.ShouldBeNil)
  231. })
  232. })
  233. })
  234. }
  235. func TestLikeSetTagLikeCountsCache(t *testing.T) {
  236. convey.Convey("SetTagLikeCountsCache", t, func(ctx convey.C) {
  237. var (
  238. c = context.Background()
  239. sid = int64(10256)
  240. counts = map[int64]int32{1: 2}
  241. )
  242. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  243. err := d.SetTagLikeCountsCache(c, sid, counts)
  244. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  245. ctx.So(err, convey.ShouldBeNil)
  246. })
  247. })
  248. })
  249. }
  250. func TestLikeTagLikeCountsCache(t *testing.T) {
  251. convey.Convey("TagLikeCountsCache", t, func(ctx convey.C) {
  252. var (
  253. c = context.Background()
  254. sid = int64(10256)
  255. tagIDs = []int64{1}
  256. )
  257. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  258. counts, err := d.TagLikeCountsCache(c, sid, tagIDs)
  259. ctx.Convey("Then err should be nil.counts should not be nil.", func(ctx convey.C) {
  260. ctx.So(err, convey.ShouldBeNil)
  261. ctx.So(counts, convey.ShouldNotBeNil)
  262. })
  263. })
  264. })
  265. }
  266. func TestLikeRawLike(t *testing.T) {
  267. convey.Convey("RawLike", t, func(ctx convey.C) {
  268. var (
  269. c = context.Background()
  270. id = int64(10256)
  271. )
  272. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  273. res, err := d.RawLike(c, id)
  274. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  275. ctx.So(err, convey.ShouldBeNil)
  276. ctx.So(res, convey.ShouldNotBeNil)
  277. })
  278. })
  279. })
  280. }
  281. func TestLikeLikeListMoreLid(t *testing.T) {
  282. convey.Convey("LikeListMoreLid", t, func(ctx convey.C) {
  283. var (
  284. c = context.Background()
  285. lid = int64(10256)
  286. )
  287. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  288. res, err := d.LikeListMoreLid(c, lid)
  289. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  290. ctx.So(err, convey.ShouldBeNil)
  291. ctx.So(res, convey.ShouldNotBeNil)
  292. })
  293. })
  294. })
  295. }
  296. func TestLikeLikesBySid(t *testing.T) {
  297. convey.Convey("LikesBySid", t, func(ctx convey.C) {
  298. var (
  299. c = context.Background()
  300. lid = int64(77)
  301. sid = int64(10256)
  302. )
  303. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  304. res, err := d.LikesBySid(c, lid, sid)
  305. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  306. ctx.So(err, convey.ShouldBeNil)
  307. ctx.So(res, convey.ShouldNotBeNil)
  308. })
  309. })
  310. })
  311. }
  312. func TestLikeIPReqquestCheck(t *testing.T) {
  313. convey.Convey("IPReqquestCheck", t, func(ctx convey.C) {
  314. var (
  315. c = context.Background()
  316. ip = "10.248.56.23"
  317. )
  318. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  319. val, err := d.IPReqquestCheck(c, ip)
  320. ctx.Convey("Then err should be nil.val should not be nil.", func(ctx convey.C) {
  321. ctx.So(err, convey.ShouldBeNil)
  322. ctx.So(val, convey.ShouldNotBeNil)
  323. })
  324. })
  325. })
  326. }
  327. func TestLikeSetIPRequest(t *testing.T) {
  328. convey.Convey("SetIPRequest", t, func(ctx convey.C) {
  329. var (
  330. c = context.Background()
  331. ip = "10.248.56.23"
  332. )
  333. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  334. err := d.SetIPRequest(c, ip)
  335. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  336. ctx.So(err, convey.ShouldBeNil)
  337. })
  338. })
  339. })
  340. }
  341. func TestLikeLikeListCtime(t *testing.T) {
  342. convey.Convey("LikeListCtime", t, func(ctx convey.C) {
  343. var (
  344. c = context.Background()
  345. sid = int64(10256)
  346. items = []*like.Item{{Sid: 10256, Wid: 55, Mid: 234}}
  347. )
  348. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  349. err := d.LikeListCtime(c, sid, items)
  350. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  351. ctx.So(err, convey.ShouldBeNil)
  352. })
  353. })
  354. })
  355. }
  356. func TestLikeDelLikeListCtime(t *testing.T) {
  357. convey.Convey("DelLikeListCtime", t, func(ctx convey.C) {
  358. var (
  359. c = context.Background()
  360. sid = int64(10256)
  361. items = []*like.Item{{Sid: 10256, Wid: 55, Mid: 234}}
  362. )
  363. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  364. err := d.DelLikeListCtime(c, sid, items)
  365. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  366. ctx.So(err, convey.ShouldBeNil)
  367. })
  368. })
  369. })
  370. }
  371. func TestLikeLikeMaxID(t *testing.T) {
  372. convey.Convey("LikeMaxID", t, func(ctx convey.C) {
  373. var (
  374. c = context.Background()
  375. )
  376. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  377. res, err := d.LikeMaxID(c)
  378. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  379. ctx.So(err, convey.ShouldBeNil)
  380. fmt.Printf("%+v", res)
  381. })
  382. })
  383. })
  384. }
  385. func TestLikeStoryLikeSum(t *testing.T) {
  386. convey.Convey("StoryLikeSum", t, func(ctx convey.C) {
  387. var (
  388. c = context.Background()
  389. sid = int64(10256)
  390. mid = int64(77)
  391. )
  392. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  393. res, err := d.StoryLikeSum(c, sid, mid)
  394. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  395. ctx.So(err, convey.ShouldBeNil)
  396. ctx.So(res, convey.ShouldNotBeNil)
  397. })
  398. })
  399. })
  400. }
  401. func TestLikeIncrStoryLikeSum(t *testing.T) {
  402. convey.Convey("IncrStoryLikeSum", t, func(ctx convey.C) {
  403. var (
  404. c = context.Background()
  405. sid = int64(10256)
  406. mid = int64(77)
  407. score = int64(1)
  408. )
  409. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  410. res, err := d.IncrStoryLikeSum(c, sid, mid, score)
  411. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  412. ctx.So(err, convey.ShouldBeNil)
  413. ctx.So(res, convey.ShouldNotBeNil)
  414. })
  415. })
  416. })
  417. }
  418. func TestLikeSetLikeSum(t *testing.T) {
  419. convey.Convey("SetLikeSum", t, func(ctx convey.C) {
  420. var (
  421. c = context.Background()
  422. sid = int64(10256)
  423. mid = int64(77)
  424. sum = int64(1)
  425. )
  426. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  427. err := d.SetLikeSum(c, sid, mid, sum)
  428. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  429. fmt.Printf("%v", err)
  430. })
  431. })
  432. })
  433. }
  434. func TestLikeStoryEachLikeSum(t *testing.T) {
  435. convey.Convey("StoryEachLikeSum", t, func(ctx convey.C) {
  436. var (
  437. c = context.Background()
  438. sid = int64(10296)
  439. mid = int64(216761)
  440. lid = int64(13538)
  441. )
  442. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  443. res, err := d.StoryEachLikeSum(c, sid, mid, lid)
  444. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  445. ctx.So(err, convey.ShouldBeNil)
  446. fmt.Printf("%d", res)
  447. })
  448. })
  449. })
  450. }
  451. func TestLikeIncrStoryEachLikeAct(t *testing.T) {
  452. convey.Convey("IncrStoryEachLikeAct", t, func(ctx convey.C) {
  453. var (
  454. c = context.Background()
  455. sid = int64(10256)
  456. mid = int64(77)
  457. lid = int64(77)
  458. score = int64(1)
  459. )
  460. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  461. res, err := d.IncrStoryEachLikeAct(c, sid, mid, lid, score)
  462. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  463. ctx.So(err, convey.ShouldBeNil)
  464. ctx.So(res, convey.ShouldNotBeNil)
  465. })
  466. })
  467. })
  468. }
  469. func TestLikeSetEachLikeSum(t *testing.T) {
  470. convey.Convey("SetEachLikeSum", t, func(ctx convey.C) {
  471. var (
  472. c = context.Background()
  473. sid = int64(10256)
  474. mid = int64(77)
  475. lid = int64(77)
  476. sum = int64(1)
  477. )
  478. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  479. err := d.SetEachLikeSum(c, sid, mid, lid, sum)
  480. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  481. fmt.Printf("%v", err)
  482. })
  483. })
  484. })
  485. }
  486. func TestLikeCtime(t *testing.T) {
  487. convey.Convey("SetEachLikeSum", t, func(ctx convey.C) {
  488. var (
  489. c = context.Background()
  490. sid = int64(10365)
  491. start = 1
  492. end = 100
  493. )
  494. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  495. res, err := d.LikeCtime(c, sid, start, end)
  496. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  497. ctx.So(err, convey.ShouldBeNil)
  498. fmt.Printf("%v", res)
  499. })
  500. })
  501. })
  502. }
  503. func TestLikeRandom(t *testing.T) {
  504. convey.Convey("SetEachLikeSum", t, func(ctx convey.C) {
  505. var (
  506. c = context.Background()
  507. sid = int64(10365)
  508. start = 1
  509. end = 100
  510. )
  511. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  512. res, err := d.LikeRandom(c, sid, start, end)
  513. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  514. ctx.So(err, convey.ShouldBeNil)
  515. fmt.Printf("%v", res)
  516. })
  517. })
  518. })
  519. }
  520. func TestLikeRandomCount(t *testing.T) {
  521. convey.Convey("SetEachLikeSum", t, func(ctx convey.C) {
  522. var (
  523. c = context.Background()
  524. sid = int64(10365)
  525. )
  526. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  527. res, err := d.LikeRandomCount(c, sid)
  528. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  529. ctx.So(err, convey.ShouldBeNil)
  530. fmt.Printf("%v", res)
  531. })
  532. })
  533. })
  534. }
  535. func TestSetLikeRandom(t *testing.T) {
  536. convey.Convey("SetEachLikeSum", t, func(ctx convey.C) {
  537. var (
  538. c = context.Background()
  539. sid = int64(10365)
  540. ids = []int64{2354, 2355}
  541. )
  542. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  543. err := d.SetLikeRandom(c, sid, ids)
  544. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  545. ctx.So(err, convey.ShouldBeNil)
  546. })
  547. })
  548. })
  549. }
  550. func TestLikeCount(t *testing.T) {
  551. convey.Convey("SetEachLikeSum", t, func(ctx convey.C) {
  552. var (
  553. c = context.Background()
  554. sid = int64(10365)
  555. )
  556. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  557. res, err := d.LikeCount(c, sid)
  558. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  559. ctx.So(err, convey.ShouldBeNil)
  560. fmt.Printf("%v", res)
  561. })
  562. })
  563. })
  564. }
  565. func TestDao_SourceItemData(t *testing.T) {
  566. convey.Convey("test group item data", t, func(ctx convey.C) {
  567. sid := int64(37)
  568. data, err := d.SourceItemData(context.Background(), sid)
  569. convey.So(err, convey.ShouldBeNil)
  570. str, _ := json.Marshal(data)
  571. convey.Printf("%+v", string(str))
  572. })
  573. }
  574. func TestDao_ListFromES(t *testing.T) {
  575. convey.Convey("test group item data", t, func(ctx convey.C) {
  576. sid := int64(1)
  577. ps := 100
  578. pn := 1
  579. data, err := d.ListFromES(context.Background(), sid, "", ps, pn, time.Now().Unix())
  580. convey.So(err, convey.ShouldBeNil)
  581. for _, v := range data.List {
  582. convey.Printf(" %+v ", v.Item)
  583. }
  584. })
  585. }
  586. func TestDao_MultiTags(t *testing.T) {
  587. convey.Convey("test group item data", t, func(ctx convey.C) {
  588. wids := []int64{10109984}
  589. data, err := d.MultiTags(context.Background(), wids)
  590. convey.So(err, convey.ShouldBeNil)
  591. convey.Printf("%+v", data)
  592. })
  593. }
  594. func TestDao_OidInfoFromES(t *testing.T) {
  595. convey.Convey("test group item data", t, func(ctx convey.C) {
  596. oids := []int64{11, 21}
  597. stype := 1
  598. data, err := d.OidInfoFromES(context.Background(), oids, stype)
  599. convey.So(err, convey.ShouldBeNil)
  600. convey.Printf("%+v", data)
  601. })
  602. }