archive_play_test.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package data
  2. import (
  3. "context"
  4. "encoding/binary"
  5. "go-common/app/interface/main/creative/model/data"
  6. "go-common/library/ecode"
  7. "reflect"
  8. "testing"
  9. hbase "go-common/library/database/hbase.v2"
  10. "github.com/bouk/monkey"
  11. "github.com/smartystreets/goconvey/convey"
  12. "github.com/tsuna/gohbase/hrpc"
  13. )
  14. func TestDatasourceOtherMerge(t *testing.T) {
  15. var (
  16. v = ""
  17. )
  18. convey.Convey("sourceOtherMerge", t, func(ctx convey.C) {
  19. p1 := sourceOtherMerge(v)
  20. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  21. ctx.So(p1, convey.ShouldNotBeNil)
  22. })
  23. })
  24. }
  25. func TestDatareverseString(t *testing.T) {
  26. var (
  27. s = ""
  28. )
  29. convey.Convey("reverseString", t, func(ctx convey.C) {
  30. p1 := reverseString(s)
  31. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  32. ctx.So(p1, convey.ShouldNotBeNil)
  33. })
  34. })
  35. }
  36. func TestDatafansRowKey(t *testing.T) {
  37. var (
  38. id = int64(0)
  39. ty = int(0)
  40. )
  41. convey.Convey("fansRowKey", t, func(ctx convey.C) {
  42. p1 := fansRowKey(id, ty)
  43. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  44. ctx.So(p1, convey.ShouldNotBeNil)
  45. })
  46. })
  47. }
  48. func TestDataplaySourceKey(t *testing.T) {
  49. var (
  50. id = int64(0)
  51. )
  52. convey.Convey("playSourceKey", t, func(ctx convey.C) {
  53. p1 := playSourceKey(id)
  54. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  55. ctx.So(p1, convey.ShouldNotBeNil)
  56. })
  57. })
  58. }
  59. func TestDataarcPlayKey(t *testing.T) {
  60. var (
  61. id = int64(0)
  62. )
  63. convey.Convey("arcPlayKey", t, func(ctx convey.C) {
  64. p1 := arcPlayKey(id)
  65. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  66. ctx.So(p1, convey.ShouldNotBeNil)
  67. })
  68. })
  69. }
  70. func TestDataarcQueryKey(t *testing.T) {
  71. var (
  72. id = int64(1)
  73. dt = ""
  74. cp = int(0)
  75. )
  76. convey.Convey("arcQueryKey", t, func(ctx convey.C) {
  77. p1 := arcQueryKey(id, dt, cp)
  78. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  79. ctx.So(p1, convey.ShouldEqual, p1)
  80. })
  81. })
  82. }
  83. func TestDataupFansMedalRowKey(t *testing.T) {
  84. var (
  85. id = int64(1)
  86. ty = int(1)
  87. )
  88. convey.Convey("upFansMedalRowKey", t, func(ctx convey.C) {
  89. p1 := upFansMedalRowKey(id, ty)
  90. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  91. ctx.So(p1, convey.ShouldEqual, p1)
  92. })
  93. })
  94. }
  95. func TestDatabyteToInt32(t *testing.T) {
  96. var (
  97. b = []byte{255, 255, 255, 249}
  98. )
  99. convey.Convey("byteToInt32", t, func(ctx convey.C) {
  100. p1 := byteToInt32(b)
  101. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  102. ctx.So(p1, convey.ShouldEqual, -7)
  103. })
  104. })
  105. }
  106. func TestDataUpFansAnalysisForWeb(t *testing.T) {
  107. var (
  108. c = context.TODO()
  109. mid = int64(2089809)
  110. ty = int(0)
  111. err error
  112. res *data.WebFan
  113. )
  114. convey.Convey("1", t, func(ctx convey.C) {
  115. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  116. return nil, ecode.CreativeDataErr
  117. })
  118. defer guard.Unpatch()
  119. res, err = d.UpFansAnalysisForWeb(c, mid, ty)
  120. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  121. ctx.So(err, convey.ShouldEqual, ecode.CreativeDataErr)
  122. ctx.So(res, convey.ShouldBeNil)
  123. })
  124. })
  125. convey.Convey("2", t, func(ctx convey.C) {
  126. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  127. res := &hrpc.Result{}
  128. return res, nil
  129. })
  130. defer guard.Unpatch()
  131. res, err = d.UpFansAnalysisForWeb(c, mid, ty)
  132. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  133. ctx.So(err, convey.ShouldBeNil)
  134. ctx.So(res, convey.ShouldBeNil)
  135. })
  136. })
  137. convey.Convey("3", t, func(ctx convey.C) {
  138. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  139. bs := make([]byte, 4)
  140. binary.LittleEndian.PutUint32(bs, 123)
  141. res := &hrpc.Result{
  142. Cells: make([]*hrpc.Cell, 0),
  143. }
  144. res.Cells = append(res.Cells, &hrpc.Cell{
  145. Family: []byte("f"),
  146. Qualifier: []byte("all"),
  147. Value: bs,
  148. })
  149. return res, nil
  150. })
  151. defer guard.Unpatch()
  152. res, err = d.UpFansAnalysisForWeb(c, mid, ty)
  153. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  154. ctx.So(err, convey.ShouldBeNil)
  155. ctx.So(res, convey.ShouldNotBeNil)
  156. })
  157. })
  158. convey.Convey("4", t, func(ctx convey.C) {
  159. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  160. bs := make([]byte, 4)
  161. binary.LittleEndian.PutUint32(bs, 123)
  162. res := &hrpc.Result{
  163. Cells: make([]*hrpc.Cell, 0),
  164. }
  165. res.Cells = append(res.Cells, &hrpc.Cell{
  166. Family: []byte("t"),
  167. Qualifier: []byte("dr"),
  168. Value: bs,
  169. })
  170. return res, nil
  171. })
  172. defer guard.Unpatch()
  173. res, err = d.UpFansAnalysisForWeb(c, mid, ty)
  174. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  175. ctx.So(err, convey.ShouldBeNil)
  176. ctx.So(res, convey.ShouldNotBeNil)
  177. })
  178. })
  179. }
  180. func TestDataUpPlaySourceAnalysis(t *testing.T) {
  181. var (
  182. c = context.TODO()
  183. mid = int64(2089809)
  184. )
  185. convey.Convey("UpPlaySourceAnalysis", t, func(ctx convey.C) {
  186. res, err := d.UpPlaySourceAnalysis(c, mid)
  187. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  188. ctx.So(err, convey.ShouldEqual, ecode.CreativeDataErr)
  189. ctx.So(res, convey.ShouldBeNil)
  190. })
  191. })
  192. }
  193. func TestDataUpArcPlayAnalysis(t *testing.T) {
  194. var (
  195. c = context.TODO()
  196. aid = int64(0)
  197. )
  198. convey.Convey("UpArcPlayAnalysis", t, func(ctx convey.C) {
  199. res, err := d.UpArcPlayAnalysis(c, aid)
  200. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  201. ctx.So(err, convey.ShouldEqual, ecode.CreativeDataErr)
  202. ctx.So(res, convey.ShouldBeNil)
  203. })
  204. })
  205. }
  206. func TestDataUpArcQuery(t *testing.T) {
  207. var (
  208. c = context.TODO()
  209. mid = int64(2089809)
  210. dt = ""
  211. cp = int(0)
  212. )
  213. convey.Convey("UpArcQuery", t, func(ctx convey.C) {
  214. res, err := d.UpArcQuery(c, mid, dt, cp)
  215. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  216. ctx.So(err, convey.ShouldEqual, ecode.CreativeDataErr)
  217. ctx.So(res, convey.ShouldBeNil)
  218. })
  219. })
  220. }
  221. func TestDataUpFansMedal(t *testing.T) {
  222. var (
  223. c = context.TODO()
  224. mid = int64(2089809)
  225. )
  226. convey.Convey("UpFansMedal", t, func(ctx convey.C) {
  227. res, err := d.UpFansMedal(c, mid)
  228. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  229. ctx.So(err, convey.ShouldEqual, ecode.CreativeDataErr)
  230. ctx.So(res, convey.ShouldBeNil)
  231. })
  232. })
  233. }