bigdata_test.go 809 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package bigdata
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/reply/conf"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestBigdataNew(t *testing.T) {
  9. convey.Convey("New", t, func(ctx convey.C) {
  10. var (
  11. c = conf.Conf
  12. )
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. p1 := New(c)
  15. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  16. ctx.So(p1, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestBigdataFilter(t *testing.T) {
  22. convey.Convey("Filter", t, func(ctx convey.C) {
  23. var (
  24. c = context.Background()
  25. msg = ""
  26. )
  27. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  28. err := d.Filter(c, msg)
  29. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }