act_test.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestLikekeyRedDot(t *testing.T) {
  8. convey.Convey("keyRedDot", t, func(ctx convey.C) {
  9. var (
  10. mid = int64(55)
  11. )
  12. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  13. p1 := keyRedDot(mid)
  14. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  15. ctx.So(p1, convey.ShouldNotBeNil)
  16. })
  17. })
  18. })
  19. }
  20. func TestLikeCacheRedDotTs(t *testing.T) {
  21. convey.Convey("CacheRedDotTs", t, func(ctx convey.C) {
  22. var (
  23. c = context.Background()
  24. mid = int64(77)
  25. )
  26. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  27. ts, err := d.CacheRedDotTs(c, mid)
  28. ctx.Convey("Then err should be nil.ts should not be nil.", func(ctx convey.C) {
  29. ctx.So(err, convey.ShouldBeNil)
  30. ctx.So(ts, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }
  35. func TestLikeAddCacheRedDotTs(t *testing.T) {
  36. convey.Convey("AddCacheRedDotTs", t, func(ctx convey.C) {
  37. var (
  38. c = context.Background()
  39. mid = int64(77)
  40. ts = int64(14585874)
  41. )
  42. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  43. err := d.AddCacheRedDotTs(c, mid, ts)
  44. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  45. ctx.So(err, convey.ShouldBeNil)
  46. })
  47. })
  48. })
  49. }