mc_limit_test.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. package account
  2. import (
  3. "context"
  4. "go-common/library/cache/memcache"
  5. "reflect"
  6. "testing"
  7. "github.com/bouk/monkey"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. func TestAccountlimitMidHafMin(t *testing.T) {
  11. convey.Convey("limitMidHafMin", t, func(ctx convey.C) {
  12. var (
  13. mid = int64(2089809)
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. p1 := limitMidHafMin(mid)
  17. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  18. ctx.So(p1, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestAccountlimitMidSameTitle(t *testing.T) {
  24. convey.Convey("limitMidSameTitle", t, func(ctx convey.C) {
  25. var (
  26. mid = int64(2089809)
  27. title = "iamtitle"
  28. )
  29. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  30. p1 := limitMidSameTitle(mid, title)
  31. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  32. ctx.So(p1, convey.ShouldNotBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestAccountHalfMin(t *testing.T) {
  38. convey.Convey("HalfMin", t, func(ctx convey.C) {
  39. var (
  40. c = context.Background()
  41. mid = int64(2089809)
  42. )
  43. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  44. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  45. return memcache.MockWith(memcache.ErrNotFound)
  46. })
  47. defer connGuard.Unpatch()
  48. exist, ts, err := d.HalfMin(c, mid)
  49. ctx.Convey("Then err should be nil.exist,ts should not be nil.", func(ctx convey.C) {
  50. ctx.So(err, convey.ShouldBeNil)
  51. ctx.So(ts, convey.ShouldNotBeNil)
  52. ctx.So(exist, convey.ShouldNotBeNil)
  53. })
  54. })
  55. })
  56. }
  57. func TestAccountAddHalfMin(t *testing.T) {
  58. convey.Convey("AddHalfMin", t, func(ctx convey.C) {
  59. var (
  60. c = context.Background()
  61. mid = int64(2089809)
  62. )
  63. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  64. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  65. return memcache.MockWith(memcache.ErrNotFound)
  66. })
  67. defer connGuard.Unpatch()
  68. err := d.AddHalfMin(c, mid)
  69. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  70. ctx.So(err, convey.ShouldNotBeNil)
  71. })
  72. })
  73. })
  74. }
  75. func TestAccountDelHalfMin(t *testing.T) {
  76. convey.Convey("DelHalfMin", t, func(ctx convey.C) {
  77. var (
  78. c = context.Background()
  79. mid = int64(2089809)
  80. )
  81. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  82. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  83. return memcache.MockWith(memcache.ErrNotFound)
  84. })
  85. defer connGuard.Unpatch()
  86. err := d.DelHalfMin(c, mid)
  87. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  88. ctx.So(err, convey.ShouldBeNil)
  89. })
  90. })
  91. })
  92. }
  93. func TestAccountSubmitCache(t *testing.T) {
  94. convey.Convey("SubmitCache", t, func(ctx convey.C) {
  95. var (
  96. c = context.Background()
  97. mid = int64(2089809)
  98. title = "iamtitle"
  99. )
  100. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  101. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  102. return memcache.MockWith(memcache.ErrNotFound)
  103. })
  104. defer connGuard.Unpatch()
  105. exist, err := d.SubmitCache(c, mid, title)
  106. ctx.Convey("Then err should be nil.exist should not be nil.", func(ctx convey.C) {
  107. ctx.So(err, convey.ShouldBeNil)
  108. ctx.So(exist, convey.ShouldNotBeNil)
  109. })
  110. })
  111. })
  112. }
  113. func TestAccountAddSubmitCache(t *testing.T) {
  114. convey.Convey("AddSubmitCache", t, func(ctx convey.C) {
  115. var (
  116. c = context.Background()
  117. mid = int64(2089809)
  118. title = "iamtitle"
  119. )
  120. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  121. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  122. return memcache.MockWith(memcache.ErrNotFound)
  123. })
  124. defer connGuard.Unpatch()
  125. err := d.AddSubmitCache(c, mid, title)
  126. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  127. ctx.So(err, convey.ShouldNotBeNil)
  128. })
  129. })
  130. })
  131. }
  132. func TestAccountDelSubmitCache(t *testing.T) {
  133. convey.Convey("DelSubmitCache", t, func(ctx convey.C) {
  134. var (
  135. c = context.Background()
  136. mid = int64(2089809)
  137. title = "iamtitle"
  138. )
  139. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  140. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  141. return memcache.MockWith(memcache.ErrNotFound)
  142. })
  143. defer connGuard.Unpatch()
  144. err := d.DelSubmitCache(c, mid, title)
  145. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  146. ctx.So(err, convey.ShouldBeNil)
  147. })
  148. })
  149. })
  150. }
  151. func TestAccountpingMemcache(t *testing.T) {
  152. convey.Convey("pingMemcache", t, func(ctx convey.C) {
  153. var (
  154. c = context.Background()
  155. err error
  156. )
  157. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  158. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  159. return memcache.MockWith(memcache.ErrNotFound)
  160. })
  161. defer connGuard.Unpatch()
  162. err = d.pingMemcache(c)
  163. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  164. ctx.So(err, convey.ShouldNotBeNil)
  165. })
  166. })
  167. })
  168. }