fav_test.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package archive
  2. import (
  3. "context"
  4. "errors"
  5. "reflect"
  6. "testing"
  7. "go-common/library/cache/redis"
  8. "github.com/bouk/monkey"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. var (
  12. errConnClosed = errors.New("redigo: connection closed")
  13. )
  14. func TestArchivekeyUpFavTpsPrefix(t *testing.T) {
  15. var (
  16. mid = int64(888952460)
  17. )
  18. convey.Convey("keyUpFavTpsPrefix", t, func(ctx convey.C) {
  19. p1 := keyUpFavTpsPrefix(mid)
  20. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  21. ctx.So(p1, convey.ShouldNotBeNil)
  22. })
  23. })
  24. }
  25. func TestArchiveFavTypes(t *testing.T) {
  26. var (
  27. c = context.TODO()
  28. mid = int64(888952460)
  29. )
  30. convey.Convey("FavTypes", t, func(ctx convey.C) {
  31. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.redis), "Get", func(_ *redis.Pool, _ context.Context) redis.Conn {
  32. return redis.MockWith(errConnClosed)
  33. })
  34. defer connGuard.Unpatch()
  35. items, err := d.FavTypes(c, mid)
  36. ctx.Convey("Then err should be nil.items should not be nil.", func(ctx convey.C) {
  37. ctx.So(err, convey.ShouldNotBeNil)
  38. ctx.So(items, convey.ShouldBeNil)
  39. })
  40. })
  41. }
  42. func TestArchivepingRedis(t *testing.T) {
  43. var (
  44. c = context.TODO()
  45. )
  46. convey.Convey("pingRedis", t, func(ctx convey.C) {
  47. err := d.pingRedis(c)
  48. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. })
  51. })
  52. }