pgc_test.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package web
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestWebPgcFull(t *testing.T) {
  8. convey.Convey("PgcFull", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. tp = int(1)
  12. pn = int64(1)
  13. ps = int64(10)
  14. source = "youku"
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. res, err := d.PgcFull(c, tp, pn, ps, source)
  18. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldBeNil)
  20. ctx.So(res, convey.ShouldNotBeNil)
  21. })
  22. })
  23. })
  24. }
  25. func TestWebPgcIncre(t *testing.T) {
  26. convey.Convey("PgcIncre", t, func(ctx convey.C) {
  27. var (
  28. c = context.Background()
  29. tp = int(2)
  30. pn = int64(1)
  31. ps = int64(10)
  32. start = int64(1505876448)
  33. end = int64(1505876450)
  34. source = "youku"
  35. )
  36. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  37. res, err := d.PgcIncre(c, tp, pn, ps, start, end, source)
  38. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  39. ctx.So(err, convey.ShouldBeNil)
  40. ctx.So(res, convey.ShouldNotBeNil)
  41. })
  42. })
  43. })
  44. }