memcache_test.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package data
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/data"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDatakeyStat(t *testing.T) {
  9. var (
  10. mid = int64(1)
  11. )
  12. convey.Convey("keyStat", t, func(ctx convey.C) {
  13. p1 := keyStat(mid)
  14. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  15. ctx.So(p1, convey.ShouldEqual, "s_1")
  16. })
  17. })
  18. }
  19. func TestDatakeyUpStat(t *testing.T) {
  20. var (
  21. mid = int64(1)
  22. date = ""
  23. )
  24. convey.Convey("keyUpStat", t, func(ctx convey.C) {
  25. p1 := keyUpStat(mid, date)
  26. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  27. ctx.So(p1, convey.ShouldEqual, "sup_1")
  28. })
  29. })
  30. }
  31. func TestDatastatCache(t *testing.T) {
  32. var (
  33. c = context.TODO()
  34. mid = int64(1)
  35. )
  36. convey.Convey("statCache", t, func(ctx convey.C) {
  37. _, err := d.statCache(c, mid)
  38. ctx.Convey("Then err should be nil.st should not be nil.", func(ctx convey.C) {
  39. ctx.So(err, convey.ShouldBeNil)
  40. })
  41. })
  42. }
  43. func TestDataaddStatCache(t *testing.T) {
  44. var (
  45. c = context.TODO()
  46. mid = int64(0)
  47. st = &data.Stat{}
  48. )
  49. convey.Convey("addStatCache", t, func(ctx convey.C) {
  50. err := d.addStatCache(c, mid, st)
  51. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  52. ctx.So(err, convey.ShouldBeNil)
  53. })
  54. })
  55. }
  56. func TestDataupBaseStatCache(t *testing.T) {
  57. var (
  58. c = context.TODO()
  59. mid = int64(0)
  60. dt = ""
  61. )
  62. convey.Convey("upBaseStatCache", t, func(ctx convey.C) {
  63. _, err := d.upBaseStatCache(c, mid, dt)
  64. ctx.Convey("Then err should be nil.st should not be nil.", func(ctx convey.C) {
  65. ctx.So(err, convey.ShouldBeNil)
  66. })
  67. })
  68. }
  69. func TestDataaddUpBaseStatCache(t *testing.T) {
  70. var (
  71. c = context.TODO()
  72. mid = int64(0)
  73. dt = ""
  74. st = &data.UpBaseStat{}
  75. )
  76. convey.Convey("addUpBaseStatCache", t, func(ctx convey.C) {
  77. err := d.addUpBaseStatCache(c, mid, dt, st)
  78. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  79. ctx.So(err, convey.ShouldBeNil)
  80. })
  81. })
  82. }
  83. func TestDataDelUpBaseStatCache(t *testing.T) {
  84. var (
  85. c = context.TODO()
  86. mid = int64(0)
  87. dt = ""
  88. )
  89. convey.Convey("DelUpBaseStatCache", t, func(ctx convey.C) {
  90. err := d.DelUpBaseStatCache(c, mid, dt)
  91. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  92. ctx.So(err, convey.ShouldBeNil)
  93. })
  94. })
  95. }