hbase_test.go 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package toview
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/app/interface/main/history/model"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestToviewhashRowKey(t *testing.T) {
  10. convey.Convey("hashRowKey", t, func(ctx convey.C) {
  11. var (
  12. mid = int64(14771787)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. p1 := hashRowKey(mid)
  16. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  17. ctx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestToviewAdd(t *testing.T) {
  23. convey.Convey("Add", t, func(ctx convey.C) {
  24. var (
  25. c = context.Background()
  26. mid = int64(14771787)
  27. aid = int64(141787)
  28. now = time.Now().Unix()
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. err := d.Add(c, mid, aid, now)
  32. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. })
  35. })
  36. })
  37. }
  38. func TestToviewAdds(t *testing.T) {
  39. convey.Convey("Adds", t, func(ctx convey.C) {
  40. var (
  41. c = context.Background()
  42. mid = int64(14771787)
  43. aids = []int64{147717, 147787}
  44. now = int64(14771787)
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. err := d.Adds(c, mid, aids, now)
  48. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. })
  51. })
  52. })
  53. }
  54. func TestToviewAddMap(t *testing.T) {
  55. convey.Convey("AddMap", t, func(ctx convey.C) {
  56. var (
  57. c = context.Background()
  58. mid = int64(14771787)
  59. views map[int64]*model.ToView
  60. )
  61. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  62. err := d.AddMap(c, mid, views)
  63. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  64. ctx.So(err, convey.ShouldBeNil)
  65. })
  66. })
  67. })
  68. }
  69. func TestToviewListInfo(t *testing.T) {
  70. convey.Convey("ListInfo", t, func(ctx convey.C) {
  71. var (
  72. c = context.Background()
  73. mid = int64(14771787)
  74. aids = []int64{147717, 147787}
  75. )
  76. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  77. res, err := d.ListInfo(c, mid, aids)
  78. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  79. ctx.So(err, convey.ShouldBeNil)
  80. ctx.So(res, convey.ShouldNotBeNil)
  81. })
  82. })
  83. })
  84. }
  85. func TestToviewMapInfo(t *testing.T) {
  86. convey.Convey("MapInfo", t, func(ctx convey.C) {
  87. var (
  88. c = context.Background()
  89. mid = int64(14771787)
  90. aids = []int64{147717, 147787}
  91. )
  92. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  93. res, err := d.MapInfo(c, mid, aids)
  94. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  95. ctx.So(err, convey.ShouldBeNil)
  96. ctx.So(res, convey.ShouldNotBeNil)
  97. })
  98. })
  99. })
  100. }
  101. func TestToviewDel(t *testing.T) {
  102. convey.Convey("Del", t, func(ctx convey.C) {
  103. var (
  104. c = context.Background()
  105. mid = int64(14771787)
  106. aids = []int64{147717, 147787}
  107. )
  108. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  109. err := d.Del(c, mid, aids)
  110. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  111. ctx.So(err, convey.ShouldBeNil)
  112. })
  113. })
  114. })
  115. }
  116. func TestToviewClear(t *testing.T) {
  117. convey.Convey("Clear", t, func(ctx convey.C) {
  118. var (
  119. c = context.Background()
  120. mid = int64(14771787)
  121. )
  122. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  123. err := d.Clear(c, mid)
  124. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  125. ctx.So(err, convey.ShouldBeNil)
  126. })
  127. })
  128. })
  129. }