overview_test.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. package data
  2. import (
  3. "context"
  4. "encoding/binary"
  5. "reflect"
  6. "testing"
  7. "go-common/library/ecode"
  8. "github.com/bouk/monkey"
  9. "github.com/smartystreets/goconvey/convey"
  10. "github.com/tsuna/gohbase/hrpc"
  11. hbase "go-common/library/database/hbase.v2"
  12. )
  13. func TestDataViewerBase(t *testing.T) {
  14. var (
  15. c = context.TODO()
  16. mid = int64(2089809)
  17. dt = "dt"
  18. err error
  19. )
  20. convey.Convey("1", t, func(ctx convey.C) {
  21. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  22. return nil, ecode.CreativeDataErr
  23. })
  24. defer guard.Unpatch()
  25. _, err = d.ViewerBase(c, mid, dt)
  26. ctx.Convey("1", func(ctx convey.C) {
  27. ctx.So(err, convey.ShouldNotBeNil)
  28. })
  29. })
  30. convey.Convey("2", t, func(ctx convey.C) {
  31. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  32. res := &hrpc.Result{}
  33. return res, nil
  34. })
  35. defer guard.Unpatch()
  36. _, err = d.ViewerBase(c, mid, dt)
  37. ctx.Convey("2", func(ctx convey.C) {
  38. ctx.So(err, convey.ShouldBeNil)
  39. })
  40. })
  41. convey.Convey("3", t, func(ctx convey.C) {
  42. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  43. bs := make([]byte, 4)
  44. binary.LittleEndian.PutUint32(bs, 123)
  45. res := &hrpc.Result{
  46. Cells: make([]*hrpc.Cell, 0),
  47. }
  48. res.Cells = append(res.Cells, &hrpc.Cell{
  49. Family: []byte("f"),
  50. Qualifier: []byte("male"),
  51. Value: bs,
  52. })
  53. return res, nil
  54. })
  55. defer guard.Unpatch()
  56. _, err = d.ViewerBase(c, mid, dt)
  57. ctx.Convey("3", func(ctx convey.C) {
  58. ctx.So(err, convey.ShouldBeNil)
  59. })
  60. })
  61. convey.Convey("4", t, func(ctx convey.C) {
  62. g1 := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  63. bs := make([]byte, 4)
  64. binary.LittleEndian.PutUint32(bs, 123)
  65. res := &hrpc.Result{
  66. Cells: make([]*hrpc.Cell, 0),
  67. }
  68. res.Cells = append(res.Cells, &hrpc.Cell{
  69. Family: []byte("g"),
  70. Qualifier: []byte("female"),
  71. Value: bs,
  72. })
  73. return res, nil
  74. })
  75. defer g1.Unpatch()
  76. _, err = d.ViewerBase(c, mid, dt)
  77. ctx.Convey("41", func(ctx convey.C) {
  78. ctx.So(err, convey.ShouldBeNil)
  79. })
  80. g2 := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  81. bs := make([]byte, 4)
  82. binary.LittleEndian.PutUint32(bs, 123)
  83. res := &hrpc.Result{
  84. Cells: make([]*hrpc.Cell, 0),
  85. }
  86. res.Cells = append(res.Cells, &hrpc.Cell{
  87. Family: []byte("g"),
  88. Qualifier: []byte("male"),
  89. Value: bs,
  90. })
  91. return res, nil
  92. })
  93. defer g2.Unpatch()
  94. _, err = d.ViewerBase(c, mid, dt)
  95. ctx.Convey("42", func(ctx convey.C) {
  96. ctx.So(err, convey.ShouldBeNil)
  97. })
  98. })
  99. }
  100. func TestDataViewerTrend(t *testing.T) {
  101. var (
  102. c = context.TODO()
  103. mid = int64(2089809)
  104. dt = "dt"
  105. err error
  106. )
  107. convey.Convey("1", t, func(ctx convey.C) {
  108. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  109. return nil, ecode.CreativeDataErr
  110. })
  111. defer guard.Unpatch()
  112. _, err = d.ViewerTrend(c, mid, dt)
  113. ctx.Convey("1", func(ctx convey.C) {
  114. ctx.So(err, convey.ShouldNotBeNil)
  115. })
  116. })
  117. convey.Convey("2", t, func(ctx convey.C) {
  118. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  119. res := &hrpc.Result{}
  120. return res, nil
  121. })
  122. defer guard.Unpatch()
  123. _, err = d.ViewerTrend(c, mid, dt)
  124. ctx.Convey("2", func(ctx convey.C) {
  125. ctx.So(err, convey.ShouldBeNil)
  126. })
  127. })
  128. convey.Convey("3", t, func(ctx convey.C) {
  129. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  130. bs := make([]byte, 4)
  131. binary.LittleEndian.PutUint32(bs, 123)
  132. res := &hrpc.Result{
  133. Cells: make([]*hrpc.Cell, 0),
  134. }
  135. res.Cells = append(res.Cells, &hrpc.Cell{
  136. Family: []byte("fs"),
  137. Qualifier: []byte("male"),
  138. Value: bs,
  139. })
  140. return res, nil
  141. })
  142. defer guard.Unpatch()
  143. _, err = d.ViewerTrend(c, mid, dt)
  144. ctx.Convey("3", func(ctx convey.C) {
  145. ctx.So(err, convey.ShouldBeNil)
  146. })
  147. })
  148. convey.Convey("4", t, func(ctx convey.C) {
  149. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  150. bs := make([]byte, 4)
  151. binary.LittleEndian.PutUint32(bs, 123)
  152. res := &hrpc.Result{
  153. Cells: make([]*hrpc.Cell, 0),
  154. }
  155. res.Cells = append(res.Cells, &hrpc.Cell{
  156. Family: []byte("gs"),
  157. Qualifier: []byte("male"),
  158. Value: bs,
  159. })
  160. return res, nil
  161. })
  162. defer guard.Unpatch()
  163. _, err = d.ViewerTrend(c, mid, dt)
  164. ctx.Convey("4", func(ctx convey.C) {
  165. ctx.So(err, convey.ShouldBeNil)
  166. })
  167. })
  168. }
  169. func TestDataRelationFansDay(t *testing.T) {
  170. var (
  171. c = context.TODO()
  172. mid = int64(2089809)
  173. )
  174. convey.Convey("RelationFansDay", t, func(ctx convey.C) {
  175. _, err := d.RelationFansDay(c, mid)
  176. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  177. ctx.So(err, convey.ShouldNotBeNil)
  178. })
  179. })
  180. }
  181. func TestDataRelationFansHistory(t *testing.T) {
  182. var (
  183. c = context.TODO()
  184. mid = int64(0)
  185. month = ""
  186. )
  187. convey.Convey("RelationFansHistory", t, func(ctx convey.C) {
  188. _, err := d.RelationFansHistory(c, mid, month)
  189. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  190. ctx.So(err, convey.ShouldNotBeNil)
  191. })
  192. })
  193. }
  194. func TestDataRelationFansMonth(t *testing.T) {
  195. var (
  196. c = context.TODO()
  197. mid = int64(0)
  198. )
  199. convey.Convey("RelationFansMonth", t, func(ctx convey.C) {
  200. _, err := d.RelationFansMonth(c, mid)
  201. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  202. ctx.So(err, convey.ShouldNotBeNil)
  203. })
  204. })
  205. }
  206. func TestDataViewerActionHour(t *testing.T) {
  207. var (
  208. c = context.TODO()
  209. mid = int64(2089809)
  210. dt = "dt"
  211. err error
  212. )
  213. convey.Convey("1", t, func(ctx convey.C) {
  214. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  215. return nil, ecode.CreativeDataErr
  216. })
  217. defer guard.Unpatch()
  218. _, err = d.ViewerActionHour(c, mid, dt)
  219. ctx.Convey("1", func(ctx convey.C) {
  220. ctx.So(err, convey.ShouldNotBeNil)
  221. })
  222. })
  223. convey.Convey("2", t, func(ctx convey.C) {
  224. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  225. res := &hrpc.Result{}
  226. return res, nil
  227. })
  228. defer guard.Unpatch()
  229. _, err = d.ViewerActionHour(c, mid, dt)
  230. ctx.Convey("2", func(ctx convey.C) {
  231. ctx.So(err, convey.ShouldBeNil)
  232. })
  233. })
  234. convey.Convey("3", t, func(ctx convey.C) {
  235. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  236. bs := make([]byte, 4)
  237. binary.LittleEndian.PutUint32(bs, 123)
  238. res := &hrpc.Result{
  239. Cells: make([]*hrpc.Cell, 0),
  240. }
  241. res.Cells = append(res.Cells, &hrpc.Cell{
  242. Family: []byte("fs"),
  243. Qualifier: []byte("male"),
  244. Value: bs,
  245. })
  246. return res, nil
  247. })
  248. defer guard.Unpatch()
  249. _, err = d.ViewerActionHour(c, mid, dt)
  250. ctx.Convey("3", func(ctx convey.C) {
  251. ctx.So(err, convey.ShouldBeNil)
  252. })
  253. })
  254. convey.Convey("4", t, func(ctx convey.C) {
  255. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  256. bs := make([]byte, 4)
  257. binary.LittleEndian.PutUint32(bs, 123)
  258. res := &hrpc.Result{
  259. Cells: make([]*hrpc.Cell, 0),
  260. }
  261. res.Cells = append(res.Cells, &hrpc.Cell{
  262. Family: []byte("gs"),
  263. Qualifier: []byte("male"),
  264. Value: bs,
  265. })
  266. return res, nil
  267. })
  268. defer guard.Unpatch()
  269. _, err = d.ViewerActionHour(c, mid, dt)
  270. ctx.Convey("4", func(ctx convey.C) {
  271. ctx.So(err, convey.ShouldBeNil)
  272. })
  273. })
  274. }
  275. func TestDataUpIncr(t *testing.T) {
  276. var (
  277. c = context.TODO()
  278. mid = int64(0)
  279. ty = int8(2)
  280. now = ""
  281. err error
  282. )
  283. convey.Convey("1", t, func(ctx convey.C) {
  284. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  285. return nil, ecode.CreativeDataErr
  286. })
  287. defer guard.Unpatch()
  288. _, err = d.UpIncr(c, mid, ty, now)
  289. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  290. ctx.So(err, convey.ShouldNotBeNil)
  291. })
  292. })
  293. convey.Convey("2", t, func(ctx convey.C) {
  294. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  295. res := &hrpc.Result{}
  296. return res, nil
  297. })
  298. defer guard.Unpatch()
  299. _, err = d.UpIncr(c, mid, ty, now)
  300. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  301. ctx.So(err, convey.ShouldBeNil)
  302. })
  303. })
  304. convey.Convey("3", t, func(ctx convey.C) {
  305. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  306. bs := make([]byte, 4)
  307. binary.LittleEndian.PutUint32(bs, 123)
  308. res := &hrpc.Result{
  309. Cells: make([]*hrpc.Cell, 0),
  310. }
  311. res.Cells = append(res.Cells, &hrpc.Cell{
  312. Family: []byte("u"),
  313. Qualifier: []byte("male"),
  314. Value: bs,
  315. })
  316. return res, nil
  317. })
  318. defer guard.Unpatch()
  319. _, err = d.UpIncr(c, mid, ty, now)
  320. ctx.Convey("3", func(ctx convey.C) {
  321. ctx.So(err, convey.ShouldBeNil)
  322. })
  323. })
  324. }
  325. func TestDataThirtyDayArchive(t *testing.T) {
  326. var (
  327. c = context.TODO()
  328. mid = int64(0)
  329. ty = int8(2)
  330. err error
  331. )
  332. convey.Convey("1", t, func(ctx convey.C) {
  333. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  334. return nil, ecode.CreativeDataErr
  335. })
  336. defer guard.Unpatch()
  337. _, err = d.ThirtyDayArchive(c, mid, ty)
  338. ctx.Convey("1", func(ctx convey.C) {
  339. ctx.So(err, convey.ShouldNotBeNil)
  340. })
  341. })
  342. convey.Convey("2", t, func(ctx convey.C) {
  343. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  344. res := &hrpc.Result{}
  345. return res, nil
  346. })
  347. defer guard.Unpatch()
  348. _, err = d.ThirtyDayArchive(c, mid, ty)
  349. ctx.Convey("2", func(ctx convey.C) {
  350. ctx.So(err, convey.ShouldBeNil)
  351. })
  352. })
  353. convey.Convey("3", t, func(ctx convey.C) {
  354. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  355. res := &hrpc.Result{
  356. Cells: make([]*hrpc.Cell, 0),
  357. }
  358. res.Cells = append(res.Cells, &hrpc.Cell{
  359. Family: []byte("u"),
  360. Qualifier: []byte("20181111"),
  361. Value: []byte("200"),
  362. })
  363. return res, nil
  364. })
  365. defer guard.Unpatch()
  366. _, err = d.ThirtyDayArchive(c, mid, ty)
  367. ctx.Convey("3", func(ctx convey.C) {
  368. ctx.So(err, convey.ShouldBeNil)
  369. })
  370. })
  371. }
  372. func TestDataparseKeyValue(t *testing.T) {
  373. var (
  374. k = ""
  375. v = ""
  376. )
  377. convey.Convey("parseKeyValue", t, func(ctx convey.C) {
  378. _, _, err := parseKeyValue(k, v)
  379. ctx.Convey("Then err should be nil.timestamp,value should not be nil.", func(ctx convey.C) {
  380. ctx.So(err, convey.ShouldNotBeNil)
  381. })
  382. })
  383. }