elastic_test.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package search
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "testing"
  7. seaMdl "go-common/app/interface/main/tv/model/search"
  8. "go-common/library/ecode"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. func TestSearchyearTrans(t *testing.T) {
  12. var (
  13. year = "2018-2019"
  14. )
  15. convey.Convey("yearTrans", t, func(ctx convey.C) {
  16. stime, etime, err := yearTrans(year)
  17. ctx.Convey("Then err should be nil.stime,etime should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. ctx.So(etime, convey.ShouldNotBeNil)
  20. ctx.So(stime, convey.ShouldNotBeNil)
  21. fmt.Println(stime, etime)
  22. })
  23. })
  24. }
  25. func TestSearchPgcIdx(t *testing.T) {
  26. var (
  27. c = context.Background()
  28. pnDoc = seaMdl.ReqEsPn{
  29. Ps: 50,
  30. Pn: 1,
  31. Order: 6,
  32. Sort: 0,
  33. }
  34. reqDoc = &seaMdl.ReqPgcIdx{
  35. SeasonType: 3,
  36. ProducerID: 31,
  37. Year: "",
  38. StyleID: -1,
  39. PubDate: "",
  40. SeasonMonth: 0,
  41. SeasonStatus: []int{},
  42. Copyright: []int{},
  43. IsFinish: "",
  44. Area: []int{},
  45. SeasonVersion: 0,
  46. }
  47. reqJp = &seaMdl.ReqPgcIdx{
  48. SeasonType: 1,
  49. ProducerID: -1,
  50. Year: "",
  51. StyleID: 136,
  52. PubDate: "2018-2018",
  53. SeasonMonth: 10,
  54. SeasonStatus: []int{2, 6}, // need to pay
  55. Copyright: []int{0, 1, 2, 4},
  56. IsFinish: "0",
  57. Area: []int{},
  58. SeasonVersion: 1,
  59. }
  60. )
  61. convey.Convey("PgcIdxJp", t, func(ctx convey.C) {
  62. ctx.Convey("PgcIdxJp should not be nil", func(ctx convey.C) {
  63. reqDoc.ReqEsPn = pnDoc
  64. dataDoc, err2 := d.PgcIdx(c, reqDoc)
  65. ctx.So(err2, convey.ShouldBeNil)
  66. ctx.So(dataDoc, convey.ShouldNotBeNil)
  67. str, _ := json.Marshal(dataDoc)
  68. fmt.Println(string(str))
  69. })
  70. ctx.Convey("PgcIdxDoc should not be nil", func(ctx convey.C) {
  71. pnDoc.Sort = 1
  72. reqJp.ReqEsPn = pnDoc
  73. dataJp, err := d.PgcIdx(c, reqJp)
  74. ctx.So(err, convey.ShouldBeNil)
  75. ctx.So(dataJp, convey.ShouldNotBeNil)
  76. fmt.Println(dataJp)
  77. str, _ := json.Marshal(dataJp)
  78. fmt.Println(string(str))
  79. })
  80. })
  81. }
  82. func TestSeachUgcIdx(t *testing.T) {
  83. var (
  84. c = context.Background()
  85. pnDoc = seaMdl.ReqEsPn{
  86. Ps: 50,
  87. Pn: 1,
  88. Order: 6,
  89. Sort: 0,
  90. }
  91. reqNone = &seaMdl.SrvUgcIdx{}
  92. reqTIDs = &seaMdl.SrvUgcIdx{
  93. TIDs: []int32{75},
  94. PubTime: &seaMdl.UgcTime{
  95. STime: "2017-01-01 00:00:00",
  96. ETime: "2018-12-31 23:59:59",
  97. },
  98. }
  99. )
  100. convey.Convey("UgcIdx", t, func(ctx convey.C) {
  101. ctx.Convey("If TIDs empty, return request error ", func(ctx convey.C) {
  102. reqTIDs.ReqEsPn = pnDoc
  103. _, err := d.UgcIdx(c, reqNone)
  104. ctx.So(err, convey.ShouldEqual, ecode.RequestErr)
  105. })
  106. ctx.Convey("Pick Result with type_ids AND pub_time", func(ctx convey.C) {
  107. dataDoc, err := d.UgcIdx(c, reqTIDs)
  108. ctx.So(err, convey.ShouldBeNil)
  109. ctx.So(dataDoc, convey.ShouldNotBeNil)
  110. str, _ := json.Marshal(dataDoc)
  111. fmt.Println(string(str))
  112. })
  113. })
  114. }