memcache_test.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package archive
  2. import (
  3. "context"
  4. arcmdl "go-common/app/interface/main/creative/model/archive"
  5. "go-common/library/cache/memcache"
  6. "reflect"
  7. "testing"
  8. "github.com/bouk/monkey"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. func TestArchivekeyPorder(t *testing.T) {
  12. var (
  13. aid = int64(10110560)
  14. )
  15. convey.Convey("keyPorder", t, func(ctx convey.C) {
  16. p1 := keyPorder(aid)
  17. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  18. ctx.So(p1, convey.ShouldNotBeNil)
  19. })
  20. })
  21. }
  22. func TestArchivekeyArcCM(t *testing.T) {
  23. var (
  24. aid = int64(10110560)
  25. )
  26. convey.Convey("keyArcCM", t, func(ctx convey.C) {
  27. p1 := keyArcCM(aid)
  28. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  29. ctx.So(p1, convey.ShouldNotBeNil)
  30. })
  31. })
  32. }
  33. func TestArchivePOrderCache(t *testing.T) {
  34. var (
  35. c = context.TODO()
  36. aid = int64(10110560)
  37. )
  38. convey.Convey("POrderCache", t, func(ctx convey.C) {
  39. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  40. return memcache.MockWith(memcache.ErrNotFound)
  41. })
  42. defer connGuard.Unpatch()
  43. st, err := d.POrderCache(c, aid)
  44. ctx.Convey("Then err should be nil.st should not be nil.", func(ctx convey.C) {
  45. ctx.So(err, convey.ShouldBeNil)
  46. ctx.So(st, convey.ShouldBeNil)
  47. })
  48. })
  49. }
  50. func TestArchiveAddPOrderCache(t *testing.T) {
  51. var (
  52. c = context.TODO()
  53. aid = int64(10110560)
  54. st = &arcmdl.Porder{}
  55. )
  56. convey.Convey("AddPOrderCache", t, func(ctx convey.C) {
  57. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  58. return memcache.MockWith(memcache.ErrNotFound)
  59. })
  60. defer connGuard.Unpatch()
  61. err := d.AddPOrderCache(c, aid, st)
  62. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  63. ctx.So(err, convey.ShouldNotBeNil)
  64. })
  65. })
  66. }
  67. func TestArchiveArcCMCache(t *testing.T) {
  68. var (
  69. c = context.TODO()
  70. aid = int64(10110560)
  71. )
  72. convey.Convey("ArcCMCache", t, func(ctx convey.C) {
  73. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  74. return memcache.MockWith(memcache.ErrNotFound)
  75. })
  76. defer connGuard.Unpatch()
  77. st, err := d.ArcCMCache(c, aid)
  78. ctx.Convey("Then err should be nil.st should not be nil.", func(ctx convey.C) {
  79. ctx.So(err, convey.ShouldBeNil)
  80. ctx.So(st, convey.ShouldBeNil)
  81. })
  82. })
  83. }
  84. func TestArchiveAddArcCMCache(t *testing.T) {
  85. var (
  86. c = context.TODO()
  87. aid = int64(10110560)
  88. st = &arcmdl.Commercial{}
  89. )
  90. convey.Convey("AddArcCMCache", t, func(ctx convey.C) {
  91. connGuard := monkey.PatchInstanceMethod(reflect.TypeOf(d.mc), "Get", func(_ *memcache.Pool, _ context.Context) memcache.Conn {
  92. return memcache.MockWith(memcache.ErrNotFound)
  93. })
  94. defer connGuard.Unpatch()
  95. err := d.AddArcCMCache(c, aid, st)
  96. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  97. ctx.So(err, convey.ShouldNotBeNil)
  98. })
  99. })
  100. }