ugc_test.go 695 B

123456789101112131415161718192021222324252627282930313233343536
  1. package web
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestService_UgcFull(t *testing.T) {
  8. Convey("ugc full", t, WithService(func(s *Service) {
  9. var (
  10. c = context.Background()
  11. pn = int64(1)
  12. ps = int64(10)
  13. )
  14. res, err := s.UgcFull(c, pn, ps, "")
  15. So(err, ShouldBeNil)
  16. So(res, ShouldNotBeNil)
  17. }))
  18. }
  19. func TestService_UgcIncre(t *testing.T) {
  20. Convey("pgc incre", t, WithService(func(s *Service) {
  21. var (
  22. c = context.Background()
  23. pn = 1
  24. ps = 10
  25. start = int64(1505876448)
  26. end = int64(1505876450)
  27. )
  28. res, err := s.UgcIncre(c, pn, ps, start, end, "")
  29. So(err, ShouldBeNil)
  30. So(res, ShouldNotBeNil)
  31. }))
  32. }