hbase_test.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package timemachine
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/activity/model/timemachine"
  6. "github.com/smartystreets/goconvey/convey"
  7. "github.com/tsuna/gohbase/hrpc"
  8. )
  9. func TestTimemachinehbaseRowKey(t *testing.T) {
  10. convey.Convey("hbaseRowKey", t, func(ctx convey.C) {
  11. var (
  12. mid = int64(121212)
  13. )
  14. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  15. p1 := hbaseRowKey(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 TestTimemachineRawTimemachine(t *testing.T) {
  23. convey.Convey("RawTimemachine", t, func(ctx convey.C) {
  24. var (
  25. c = context.Background()
  26. mid = int64(0)
  27. )
  28. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  29. data, err := d.RawTimemachine(c, mid)
  30. ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
  31. ctx.So(err, convey.ShouldNotBeNil)
  32. ctx.Printf("%+v", data)
  33. })
  34. })
  35. })
  36. }
  37. func TestTimemachinetmFillFields(t *testing.T) {
  38. convey.Convey("tmFillFields", t, func(ctx convey.C) {
  39. var (
  40. data = &timemachine.Item{}
  41. c = &hrpc.Cell{Qualifier: []byte("is_up"), Value: []byte("1")}
  42. )
  43. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  44. tmFillFields(data, c)
  45. c = &hrpc.Cell{Qualifier: []byte("is_up"), Value: []byte("1")}
  46. tmFillFields(data, c)
  47. c = &hrpc.Cell{Qualifier: []byte("dh"), Value: []byte("1")}
  48. tmFillFields(data, c)
  49. c = &hrpc.Cell{Qualifier: []byte("adh"), Value: []byte("1")}
  50. tmFillFields(data, c)
  51. c = &hrpc.Cell{Qualifier: []byte("a_vv"), Value: []byte("1")}
  52. tmFillFields(data, c)
  53. c = &hrpc.Cell{Qualifier: []byte("tag_id"), Value: []byte("1")}
  54. tmFillFields(data, c)
  55. c = &hrpc.Cell{Qualifier: []byte("ls_vv"), Value: []byte("1")}
  56. tmFillFields(data, c)
  57. c = &hrpc.Cell{Qualifier: []byte("ugc_avs"), Value: []byte("1")}
  58. tmFillFields(data, c)
  59. c = &hrpc.Cell{Qualifier: []byte("pgc_avs"), Value: []byte("1")}
  60. tmFillFields(data, c)
  61. c = &hrpc.Cell{Qualifier: []byte("up"), Value: []byte("1")}
  62. tmFillFields(data, c)
  63. c = &hrpc.Cell{Qualifier: []byte("up_ad"), Value: []byte("1")}
  64. tmFillFields(data, c)
  65. c = &hrpc.Cell{Qualifier: []byte("up_ld"), Value: []byte("1")}
  66. tmFillFields(data, c)
  67. c = &hrpc.Cell{Qualifier: []byte("up_avs"), Value: []byte("1")}
  68. tmFillFields(data, c)
  69. c = &hrpc.Cell{Qualifier: []byte("up_st"), Value: []byte("1")}
  70. tmFillFields(data, c)
  71. c = &hrpc.Cell{Qualifier: []byte("cir_tm"), Value: []byte("1")}
  72. tmFillFields(data, c)
  73. c = &hrpc.Cell{Qualifier: []byte("cir_av"), Value: []byte("1")}
  74. tmFillFields(data, c)
  75. c = &hrpc.Cell{Qualifier: []byte("cir_v"), Value: []byte("1")}
  76. tmFillFields(data, c)
  77. c = &hrpc.Cell{Qualifier: []byte("fs_av"), Value: []byte("1")}
  78. tmFillFields(data, c)
  79. c = &hrpc.Cell{Qualifier: []byte("fs_tm"), Value: []byte("1")}
  80. tmFillFields(data, c)
  81. c = &hrpc.Cell{Qualifier: []byte("fs_ty"), Value: []byte("1")}
  82. tmFillFields(data, c)
  83. c = &hrpc.Cell{Qualifier: []byte("s_av_rd"), Value: []byte("1")}
  84. tmFillFields(data, c)
  85. c = &hrpc.Cell{Qualifier: []byte("bt_av"), Value: []byte("1")}
  86. tmFillFields(data, c)
  87. c = &hrpc.Cell{Qualifier: []byte("bt_ty"), Value: []byte("1")}
  88. tmFillFields(data, c)
  89. c = &hrpc.Cell{Qualifier: []byte("bt_av_o"), Value: []byte("1")}
  90. tmFillFields(data, c)
  91. c = &hrpc.Cell{Qualifier: []byte("bt_av_ty"), Value: []byte("1")}
  92. tmFillFields(data, c)
  93. c = &hrpc.Cell{Qualifier: []byte("o_vv"), Value: []byte("1")}
  94. tmFillFields(data, c)
  95. c = &hrpc.Cell{Qualifier: []byte("all_vv"), Value: []byte("1")}
  96. tmFillFields(data, c)
  97. c = &hrpc.Cell{Qualifier: []byte("live_d"), Value: []byte("1")}
  98. tmFillFields(data, c)
  99. c = &hrpc.Cell{Qualifier: []byte("is_live"), Value: []byte("1")}
  100. tmFillFields(data, c)
  101. c = &hrpc.Cell{Qualifier: []byte("ld"), Value: []byte("1")}
  102. tmFillFields(data, c)
  103. c = &hrpc.Cell{Qualifier: []byte("md"), Value: []byte("1")}
  104. tmFillFields(data, c)
  105. c = &hrpc.Cell{Qualifier: []byte("mc"), Value: []byte("1")}
  106. tmFillFields(data, c)
  107. c = &hrpc.Cell{Qualifier: []byte("att"), Value: []byte("1")}
  108. tmFillFields(data, c)
  109. c = &hrpc.Cell{Qualifier: []byte("fan_vv"), Value: []byte("1")}
  110. tmFillFields(data, c)
  111. c = &hrpc.Cell{Qualifier: []byte("fan_live"), Value: []byte("1")}
  112. tmFillFields(data, c)
  113. c = &hrpc.Cell{Qualifier: []byte("like_tid"), Value: []byte("1")}
  114. tmFillFields(data, c)
  115. c = &hrpc.Cell{Qualifier: []byte("like_st"), Value: []byte("1")}
  116. tmFillFields(data, c)
  117. c = &hrpc.Cell{Qualifier: []byte("wr"), Value: []byte("1")}
  118. tmFillFields(data, c)
  119. c = &hrpc.Cell{Qualifier: []byte("pd_hr"), Value: []byte("1")}
  120. tmFillFields(data, c)
  121. c = &hrpc.Cell{Qualifier: []byte("lu_adr"), Value: []byte("1")}
  122. tmFillFields(data, c)
  123. })
  124. })
  125. }