mc.cache_test.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package timemachine
  2. import (
  3. "context"
  4. "go-common/app/interface/main/activity/model/timemachine"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestTimemachineAddCacheTimemachine(t *testing.T) {
  9. convey.Convey("AddCacheTimemachine", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. id = int64(0)
  13. val = &timemachine.Item{}
  14. )
  15. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  16. err := d.AddCacheTimemachine(c, id, val)
  17. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestTimemachineCacheTimemachine(t *testing.T) {
  24. convey.Convey("CacheTimemachine", t, func(ctx convey.C) {
  25. var (
  26. c = context.Background()
  27. id = int64(0)
  28. )
  29. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  30. res, err := d.CacheTimemachine(c, id)
  31. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  32. ctx.So(err, convey.ShouldBeNil)
  33. ctx.So(res, convey.ShouldNotBeNil)
  34. })
  35. })
  36. })
  37. }