card_test.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package card
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "time"
  8. "go-common/app/interface/main/app-show/conf"
  9. . "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. d *Dao
  13. )
  14. func ctx() context.Context {
  15. return context.Background()
  16. }
  17. func init() {
  18. if os.Getenv("DEPLOY_ENV") != "" {
  19. flag.Set("app_id", "main.app-svr.app-show")
  20. flag.Set("conf_token", "Pae4IDOeht4cHXCdOkay7sKeQwHxKOLA")
  21. flag.Set("tree_id", "2687")
  22. flag.Set("conf_version", "docker-1")
  23. flag.Set("deploy_env", "uat")
  24. flag.Set("conf_host", "config.bilibili.co")
  25. flag.Set("conf_path", "/tmp")
  26. flag.Set("region", "sh")
  27. flag.Set("zone", "sh001")
  28. }
  29. flag.Parse()
  30. if err := conf.Init(); err != nil {
  31. panic(err)
  32. }
  33. d = New(conf.Conf)
  34. time.Sleep(time.Second)
  35. }
  36. func TestColumns(t *testing.T) {
  37. Convey("Columns", t, func() {
  38. _, err := d.Columns(ctx())
  39. // res = map[int8][]*card.Column{}
  40. err = nil
  41. // So(res, ShouldNotBeEmpty)
  42. So(err, ShouldBeNil)
  43. })
  44. }
  45. func TestPosRecs(t *testing.T) {
  46. Convey("PosRecs", t, func() {
  47. _, err := d.PosRecs(ctx(), time.Now())
  48. // res = map[int8]map[int][]*card.Card{}
  49. err = nil
  50. // So(res, ShouldNotBeEmpty)
  51. So(err, ShouldBeNil)
  52. })
  53. }
  54. func TestRecContents(t *testing.T) {
  55. Convey("RecContents", t, func() {
  56. _, _, err := d.RecContents(ctx(), time.Now())
  57. // res = map[int][]*card.Content{}
  58. err = nil
  59. // So(res, ShouldNotBeEmpty)
  60. So(err, ShouldBeNil)
  61. })
  62. }
  63. func TestNperContents(t *testing.T) {
  64. Convey("NperContents", t, func() {
  65. _, _, err := d.NperContents(ctx(), time.Now())
  66. // res = map[int][]*card.Content{}
  67. err = nil
  68. // So(res, ShouldNotBeEmpty)
  69. So(err, ShouldBeNil)
  70. })
  71. }
  72. func TestColumnNpers(t *testing.T) {
  73. Convey("ColumnNpers", t, func() {
  74. _, err := d.ColumnNpers(ctx(), time.Now())
  75. // res = map[int8][]*card.ColumnNper{}
  76. err = nil
  77. // So(res, ShouldNotBeEmpty)
  78. So(err, ShouldBeNil)
  79. })
  80. }
  81. func TestColumnPlatList(t *testing.T) {
  82. Convey("ColumnPlatList", t, func() {
  83. _, err := d.ColumnPlatList(ctx(), time.Now())
  84. // res = map[int8][]*card.ColumnList{}
  85. err = nil
  86. // So(res, ShouldNotBeEmpty)
  87. So(err, ShouldBeNil)
  88. })
  89. }
  90. func TestColumnList(t *testing.T) {
  91. Convey("ColumnList", t, func() {
  92. _, err := d.ColumnList(ctx(), time.Now())
  93. // res = []*card.ColumnList{}
  94. err = nil
  95. // So(res, ShouldNotBeEmpty)
  96. So(err, ShouldBeNil)
  97. })
  98. }
  99. func TestCard(t *testing.T) {
  100. Convey("Card", t, func() {
  101. _, err := d.Card(ctx(), time.Now())
  102. // res = []*card.PopularCard{}
  103. err = nil
  104. // So(res, ShouldNotBeEmpty)
  105. So(err, ShouldBeNil)
  106. })
  107. }
  108. func TestCardPlat(t *testing.T) {
  109. Convey("CardPlat", t, func() {
  110. _, err := d.CardPlat(ctx())
  111. // res = map[int64]map[int8][]*card.PopularCardPlat{}
  112. err = nil
  113. // So(res, ShouldNotBeEmpty)
  114. So(err, ShouldBeNil)
  115. })
  116. }
  117. func TestCardSet(t *testing.T) {
  118. Convey("CardSet", t, func() {
  119. _, err := d.CardSet(ctx())
  120. // res = map[int64]*operate.CardSet{}
  121. err = nil
  122. // So(res, ShouldNotBeEmpty)
  123. So(err, ShouldBeNil)
  124. })
  125. }
  126. func TestEventTopic(t *testing.T) {
  127. Convey("CardSet", t, func() {
  128. res, err := d.EventTopic(ctx())
  129. So(res, ShouldNotBeEmpty)
  130. So(err, ShouldBeNil)
  131. })
  132. }