search_test.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/esports/model"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoSearch(t *testing.T) {
  9. var (
  10. c = context.Background()
  11. mid = int64(111)
  12. p = &model.ParamSearch{Keyword: "test", Pn: 1, Ps: 100, Sort: 0}
  13. buvid = ""
  14. )
  15. convey.Convey("Search", t, func(ctx convey.C) {
  16. rs, err := d.Search(c, mid, p, buvid)
  17. ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. println(rs)
  20. })
  21. })
  22. }
  23. func TestDaoSearchVideo(t *testing.T) {
  24. var (
  25. c = context.Background()
  26. p = &model.ParamVideo{Pn: 1, Ps: 30}
  27. )
  28. convey.Convey("SearchVideo", t, func(ctx convey.C) {
  29. rs, total, err := d.SearchVideo(c, p)
  30. ctx.Convey("Then err should be nil.rs,total should not be nil.", func(ctx convey.C) {
  31. ctx.So(err, convey.ShouldBeNil)
  32. ctx.So(total, convey.ShouldNotBeNil)
  33. ctx.So(len(rs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  34. })
  35. })
  36. }
  37. func TestDaoSearchContest(t *testing.T) {
  38. var (
  39. c = context.Background()
  40. p = &model.ParamContest{Pn: 1, Ps: 30}
  41. )
  42. convey.Convey("SearchContest", t, func(ctx convey.C) {
  43. rs, total, err := d.SearchContest(c, p)
  44. ctx.Convey("Then err should be nil.rs,total should not be nil.", func(ctx convey.C) {
  45. ctx.So(err, convey.ShouldBeNil)
  46. ctx.So(total, convey.ShouldNotBeNil)
  47. ctx.So(len(rs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  48. })
  49. })
  50. }
  51. func TestDaoFilterVideo(t *testing.T) {
  52. var (
  53. c = context.Background()
  54. p = &model.ParamFilter{Mid: 2}
  55. )
  56. convey.Convey("FilterVideo", t, func(ctx convey.C) {
  57. rs, err := d.FilterVideo(c, p)
  58. ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
  59. ctx.So(err, convey.ShouldBeNil)
  60. ctx.So(rs, convey.ShouldNotBeNil)
  61. })
  62. })
  63. }
  64. func TestDaoFilterMatch(t *testing.T) {
  65. var (
  66. c = context.Background()
  67. p = &model.ParamFilter{}
  68. )
  69. convey.Convey("FilterMatch", t, func(ctx convey.C) {
  70. rs, err := d.FilterMatch(c, p)
  71. ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
  72. ctx.So(err, convey.ShouldBeNil)
  73. ctx.So(rs, convey.ShouldNotBeNil)
  74. })
  75. })
  76. }
  77. func TestDaoFilterCale(t *testing.T) {
  78. var (
  79. c = context.Background()
  80. p = &model.ParamFilter{}
  81. )
  82. convey.Convey("FilterCale", t, func(ctx convey.C) {
  83. rs, err := d.FilterCale(c, p)
  84. ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
  85. ctx.So(err, convey.ShouldBeNil)
  86. ctx.So(len(rs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  87. })
  88. })
  89. }
  90. func TestDaoSearchFav(t *testing.T) {
  91. var (
  92. c = context.Background()
  93. mid = int64(111)
  94. p = &model.ParamFav{Pn: 1, Ps: 30}
  95. )
  96. convey.Convey("SearchFav", t, func(ctx convey.C) {
  97. rs, total, err := d.SearchFav(c, mid, p)
  98. ctx.Convey("Then err should be nil.rs,total should not be nil.", func(ctx convey.C) {
  99. ctx.So(err, convey.ShouldBeNil)
  100. ctx.So(total, convey.ShouldNotBeNil)
  101. ctx.So(len(rs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  102. })
  103. })
  104. }
  105. func TestDaoSeasonFav(t *testing.T) {
  106. var (
  107. c = context.Background()
  108. mid = int64(111)
  109. p = &model.ParamSeason{Pn: 1, Ps: 30}
  110. )
  111. convey.Convey("SeasonFav", t, func(ctx convey.C) {
  112. rs, total, err := d.SeasonFav(c, mid, p)
  113. ctx.Convey("Then err should be nil.rs,total should not be nil.", func(ctx convey.C) {
  114. ctx.So(err, convey.ShouldBeNil)
  115. ctx.So(total, convey.ShouldNotBeNil)
  116. ctx.So(len(rs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  117. })
  118. })
  119. }
  120. func TestDaoStimeFav(t *testing.T) {
  121. var (
  122. c = context.Background()
  123. mid = int64(111)
  124. p = &model.ParamSeason{Pn: 1, Ps: 30}
  125. )
  126. convey.Convey("StimeFav", t, func(ctx convey.C) {
  127. rs, total, err := d.StimeFav(c, mid, p)
  128. ctx.Convey("Then err should be nil.rs,total should not be nil.", func(ctx convey.C) {
  129. ctx.So(err, convey.ShouldBeNil)
  130. ctx.So(total, convey.ShouldNotBeNil)
  131. ctx.So(len(rs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  132. })
  133. })
  134. }