match_redis_test.go 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. package like
  2. import (
  3. "context"
  4. match "go-common/app/interface/main/activity/model/like"
  5. xtime "go-common/library/time"
  6. "testing"
  7. "time"
  8. "fmt"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. func TestLikekeyMatch(t *testing.T) {
  12. convey.Convey("keyMatch", t, func(ctx convey.C) {
  13. var (
  14. id = int64(1)
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. p1 := keyMatch(id)
  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 TestLikekeyActMatch(t *testing.T) {
  25. convey.Convey("keyActMatch", 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 := keyActMatch(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 TestLikekeyObject(t *testing.T) {
  38. convey.Convey("keyObject", t, func(ctx convey.C) {
  39. var (
  40. id = int64(10256)
  41. )
  42. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  43. p1 := keyObject(id)
  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 TestLikekeyObjects(t *testing.T) {
  51. convey.Convey("keyObjects", t, func(ctx convey.C) {
  52. var (
  53. sid = int64(10256)
  54. )
  55. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  56. p1 := keyObjects(sid)
  57. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  58. ctx.So(p1, convey.ShouldNotBeNil)
  59. })
  60. })
  61. })
  62. }
  63. func TestLikekeyUserLog(t *testing.T) {
  64. convey.Convey("keyUserLog", t, func(ctx convey.C) {
  65. var (
  66. sid = int64(10256)
  67. mid = int64(77)
  68. )
  69. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  70. p1 := keyUserLog(sid, mid)
  71. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  72. ctx.So(p1, convey.ShouldNotBeNil)
  73. })
  74. })
  75. })
  76. }
  77. func TestLikekeyMatchFollow(t *testing.T) {
  78. convey.Convey("keyMatchFollow", t, func(ctx convey.C) {
  79. var (
  80. mid = int64(10256)
  81. )
  82. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  83. p1 := keyMatchFollow(mid)
  84. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  85. ctx.So(p1, convey.ShouldNotBeNil)
  86. })
  87. })
  88. })
  89. }
  90. func TestLikeMatchCache(t *testing.T) {
  91. convey.Convey("MatchCache", t, func(ctx convey.C) {
  92. var (
  93. c = context.Background()
  94. id = int64(10256)
  95. )
  96. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  97. mat, err := d.MatchCache(c, id)
  98. ctx.Convey("Then err should be nil.mat should not be nil.", func(ctx convey.C) {
  99. ctx.So(err, convey.ShouldBeNil)
  100. fmt.Printf("%+v", mat)
  101. })
  102. })
  103. })
  104. }
  105. func TestLikeSetMatchCache(t *testing.T) {
  106. convey.Convey("SetMatchCache", t, func(ctx convey.C) {
  107. var (
  108. c = context.Background()
  109. id = int64(10256)
  110. mat = &match.Match{Sid: 10256}
  111. )
  112. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  113. err := d.SetMatchCache(c, id, mat)
  114. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  115. ctx.So(err, convey.ShouldBeNil)
  116. })
  117. })
  118. })
  119. }
  120. func TestLikeActMatchCache(t *testing.T) {
  121. convey.Convey("ActMatchCache", t, func(ctx convey.C) {
  122. var (
  123. c = context.Background()
  124. sid = int64(10256)
  125. )
  126. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  127. res, err := d.ActMatchCache(c, sid)
  128. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  129. ctx.So(err, convey.ShouldBeNil)
  130. fmt.Printf("%+v", res)
  131. })
  132. })
  133. })
  134. }
  135. func TestLikeSetActMatchCache(t *testing.T) {
  136. convey.Convey("SetActMatchCache", t, func(ctx convey.C) {
  137. var (
  138. c = context.Background()
  139. sid = int64(10256)
  140. matchs = []*match.Match{{Sid: 10256}}
  141. )
  142. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  143. err := d.SetActMatchCache(c, sid, matchs)
  144. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  145. ctx.So(err, convey.ShouldBeNil)
  146. })
  147. })
  148. })
  149. }
  150. func TestLikeObjectCache(t *testing.T) {
  151. convey.Convey("ObjectCache", t, func(ctx convey.C) {
  152. var (
  153. c = context.Background()
  154. id = int64(10256)
  155. )
  156. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  157. mat, err := d.ObjectCache(c, id)
  158. ctx.Convey("Then err should be nil.mat should not be nil.", func(ctx convey.C) {
  159. ctx.So(err, convey.ShouldBeNil)
  160. fmt.Printf("%+v", mat)
  161. })
  162. })
  163. })
  164. }
  165. func TestLikeCacheMatchSubjects(t *testing.T) {
  166. convey.Convey("CacheMatchSubjects", t, func(ctx convey.C) {
  167. var (
  168. c = context.Background()
  169. ids = []int64{10256}
  170. )
  171. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  172. res, err := d.CacheMatchSubjects(c, ids)
  173. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  174. ctx.So(err, convey.ShouldBeNil)
  175. ctx.So(res, convey.ShouldNotBeNil)
  176. })
  177. })
  178. })
  179. }
  180. func TestLikeSetObjectCache(t *testing.T) {
  181. convey.Convey("SetObjectCache", t, func(ctx convey.C) {
  182. var (
  183. c = context.Background()
  184. id = int64(10256)
  185. object = &match.Object{Sid: 10256}
  186. )
  187. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  188. err := d.SetObjectCache(c, id, object)
  189. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  190. ctx.So(err, convey.ShouldBeNil)
  191. })
  192. })
  193. })
  194. }
  195. func TestLikeAddCacheMatchSubjects(t *testing.T) {
  196. convey.Convey("AddCacheMatchSubjects", t, func(ctx convey.C) {
  197. var (
  198. c = context.Background()
  199. data = map[int64]*match.Object{1: {Sid: 1}}
  200. )
  201. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  202. err := d.AddCacheMatchSubjects(c, data)
  203. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  204. ctx.So(err, convey.ShouldBeNil)
  205. })
  206. })
  207. })
  208. }
  209. func TestLikeObjectsCache(t *testing.T) {
  210. convey.Convey("ObjectsCache", t, func(ctx convey.C) {
  211. var (
  212. c = context.Background()
  213. sid = int64(10256)
  214. start = int(1)
  215. end = int(2)
  216. )
  217. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  218. res, total, err := d.ObjectsCache(c, sid, start, end)
  219. ctx.Convey("Then err should be nil.res,total should not be nil.", func(ctx convey.C) {
  220. ctx.So(err, convey.ShouldBeNil)
  221. fmt.Printf("%+v,%+v", res, total)
  222. })
  223. })
  224. })
  225. }
  226. func TestLikeSetObjectsCache(t *testing.T) {
  227. convey.Convey("SetObjectsCache", t, func(ctx convey.C) {
  228. var (
  229. c = context.Background()
  230. sid = int64(10256)
  231. objects = []*match.Object{{Sid: 10256}}
  232. total = int(0)
  233. )
  234. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  235. err := d.SetObjectsCache(c, sid, objects, total)
  236. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  237. ctx.So(err, convey.ShouldBeNil)
  238. })
  239. })
  240. })
  241. }
  242. func TestLikeSetUserLogCache(t *testing.T) {
  243. convey.Convey("SetUserLogCache", t, func(ctx convey.C) {
  244. var (
  245. c = context.Background()
  246. sid = int64(10256)
  247. mid = int64(7)
  248. userLogs = []*match.UserLog{{Sid: 10256}}
  249. )
  250. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  251. err := d.SetUserLogCache(c, sid, mid, userLogs)
  252. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  253. ctx.So(err, convey.ShouldBeNil)
  254. })
  255. })
  256. })
  257. }
  258. func TestLikeDelUserLogCache(t *testing.T) {
  259. convey.Convey("DelUserLogCache", t, func(ctx convey.C) {
  260. var (
  261. c = context.Background()
  262. sid = int64(10256)
  263. mid = int64(77)
  264. )
  265. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  266. err := d.DelUserLogCache(c, sid, mid)
  267. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  268. ctx.So(err, convey.ShouldBeNil)
  269. })
  270. })
  271. })
  272. }
  273. func TestLikeDelActMatchCache(t *testing.T) {
  274. convey.Convey("DelActMatchCache", t, func(ctx convey.C) {
  275. var (
  276. c = context.Background()
  277. sid = int64(10256)
  278. matID = int64(7)
  279. )
  280. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  281. err := d.DelActMatchCache(c, sid, matID)
  282. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  283. ctx.So(err, convey.ShouldBeNil)
  284. })
  285. })
  286. })
  287. }
  288. func TestLikeDelObjectCache(t *testing.T) {
  289. convey.Convey("DelObjectCache", t, func(ctx convey.C) {
  290. var (
  291. c = context.Background()
  292. objID = int64(1)
  293. sid = int64(10256)
  294. )
  295. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  296. err := d.DelObjectCache(c, objID, sid)
  297. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  298. ctx.So(err, convey.ShouldBeNil)
  299. })
  300. })
  301. })
  302. }
  303. func TestLikeAddFollow(t *testing.T) {
  304. convey.Convey("AddFollow", t, func(ctx convey.C) {
  305. var (
  306. c = context.Background()
  307. mid = int64(77)
  308. teams = []string{"qwe"}
  309. )
  310. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  311. err := d.AddFollow(c, mid, teams)
  312. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  313. ctx.So(err, convey.ShouldBeNil)
  314. })
  315. })
  316. })
  317. }
  318. func TestLikeFollow(t *testing.T) {
  319. convey.Convey("Follow", t, func(ctx convey.C) {
  320. var (
  321. c = context.Background()
  322. mid = int64(77)
  323. )
  324. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  325. res, err := d.Follow(c, mid)
  326. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  327. ctx.So(err, convey.ShouldBeNil)
  328. ctx.So(res, convey.ShouldNotBeNil)
  329. })
  330. })
  331. })
  332. }
  333. func TestLikefrom(t *testing.T) {
  334. convey.Convey("from", t, func(ctx convey.C) {
  335. var (
  336. i = int64(77)
  337. )
  338. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  339. p1 := from(i)
  340. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  341. ctx.So(p1, convey.ShouldNotBeNil)
  342. })
  343. })
  344. })
  345. }
  346. func TestLikecombine(t *testing.T) {
  347. convey.Convey("combine", t, func(ctx convey.C) {
  348. var (
  349. ctime = xtime.Time(time.Now().Unix())
  350. count = int(1)
  351. )
  352. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  353. p1 := combine(ctime, count)
  354. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  355. ctx.So(p1, convey.ShouldNotBeNil)
  356. })
  357. })
  358. })
  359. }