article_test.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package data
  2. import (
  3. "context"
  4. "reflect"
  5. "testing"
  6. "go-common/library/ecode"
  7. "github.com/bouk/monkey"
  8. "github.com/smartystreets/goconvey/convey"
  9. "github.com/tsuna/gohbase/hrpc"
  10. hbase "go-common/library/database/hbase.v2"
  11. )
  12. func TestArtThirtyDay(t *testing.T) {
  13. var (
  14. c = context.TODO()
  15. mid = int64(27515256)
  16. tp = byte(1)
  17. )
  18. convey.Convey("ArtThirtyDay1", t, func(ctx convey.C) {
  19. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  20. return nil, ecode.CreativeDataErr
  21. })
  22. defer guard.Unpatch()
  23. _, err := d.ArtThirtyDay(c, mid, tp)
  24. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  25. ctx.So(err, convey.ShouldNotBeNil)
  26. })
  27. })
  28. convey.Convey("ArtThirtyDay2", t, func(ctx convey.C) {
  29. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  30. res := &hrpc.Result{}
  31. return res, nil
  32. })
  33. defer guard.Unpatch()
  34. _, err := d.ArtThirtyDay(c, mid, tp)
  35. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. })
  38. })
  39. }
  40. func TestArtRank(t *testing.T) {
  41. var (
  42. c = context.TODO()
  43. mid = int64(27515256)
  44. tp = byte(1)
  45. date = ""
  46. )
  47. convey.Convey("TestArtRank1", t, func(ctx convey.C) {
  48. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  49. return nil, ecode.CreativeDataErr
  50. })
  51. defer guard.Unpatch()
  52. _, err := d.ArtRank(c, mid, tp, date)
  53. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  54. ctx.So(err, convey.ShouldNotBeNil)
  55. })
  56. })
  57. convey.Convey("TestArtRank2", t, func(ctx convey.C) {
  58. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  59. res := &hrpc.Result{}
  60. return res, nil
  61. })
  62. defer guard.Unpatch()
  63. _, err := d.ArtRank(c, mid, tp, date)
  64. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  65. ctx.So(err, convey.ShouldBeNil)
  66. })
  67. })
  68. }
  69. func TestReadAnalysis(t *testing.T) {
  70. var (
  71. c = context.TODO()
  72. mid = int64(27515256)
  73. )
  74. convey.Convey("TestReadAnalysis1", t, func(ctx convey.C) {
  75. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  76. return nil, ecode.CreativeDataErr
  77. })
  78. defer guard.Unpatch()
  79. _, err := d.ReadAnalysis(c, mid)
  80. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  81. ctx.So(err, convey.ShouldNotBeNil)
  82. })
  83. })
  84. convey.Convey("TestReadAnalysis2", t, func(ctx convey.C) {
  85. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.hbase), "GetStr", func(_ *hbase.Client, _ context.Context, _, _ string, _ ...func(hrpc.Call) error) (*hrpc.Result, error) {
  86. res := &hrpc.Result{}
  87. return res, nil
  88. })
  89. defer guard.Unpatch()
  90. _, err := d.ReadAnalysis(c, mid)
  91. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  92. ctx.So(err, convey.ShouldBeNil)
  93. })
  94. })
  95. }