redis_test.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. package bnj
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestBnjresetKey(t *testing.T) {
  8. convey.Convey("resetKey", t, func(ctx convey.C) {
  9. var (
  10. mid = int64(0)
  11. )
  12. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  13. p1 := resetKey(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 TestBnjrewardKey(t *testing.T) {
  21. convey.Convey("rewardKey", t, func(ctx convey.C) {
  22. var (
  23. mid = int64(0)
  24. subID = int64(0)
  25. step = int(0)
  26. )
  27. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  28. p1 := rewardKey(mid, subID, step)
  29. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  30. ctx.So(p1, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }
  35. func TestBnjCacheResetCD(t *testing.T) {
  36. convey.Convey("CacheResetCD", t, func(ctx convey.C) {
  37. var (
  38. c = context.Background()
  39. mid = int64(0)
  40. expire = int32(0)
  41. )
  42. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  43. p1, err := d.CacheResetCD(c, mid, expire)
  44. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  45. ctx.So(err, convey.ShouldBeNil)
  46. ctx.So(p1, convey.ShouldNotBeNil)
  47. })
  48. })
  49. })
  50. }
  51. func TestBnjTTLResetCD(t *testing.T) {
  52. convey.Convey("CacheTTLResetCD", t, func(ctx convey.C) {
  53. var (
  54. c = context.Background()
  55. mid = int64(0)
  56. )
  57. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  58. p1, err := d.TTLResetCD(c, mid)
  59. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  60. ctx.So(err, convey.ShouldBeNil)
  61. ctx.So(p1, convey.ShouldNotBeNil)
  62. })
  63. })
  64. })
  65. }
  66. func TestBnjCacheHasReward(t *testing.T) {
  67. convey.Convey("CacheHasReward", t, func(ctx convey.C) {
  68. var (
  69. c = context.Background()
  70. mid = int64(0)
  71. subID = int64(0)
  72. step = int(0)
  73. )
  74. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  75. p1, err := d.CacheHasReward(c, mid, subID, step)
  76. ctx.Convey("Then err should be nil.p1 should not be nil.", func(ctx convey.C) {
  77. ctx.So(err, convey.ShouldBeNil)
  78. ctx.So(p1, convey.ShouldNotBeNil)
  79. })
  80. })
  81. })
  82. }
  83. func TestBnjDelCacheHasReward(t *testing.T) {
  84. convey.Convey("DelCacheHasReward", t, func(ctx convey.C) {
  85. var (
  86. c = context.Background()
  87. mid = int64(0)
  88. subID = int64(0)
  89. step = int(0)
  90. )
  91. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  92. err := d.DelCacheHasReward(c, mid, subID, step)
  93. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  94. ctx.So(err, convey.ShouldBeNil)
  95. })
  96. })
  97. })
  98. }
  99. func TestBnjHasReward(t *testing.T) {
  100. convey.Convey("HasReward", t, func(ctx convey.C) {
  101. var (
  102. c = context.Background()
  103. mid = int64(27515251)
  104. subID = int64(0)
  105. step = int(1)
  106. )
  107. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  108. res, err := d.HasReward(c, mid, subID, step)
  109. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  110. ctx.So(err, convey.ShouldBeNil)
  111. ctx.So(res, convey.ShouldNotBeNil)
  112. ctx.Printf("%+v", res)
  113. })
  114. })
  115. })
  116. }
  117. func TestBnjsetNXLockCache(t *testing.T) {
  118. convey.Convey("setNXLockCache", t, func(ctx convey.C) {
  119. var (
  120. c = context.Background()
  121. key = ""
  122. times = int32(0)
  123. )
  124. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  125. res, err := d.setNXLockCache(c, key, times)
  126. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  127. ctx.So(err, convey.ShouldBeNil)
  128. ctx.So(res, convey.ShouldNotBeNil)
  129. })
  130. })
  131. })
  132. }
  133. func TestBnjdelNXLockCache(t *testing.T) {
  134. convey.Convey("delNXLockCache", t, func(ctx convey.C) {
  135. var (
  136. c = context.Background()
  137. key = ""
  138. )
  139. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  140. err := d.delNXLockCache(c, key)
  141. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  142. ctx.So(err, convey.ShouldBeNil)
  143. })
  144. })
  145. })
  146. }