fan_test.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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 TestDataUpFansAnalysisForApp(t *testing.T) {
  15. var (
  16. c = context.TODO()
  17. mid = int64(2089809)
  18. ty = int(0)
  19. err error
  20. res *data.AppFan
  21. )
  22. convey.Convey("1", t, func(ctx convey.C) {
  23. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  24. return nil, ecode.CreativeDataErr
  25. })
  26. defer guard.Unpatch()
  27. res, err = d.UpFansAnalysisForApp(c, mid, ty)
  28. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  29. ctx.So(err, convey.ShouldEqual, ecode.CreativeDataErr)
  30. ctx.So(res, convey.ShouldBeNil)
  31. })
  32. })
  33. convey.Convey("2", t, func(ctx convey.C) {
  34. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  35. res := &hrpc.Result{}
  36. return res, nil
  37. })
  38. defer guard.Unpatch()
  39. res, err = d.UpFansAnalysisForApp(c, mid, ty)
  40. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  41. ctx.So(err, convey.ShouldBeNil)
  42. ctx.So(res, convey.ShouldBeNil)
  43. })
  44. })
  45. convey.Convey("3", t, func(ctx convey.C) {
  46. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  47. bs := make([]byte, 4)
  48. binary.LittleEndian.PutUint32(bs, 123)
  49. res := &hrpc.Result{
  50. Cells: make([]*hrpc.Cell, 0),
  51. }
  52. res.Cells = append(res.Cells, &hrpc.Cell{
  53. Family: []byte("f"),
  54. Qualifier: []byte("all"),
  55. Value: bs,
  56. })
  57. return res, nil
  58. })
  59. defer guard.Unpatch()
  60. res, err = d.UpFansAnalysisForApp(c, mid, ty)
  61. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  62. ctx.So(err, convey.ShouldBeNil)
  63. ctx.So(res, convey.ShouldNotBeNil)
  64. })
  65. })
  66. convey.Convey("4", t, func(ctx convey.C) {
  67. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  68. bs := make([]byte, 4)
  69. binary.LittleEndian.PutUint32(bs, 123)
  70. res := &hrpc.Result{
  71. Cells: make([]*hrpc.Cell, 0),
  72. }
  73. res.Cells = append(res.Cells, &hrpc.Cell{
  74. Family: []byte("t"),
  75. Qualifier: []byte("dr"),
  76. Value: bs,
  77. })
  78. return res, nil
  79. })
  80. defer guard.Unpatch()
  81. res, err = d.UpFansAnalysisForApp(c, mid, ty)
  82. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  83. ctx.So(err, convey.ShouldBeNil)
  84. ctx.So(res, convey.ShouldNotBeNil)
  85. })
  86. })
  87. }
  88. func TestDataViewerArea(t *testing.T) {
  89. var (
  90. c = context.TODO()
  91. mid = int64(2089809)
  92. dt = "dt"
  93. err error
  94. )
  95. convey.Convey("1", t, func(ctx convey.C) {
  96. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  97. return nil, ecode.CreativeDataErr
  98. })
  99. defer guard.Unpatch()
  100. _, err = d.ViewerArea(c, mid, dt)
  101. ctx.Convey("1", func(ctx convey.C) {
  102. ctx.So(err, convey.ShouldNotBeNil)
  103. })
  104. })
  105. convey.Convey("2", t, func(ctx convey.C) {
  106. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  107. res := &hrpc.Result{}
  108. return res, nil
  109. })
  110. defer guard.Unpatch()
  111. _, err = d.ViewerArea(c, mid, dt)
  112. ctx.Convey("2", func(ctx convey.C) {
  113. ctx.So(err, convey.ShouldBeNil)
  114. })
  115. })
  116. convey.Convey("3", t, func(ctx convey.C) {
  117. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  118. bs := make([]byte, 4)
  119. binary.LittleEndian.PutUint32(bs, 123)
  120. res := &hrpc.Result{
  121. Cells: make([]*hrpc.Cell, 0),
  122. }
  123. res.Cells = append(res.Cells, &hrpc.Cell{
  124. Family: []byte("f"),
  125. Qualifier: []byte("male"),
  126. Value: bs,
  127. })
  128. return res, nil
  129. })
  130. defer guard.Unpatch()
  131. _, err = d.ViewerArea(c, mid, dt)
  132. ctx.Convey("3", func(ctx convey.C) {
  133. ctx.So(err, convey.ShouldBeNil)
  134. })
  135. })
  136. convey.Convey("4", t, func(ctx convey.C) {
  137. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  138. bs := make([]byte, 4)
  139. binary.LittleEndian.PutUint32(bs, 123)
  140. res := &hrpc.Result{
  141. Cells: make([]*hrpc.Cell, 0),
  142. }
  143. res.Cells = append(res.Cells, &hrpc.Cell{
  144. Family: []byte("g"),
  145. Qualifier: []byte("male"),
  146. Value: bs,
  147. })
  148. return res, nil
  149. })
  150. defer guard.Unpatch()
  151. _, err = d.ViewerArea(c, mid, dt)
  152. ctx.Convey("4", func(ctx convey.C) {
  153. ctx.So(err, convey.ShouldBeNil)
  154. })
  155. })
  156. }