dao.cache_test.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoEpContests(t *testing.T) {
  8. var (
  9. c = context.Background()
  10. keys = []int64{1, 2, 3}
  11. )
  12. convey.Convey("EpContests", t, func(ctx convey.C) {
  13. res, err := d.EpContests(c, keys)
  14. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  15. ctx.So(err, convey.ShouldBeNil)
  16. ctx.So(res, convey.ShouldNotBeNil)
  17. })
  18. })
  19. }
  20. func TestDaoEpSeasons(t *testing.T) {
  21. var (
  22. c = context.Background()
  23. keys = []int64{1, 2, 3}
  24. )
  25. convey.Convey("EpSeasons", t, func(ctx convey.C) {
  26. res, err := d.EpSeasons(c, keys)
  27. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  28. ctx.So(err, convey.ShouldBeNil)
  29. ctx.So(res, convey.ShouldNotBeNil)
  30. })
  31. })
  32. }
  33. func TestDaoEpTeams(t *testing.T) {
  34. convey.Convey("EpTeams", t, func(convCtx convey.C) {
  35. var (
  36. c = context.Background()
  37. keys = []int64{1, 2, 3}
  38. )
  39. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  40. res, err := d.EpTeams(c, keys)
  41. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  42. convCtx.So(err, convey.ShouldBeNil)
  43. convCtx.So(res, convey.ShouldNotBeNil)
  44. })
  45. })
  46. })
  47. }