overview_mc_test.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. package data
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/data"
  5. artmdl "go-common/app/interface/openplatform/article/model"
  6. "go-common/library/cache/memcache"
  7. "reflect"
  8. "testing"
  9. "github.com/bouk/monkey"
  10. "github.com/smartystreets/goconvey/convey"
  11. )
  12. func TestDatakeyBase(t *testing.T) {
  13. var (
  14. mid = int64(1)
  15. date = ""
  16. )
  17. convey.Convey("keyBase", t, func(ctx convey.C) {
  18. p1 := keyBase(mid, date)
  19. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  20. ctx.So(p1, convey.ShouldNotBeNil)
  21. })
  22. })
  23. }
  24. func TestDatakeyArea(t *testing.T) {
  25. var (
  26. mid = int64(0)
  27. date = ""
  28. )
  29. convey.Convey("keyArea", t, func(ctx convey.C) {
  30. p1 := keyArea(mid, date)
  31. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  32. ctx.So(p1, convey.ShouldNotBeNil)
  33. })
  34. })
  35. }
  36. func TestDatakeyTrend(t *testing.T) {
  37. var (
  38. mid = int64(1)
  39. date = ""
  40. )
  41. convey.Convey("keyTrend", t, func(ctx convey.C) {
  42. p1 := keyTrend(mid, date)
  43. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  44. ctx.So(p1, convey.ShouldNotBeNil)
  45. })
  46. })
  47. }
  48. func TestDatakeyRfd(t *testing.T) {
  49. var (
  50. mid = int64(1)
  51. date = ""
  52. )
  53. convey.Convey("keyRfd", t, func(ctx convey.C) {
  54. p1 := keyRfd(mid, date)
  55. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  56. ctx.So(p1, convey.ShouldNotBeNil)
  57. })
  58. })
  59. }
  60. func TestDatakeyRfm(t *testing.T) {
  61. var (
  62. mid = int64(1)
  63. date = ""
  64. )
  65. convey.Convey("keyRfm", t, func(ctx convey.C) {
  66. p1 := keyRfm(mid, date)
  67. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  68. ctx.So(p1, convey.ShouldNotBeNil)
  69. })
  70. })
  71. }
  72. func TestDatakeyAct(t *testing.T) {
  73. var (
  74. mid = int64(0)
  75. date = ""
  76. )
  77. convey.Convey("keyAct", t, func(ctx convey.C) {
  78. p1 := keyAct(mid, date)
  79. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  80. ctx.So(p1, convey.ShouldNotBeNil)
  81. })
  82. })
  83. }
  84. func TestDatakeyViewIncr(t *testing.T) {
  85. var (
  86. mid = int64(1)
  87. ty = ""
  88. date = ""
  89. )
  90. convey.Convey("keyViewIncr", t, func(ctx convey.C) {
  91. p1 := keyViewIncr(mid, ty, date)
  92. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  93. ctx.So(p1, convey.ShouldNotBeNil)
  94. })
  95. })
  96. }
  97. func TestDatakeyThirtyDayArchive(t *testing.T) {
  98. var (
  99. mid = int64(1)
  100. ty = ""
  101. )
  102. convey.Convey("keyThirtyDayArchive", t, func(ctx convey.C) {
  103. p1 := keyThirtyDayArchive(mid, ty)
  104. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  105. ctx.So(p1, convey.ShouldNotBeNil)
  106. })
  107. })
  108. }
  109. func TestDatakeyThirtyDayArticle(t *testing.T) {
  110. var (
  111. mid = int64(1)
  112. )
  113. convey.Convey("keyThirtyDayArticle", t, func(ctx convey.C) {
  114. p1 := keyThirtyDayArticle(mid)
  115. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  116. ctx.So(p1, convey.ShouldNotBeNil)
  117. })
  118. })
  119. }
  120. func TestDataViewerBaseCache(t *testing.T) {
  121. var (
  122. c = context.TODO()
  123. mid = int64(1)
  124. dt = "dt"
  125. err error
  126. )
  127. convey.Convey("ViewerBaseCache1", t, func(ctx convey.C) {
  128. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  129. return memcache.MockWith(memcache.ErrExists)
  130. })
  131. defer connGuard.Unpatch()
  132. _, err = d.ViewerBaseCache(c, mid, dt)
  133. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  134. ctx.So(err, convey.ShouldNotBeNil)
  135. })
  136. })
  137. convey.Convey("ViewerBaseCache2", t, func(ctx convey.C) {
  138. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  139. return memcache.MockWith(memcache.ErrNotFound)
  140. })
  141. defer connGuard.Unpatch()
  142. _, err = d.ViewerBaseCache(c, mid, dt)
  143. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  144. ctx.So(err, convey.ShouldBeNil)
  145. })
  146. })
  147. }
  148. func TestDataAddViewerBaseCache(t *testing.T) {
  149. var (
  150. c = context.TODO()
  151. mid = int64(1)
  152. dt = ""
  153. res map[string]*data.ViewerBase
  154. )
  155. convey.Convey("AddViewerBaseCache", t, func(ctx convey.C) {
  156. err := d.AddViewerBaseCache(c, mid, dt, res)
  157. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  158. ctx.So(err, convey.ShouldBeNil)
  159. })
  160. })
  161. }
  162. func TestDataViewerAreaCache(t *testing.T) {
  163. var (
  164. c = context.TODO()
  165. mid = int64(1)
  166. dt = "dt"
  167. )
  168. convey.Convey("ViewerAreaCache1", t, func(ctx convey.C) {
  169. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  170. return memcache.MockWith(memcache.ErrExists)
  171. })
  172. defer connGuard.Unpatch()
  173. _, err := d.ViewerAreaCache(c, mid, dt)
  174. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  175. ctx.So(err, convey.ShouldNotBeNil)
  176. })
  177. })
  178. convey.Convey("ViewerAreaCache2", t, func(ctx convey.C) {
  179. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  180. return memcache.MockWith(memcache.ErrNotFound)
  181. })
  182. defer connGuard.Unpatch()
  183. _, err := d.ViewerAreaCache(c, mid, dt)
  184. ctx.Convey("ShouldBeNil", func(ctx convey.C) {
  185. ctx.So(err, convey.ShouldBeNil)
  186. })
  187. })
  188. }
  189. func TestDataAddViewerAreaCache(t *testing.T) {
  190. var (
  191. c = context.TODO()
  192. mid = int64(0)
  193. dt = ""
  194. res map[string]map[string]int64
  195. )
  196. convey.Convey("AddViewerAreaCache", t, func(ctx convey.C) {
  197. err := d.AddViewerAreaCache(c, mid, dt, res)
  198. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  199. ctx.So(err, convey.ShouldBeNil)
  200. })
  201. })
  202. }
  203. func TestDataTrendCache(t *testing.T) {
  204. var (
  205. c = context.TODO()
  206. mid = int64(0)
  207. dt = ""
  208. )
  209. convey.Convey("TrendCache", t, func(ctx convey.C) {
  210. _, err := d.TrendCache(c, mid, dt)
  211. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  212. ctx.So(err, convey.ShouldBeNil)
  213. })
  214. })
  215. }
  216. func TestDataAddTrendCache(t *testing.T) {
  217. var (
  218. c = context.TODO()
  219. mid = int64(0)
  220. dt = ""
  221. res map[string]*data.ViewerTrend
  222. )
  223. convey.Convey("AddTrendCache", t, func(ctx convey.C) {
  224. err := d.AddTrendCache(c, mid, dt, res)
  225. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  226. ctx.So(err, convey.ShouldBeNil)
  227. })
  228. })
  229. }
  230. func TestDataRelationFansDayCache(t *testing.T) {
  231. var (
  232. c = context.TODO()
  233. mid = int64(0)
  234. dt = ""
  235. )
  236. convey.Convey("RelationFansDayCache", t, func(ctx convey.C) {
  237. _, err := d.RelationFansDayCache(c, mid, dt)
  238. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  239. ctx.So(err, convey.ShouldBeNil)
  240. })
  241. })
  242. }
  243. func TestDataAddRelationFansDayCache(t *testing.T) {
  244. var (
  245. c = context.TODO()
  246. mid = int64(0)
  247. dt = ""
  248. res map[string]map[string]int
  249. )
  250. convey.Convey("AddRelationFansDayCache", t, func(ctx convey.C) {
  251. err := d.AddRelationFansDayCache(c, mid, dt, res)
  252. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  253. ctx.So(err, convey.ShouldBeNil)
  254. })
  255. })
  256. }
  257. func TestDataRelationFansMonthCache(t *testing.T) {
  258. var (
  259. c = context.TODO()
  260. mid = int64(1)
  261. dt = ""
  262. )
  263. convey.Convey("RelationFansMonthCache", t, func(ctx convey.C) {
  264. _, err := d.RelationFansMonthCache(c, mid, dt)
  265. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  266. ctx.So(err, convey.ShouldBeNil)
  267. })
  268. })
  269. }
  270. func TestDataAddRelationFansMonthCache(t *testing.T) {
  271. var (
  272. c = context.TODO()
  273. mid = int64(0)
  274. dt = ""
  275. res map[string]map[string]int
  276. )
  277. convey.Convey("AddRelationFansMonthCache", t, func(ctx convey.C) {
  278. err := d.AddRelationFansMonthCache(c, mid, dt, res)
  279. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  280. ctx.So(err, convey.ShouldBeNil)
  281. })
  282. })
  283. }
  284. func TestDataViewerActionHourCache(t *testing.T) {
  285. var (
  286. c = context.TODO()
  287. mid = int64(0)
  288. dt = ""
  289. )
  290. convey.Convey("ViewerActionHourCache", t, func(ctx convey.C) {
  291. _, err := d.ViewerActionHourCache(c, mid, dt)
  292. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  293. ctx.So(err, convey.ShouldBeNil)
  294. })
  295. })
  296. }
  297. func TestDataAddViewerActionHourCache(t *testing.T) {
  298. var (
  299. c = context.TODO()
  300. mid = int64(0)
  301. dt = ""
  302. res map[string]*data.ViewerActionHour
  303. )
  304. convey.Convey("AddViewerActionHourCache", t, func(ctx convey.C) {
  305. err := d.AddViewerActionHourCache(c, mid, dt, res)
  306. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  307. ctx.So(err, convey.ShouldBeNil)
  308. })
  309. })
  310. }
  311. func TestDataViewerIncrCache(t *testing.T) {
  312. var (
  313. c = context.TODO()
  314. mid = int64(0)
  315. ty = ""
  316. dt = ""
  317. )
  318. convey.Convey("ViewerIncrCache", t, func(ctx convey.C) {
  319. _, err := d.ViewerIncrCache(c, mid, ty, dt)
  320. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  321. ctx.So(err, convey.ShouldBeNil)
  322. })
  323. })
  324. }
  325. func TestDataAddViewerIncrCache(t *testing.T) {
  326. var (
  327. c = context.TODO()
  328. mid = int64(0)
  329. ty = ""
  330. dt = ""
  331. res = &data.ViewerIncr{}
  332. )
  333. convey.Convey("AddViewerIncrCache", t, func(ctx convey.C) {
  334. err := d.AddViewerIncrCache(c, mid, ty, dt, res)
  335. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  336. ctx.So(err, convey.ShouldBeNil)
  337. })
  338. })
  339. }
  340. func TestDataThirtyDayArchiveCache(t *testing.T) {
  341. var (
  342. c = context.TODO()
  343. mid = int64(0)
  344. ty = ""
  345. )
  346. convey.Convey("ThirtyDayArchiveCache", t, func(ctx convey.C) {
  347. _, err := d.ThirtyDayArchiveCache(c, mid, ty)
  348. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  349. ctx.So(err, convey.ShouldBeNil)
  350. })
  351. })
  352. }
  353. func TestDataAddThirtyDayArchiveCache(t *testing.T) {
  354. var (
  355. c = context.TODO()
  356. mid = int64(0)
  357. ty = ""
  358. res = []*data.ThirtyDay{}
  359. )
  360. convey.Convey("AddThirtyDayArchiveCache", t, func(ctx convey.C) {
  361. err := d.AddThirtyDayArchiveCache(c, mid, ty, res)
  362. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  363. ctx.So(err, convey.ShouldBeNil)
  364. })
  365. })
  366. }
  367. func TestDataThirtyDayArticleCache(t *testing.T) {
  368. var (
  369. c = context.TODO()
  370. mid = int64(0)
  371. )
  372. convey.Convey("ThirtyDayArticleCache", t, func(ctx convey.C) {
  373. _, err := d.ThirtyDayArticleCache(c, mid)
  374. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  375. ctx.So(err, convey.ShouldBeNil)
  376. })
  377. })
  378. }
  379. func TestDataAddThirtyDayArticleCache(t *testing.T) {
  380. var (
  381. c = context.TODO()
  382. mid = int64(0)
  383. res = []*artmdl.ThirtyDayArticle{}
  384. )
  385. convey.Convey("AddThirtyDayArticleCache", t, func(ctx convey.C) {
  386. err := d.AddThirtyDayArticleCache(c, mid, res)
  387. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  388. ctx.So(err, convey.ShouldBeNil)
  389. })
  390. })
  391. }