blocked_redis_test.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/credit/model"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoblockIndexKey(t *testing.T) {
  9. convey.Convey("blockIndexKey", t, func(convCtx convey.C) {
  10. var (
  11. otype = int8(0)
  12. btype = int8(0)
  13. )
  14. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  15. p1 := blockIndexKey(otype, btype)
  16. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  17. convCtx.So(p1, convey.ShouldNotBeNil)
  18. })
  19. })
  20. })
  21. }
  22. func TestDaoBlockedIdxCache(t *testing.T) {
  23. convey.Convey("BlockedIdxCache", t, func(convCtx convey.C) {
  24. var (
  25. c = context.Background()
  26. otype = int8(0)
  27. btype = int8(0)
  28. start = int(0)
  29. end = int(0)
  30. )
  31. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  32. ids, err := d.BlockedIdxCache(c, otype, btype, start, end)
  33. convCtx.Convey("Then err should be nil.ids should be nil.", func(convCtx convey.C) {
  34. convCtx.So(err, convey.ShouldBeNil)
  35. convCtx.So(ids, convey.ShouldBeNil)
  36. })
  37. })
  38. })
  39. }
  40. func TestDaoExpireBlockedIdx(t *testing.T) {
  41. convey.Convey("ExpireBlockedIdx", t, func(convCtx convey.C) {
  42. var (
  43. c = context.Background()
  44. otype = int8(0)
  45. btype = int8(0)
  46. )
  47. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  48. ok, err := d.ExpireBlockedIdx(c, otype, btype)
  49. convCtx.Convey("Then err should be nil.ok should not be nil.", func(convCtx convey.C) {
  50. convCtx.So(err, convey.ShouldBeNil)
  51. convCtx.So(ok, convey.ShouldNotBeNil)
  52. })
  53. })
  54. })
  55. }
  56. func TestDaoLoadBlockedIdx(t *testing.T) {
  57. convey.Convey("LoadBlockedIdx", t, func(convCtx convey.C) {
  58. var (
  59. c = context.Background()
  60. otype = int8(0)
  61. btype = int8(0)
  62. infos = []*model.BlockedInfo{}
  63. )
  64. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  65. err := d.LoadBlockedIdx(c, otype, btype, infos)
  66. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  67. convCtx.So(err, convey.ShouldBeNil)
  68. })
  69. })
  70. })
  71. }