blocked_mc_test.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 TestDaouserBlockedListKey(t *testing.T) {
  9. convey.Convey("userBlockedListKey", t, func(convCtx convey.C) {
  10. var (
  11. mid = int64(0)
  12. )
  13. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  14. p1 := userBlockedListKey(mid)
  15. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  16. convCtx.So(p1, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestDaoblockedInfoKey(t *testing.T) {
  22. convey.Convey("blockedInfoKey", t, func(convCtx convey.C) {
  23. var (
  24. id = int64(0)
  25. )
  26. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  27. p1 := blockedInfoKey(id)
  28. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  29. convCtx.So(p1, convey.ShouldNotBeNil)
  30. })
  31. })
  32. })
  33. }
  34. func TestDaoBlockedUserListCache(t *testing.T) {
  35. convey.Convey("BlockedUserListCache", t, func(convCtx convey.C) {
  36. var (
  37. c = context.Background()
  38. mid = int64(-1)
  39. )
  40. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  41. ls, err := d.BlockedUserListCache(c, mid)
  42. convCtx.Convey("Then err should be nil.ls should be nil.", func(convCtx convey.C) {
  43. convCtx.So(err, convey.ShouldBeNil)
  44. convCtx.So(len(ls), convey.ShouldBeGreaterThanOrEqualTo, 0)
  45. })
  46. })
  47. })
  48. }
  49. func TestDaoSetBlockedUserListCache(t *testing.T) {
  50. convey.Convey("SetBlockedUserListCache", t, func(convCtx convey.C) {
  51. var (
  52. c = context.Background()
  53. mid = int64(0)
  54. ls = []*model.BlockedInfo{}
  55. )
  56. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  57. err := d.SetBlockedUserListCache(c, mid, ls)
  58. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  59. convCtx.So(err, convey.ShouldBeNil)
  60. })
  61. })
  62. })
  63. }
  64. func TestDaoBlockedInfoCache(t *testing.T) {
  65. convey.Convey("BlockedInfoCache", t, func(convCtx convey.C) {
  66. var (
  67. c = context.Background()
  68. id = int64(-1)
  69. )
  70. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  71. info, err := d.BlockedInfoCache(c, id)
  72. convCtx.Convey("Then err should be nil.info should be nil.", func(convCtx convey.C) {
  73. convCtx.So(err, convey.ShouldBeNil)
  74. convCtx.So(info, convey.ShouldBeNil)
  75. })
  76. })
  77. })
  78. }
  79. func TestDaoSetBlockedInfoCache(t *testing.T) {
  80. convey.Convey("SetBlockedInfoCache", t, func(convCtx convey.C) {
  81. var (
  82. c = context.Background()
  83. id = int64(0)
  84. info = &model.BlockedInfo{}
  85. )
  86. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  87. err := d.SetBlockedInfoCache(c, id, info)
  88. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  89. convCtx.So(err, convey.ShouldBeNil)
  90. })
  91. })
  92. })
  93. }
  94. func TestDaoBlockedInfosCache(t *testing.T) {
  95. convey.Convey("BlockedInfosCache", t, func(convCtx convey.C) {
  96. var (
  97. c = context.Background()
  98. ids = []int64{234}
  99. )
  100. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  101. infos, miss, err := d.BlockedInfosCache(c, ids)
  102. convCtx.Convey("Then err should not be nil.infos,miss should be nil.", func(convCtx convey.C) {
  103. convCtx.So(err, convey.ShouldNotBeNil)
  104. convCtx.So(miss, convey.ShouldBeNil)
  105. convCtx.So(infos, convey.ShouldBeNil)
  106. })
  107. })
  108. })
  109. }
  110. func TestDaoSetBlockedInfosCache(t *testing.T) {
  111. convey.Convey("SetBlockedInfosCache", t, func(convCtx convey.C) {
  112. var (
  113. c = context.Background()
  114. infos = []*model.BlockedInfo{}
  115. )
  116. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  117. err := d.SetBlockedInfosCache(c, infos)
  118. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  119. convCtx.So(err, convey.ShouldBeNil)
  120. })
  121. })
  122. })
  123. }