memcached_test.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package like
  2. import (
  3. "context"
  4. "go-common/app/interface/main/activity/model/like"
  5. "testing"
  6. "fmt"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestLikekeyInfo(t *testing.T) {
  10. convey.Convey("keyInfo", t, func(ctx convey.C) {
  11. var (
  12. sid = int64(0)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. p1 := keyInfo(sid)
  16. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  17. ctx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestLikeSetInfoCache(t *testing.T) {
  23. convey.Convey("SetInfoCache", t, func(ctx convey.C) {
  24. var (
  25. c = context.Background()
  26. v = &like.Subject{}
  27. sid = int64(0)
  28. )
  29. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  30. err := d.SetInfoCache(c, v, sid)
  31. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  32. ctx.So(err, convey.ShouldBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestLikeInfoCache(t *testing.T) {
  38. convey.Convey("InfoCache", t, func(ctx convey.C) {
  39. var (
  40. c = context.Background()
  41. sid = int64(0)
  42. )
  43. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  44. v, err := d.InfoCache(c, sid)
  45. ctx.Convey("Then err should be nil.v should not be nil.", func(ctx convey.C) {
  46. ctx.So(err, convey.ShouldBeNil)
  47. fmt.Printf("%+v", v)
  48. })
  49. })
  50. })
  51. }