search_test.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package academy
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/creative/model/academy"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestAcademyArchivesWithES(t *testing.T) {
  9. convey.Convey("ArchivesWithES", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. aca = &academy.EsParam{
  13. OID: int64(1),
  14. Tid: []int64{1, 2},
  15. Business: 1,
  16. Pn: 10,
  17. Ps: 20,
  18. Keyword: "string",
  19. Order: "",
  20. IP: "",
  21. }
  22. )
  23. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  24. res, err := d.ArchivesWithES(c, aca)
  25. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  26. ctx.So(err, convey.ShouldBeNil)
  27. ctx.So(res, convey.ShouldNotBeNil)
  28. })
  29. })
  30. })
  31. }
  32. func TestAcademyKeywords(t *testing.T) {
  33. convey.Convey("Keywords", t, func(ctx convey.C) {
  34. var (
  35. c = context.Background()
  36. )
  37. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  38. res, err := d.Keywords(c)
  39. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  40. ctx.So(err, convey.ShouldBeNil)
  41. ctx.So(res, convey.ShouldNotBeNil)
  42. })
  43. })
  44. })
  45. }