search_test.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package music
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/search"
  5. "go-common/library/database/elastic"
  6. "go-common/library/ecode"
  7. "reflect"
  8. "testing"
  9. "github.com/bouk/monkey"
  10. "github.com/smartystreets/goconvey/convey"
  11. )
  12. func TestMusicSearchBgmSIDs(t *testing.T) {
  13. var (
  14. c = context.TODO()
  15. ret []int64
  16. kw = "kw"
  17. pn = 1
  18. ps = 10
  19. page *search.Pager
  20. err error
  21. esReq *elastic.Request
  22. )
  23. convey.Convey("SearchBgmSIDs", t, func(ctx convey.C) {
  24. monkey.PatchInstanceMethod(reflect.TypeOf(esReq), "Scan", func(_ *elastic.Request, _ context.Context, _ interface{}) (err error) {
  25. return ecode.CreativeSearchErr
  26. })
  27. ret, page, err = d.SearchBgmSIDs(c, kw, pn, ps)
  28. ctx.Convey("SearchBgmSIDs", func(ctx convey.C) {
  29. ctx.So(err, convey.ShouldEqual, ecode.CreativeSearchErr)
  30. ctx.So(ret, convey.ShouldBeNil)
  31. ctx.So(page, convey.ShouldBeNil)
  32. })
  33. })
  34. }
  35. func TestExtAidsWithSameBgm(t *testing.T) {
  36. var (
  37. c = context.TODO()
  38. sid = int64(87600)
  39. total int
  40. aids []int64
  41. err error
  42. esReq *elastic.Request
  43. )
  44. convey.Convey("ExtAidsWithSameBgm", t, func(ctx convey.C) {
  45. monkey.PatchInstanceMethod(reflect.TypeOf(esReq), "Scan", func(_ *elastic.Request, _ context.Context, _ interface{}) (err error) {
  46. return ecode.CreativeSearchErr
  47. })
  48. aids, total, err = d.ExtAidsWithSameBgm(c, sid, 1)
  49. ctx.Convey("ExtAidsWithSameBgm err should be nil.res,resMap should not be nil.", func(ctx convey.C) {
  50. ctx.So(err, convey.ShouldEqual, ecode.CreativeSearchErr)
  51. ctx.So(aids, convey.ShouldHaveLength, 0)
  52. ctx.So(total, convey.ShouldNotBeNil)
  53. })
  54. })
  55. }