log_test.go 998 B

1234567891011121314151617181920212223242526272829303132333435
  1. package search
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestSearchLogPaginate(t *testing.T) {
  9. convey.Convey("LogPaginate", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. oid = int64(0)
  13. tp = int(0)
  14. states = []int64{}
  15. curPage = int(0)
  16. pageSize = int(0)
  17. startTime = ""
  18. now = time.Now()
  19. )
  20. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  21. logs, replyCount, reportCount, pageCount, total, err := d.LogPaginate(c, oid, tp, states, curPage, pageSize, startTime, now)
  22. ctx.Convey("Then err should be nil.logs,replyCount,reportCount,pageCount,total should not be nil.", func(ctx convey.C) {
  23. ctx.So(err, convey.ShouldNotBeNil)
  24. ctx.So(total, convey.ShouldNotBeNil)
  25. ctx.So(pageCount, convey.ShouldNotBeNil)
  26. ctx.So(reportCount, convey.ShouldNotBeNil)
  27. ctx.So(replyCount, convey.ShouldNotBeNil)
  28. ctx.So(logs, convey.ShouldBeNil)
  29. })
  30. })
  31. })
  32. }