redis_test.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. package toview
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/app/interface/main/history/model"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestToviewkey(t *testing.T) {
  10. convey.Convey("key", t, func(ctx convey.C) {
  11. var (
  12. mid = int64(14771787)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. p1 := key(mid)
  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 TestToviewExpire(t *testing.T) {
  23. convey.Convey("Expire", t, func(ctx convey.C) {
  24. var (
  25. c = context.Background()
  26. mid = int64(14771787)
  27. )
  28. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  29. ok, err := d.Expire(c, mid)
  30. ctx.Convey("Then err should be nil.ok should not be nil.", func(ctx convey.C) {
  31. ctx.So(err, convey.ShouldBeNil)
  32. ctx.So(ok, convey.ShouldNotBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestToviewCache(t *testing.T) {
  38. convey.Convey("Cache", t, func(ctx convey.C) {
  39. var (
  40. c = context.Background()
  41. mid = int64(14771787)
  42. start = int(1)
  43. end = int(2)
  44. )
  45. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  46. _, err := d.Cache(c, mid, start, end)
  47. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  48. ctx.So(err, convey.ShouldBeNil)
  49. })
  50. })
  51. })
  52. }
  53. func TestToviewCacheMap(t *testing.T) {
  54. convey.Convey("CacheMap", t, func(ctx convey.C) {
  55. var (
  56. c = context.Background()
  57. mid = int64(14771787)
  58. )
  59. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  60. res, err := d.CacheMap(c, mid)
  61. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  62. ctx.So(err, convey.ShouldBeNil)
  63. ctx.So(res, convey.ShouldNotBeNil)
  64. })
  65. })
  66. })
  67. }
  68. func TestToviewCntCache(t *testing.T) {
  69. convey.Convey("CntCache", t, func(ctx convey.C) {
  70. var (
  71. c = context.Background()
  72. mid = int64(14771787)
  73. )
  74. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  75. count, err := d.CntCache(c, mid)
  76. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  77. ctx.So(err, convey.ShouldBeNil)
  78. ctx.So(count, convey.ShouldNotBeNil)
  79. })
  80. })
  81. })
  82. }
  83. func TestToviewClearCache(t *testing.T) {
  84. convey.Convey("ClearCache", t, func(ctx convey.C) {
  85. var (
  86. c = context.Background()
  87. mid = int64(14771787)
  88. )
  89. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  90. err := d.ClearCache(c, mid)
  91. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  92. ctx.So(err, convey.ShouldBeNil)
  93. })
  94. })
  95. })
  96. }
  97. func TestToviewDelCaches(t *testing.T) {
  98. convey.Convey("DelCaches", t, func(ctx convey.C) {
  99. var (
  100. c = context.Background()
  101. mid = int64(14771787)
  102. aids = []int64{}
  103. )
  104. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  105. err := d.DelCaches(c, mid, aids)
  106. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  107. ctx.So(err, convey.ShouldBeNil)
  108. })
  109. })
  110. })
  111. }
  112. func TestToviewAddCache(t *testing.T) {
  113. convey.Convey("AddCache", t, func(ctx convey.C) {
  114. var (
  115. c = context.Background()
  116. mid = int64(14771787)
  117. aid = int64(14771787)
  118. now = time.Now().Unix()
  119. )
  120. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  121. err := d.AddCache(c, mid, aid, now)
  122. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  123. ctx.So(err, convey.ShouldBeNil)
  124. })
  125. })
  126. })
  127. }
  128. func TestToviewAddCacheList(t *testing.T) {
  129. convey.Convey("AddCacheList", t, func(ctx convey.C) {
  130. var (
  131. c = context.Background()
  132. mid = int64(14771787)
  133. views = []*model.ToView{}
  134. )
  135. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  136. err := d.AddCacheList(c, mid, views)
  137. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  138. ctx.So(err, convey.ShouldBeNil)
  139. })
  140. })
  141. })
  142. }
  143. func TestToviewaddCache(t *testing.T) {
  144. convey.Convey("addCache", t, func(ctx convey.C) {
  145. var (
  146. c = context.Background()
  147. key = ""
  148. views = []*model.ToView{{Aid: 1477, Unix: 11}}
  149. )
  150. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  151. err := d.addCache(c, key, views)
  152. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  153. ctx.So(err, convey.ShouldBeNil)
  154. })
  155. })
  156. })
  157. }
  158. func TestToviewPingRedis(t *testing.T) {
  159. convey.Convey("PingRedis", t, func(ctx convey.C) {
  160. var (
  161. c = context.Background()
  162. )
  163. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  164. err := d.PingRedis(c)
  165. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  166. ctx.So(err, convey.ShouldBeNil)
  167. })
  168. })
  169. })
  170. }