search_sug_test.go 616 B

1234567891011121314151617181920212223242526272829
  1. package search
  2. import (
  3. "context"
  4. "testing"
  5. searchMdl "go-common/app/interface/main/tv/model/search"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSearchSearchSug(t *testing.T) {
  9. var (
  10. ctx = context.Background()
  11. req = &searchMdl.ReqSug{
  12. MobiApp: "android_tv_yst",
  13. Build: "1011",
  14. Platform: "android",
  15. Term: "test",
  16. }
  17. )
  18. convey.Convey("SearchSug", t, func(c convey.C) {
  19. result, err := d.SearchSug(ctx, req)
  20. c.Convey("Then err should be nil.result should not be nil.", func(c convey.C) {
  21. c.So(err, convey.ShouldBeNil)
  22. c.So(result, convey.ShouldNotBeNil)
  23. })
  24. })
  25. }