mc.cache_test.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package kfc
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/main/activity/model/kfc"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestKfcCacheKfcCoupon(t *testing.T) {
  9. convey.Convey("CacheKfcCoupon", t, func(convCtx convey.C) {
  10. var (
  11. c = context.Background()
  12. id = int64(3)
  13. )
  14. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  15. res, err := d.CacheKfcCoupon(c, id)
  16. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  17. convCtx.So(err, convey.ShouldBeNil)
  18. convCtx.So(res, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestKfcAddCacheKfcCoupon(t *testing.T) {
  24. convey.Convey("AddCacheKfcCoupon", t, func(convCtx convey.C) {
  25. var (
  26. c = context.Background()
  27. id = int64(3)
  28. val = &kfc.BnjKfcCoupon{ID: 3, CouponCode: "201812041201", Mid: 2089809}
  29. )
  30. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  31. err := d.AddCacheKfcCoupon(c, id, val)
  32. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  33. convCtx.So(err, convey.ShouldBeNil)
  34. })
  35. })
  36. })
  37. }
  38. func TestKfcDelCacheKfcCoupon(t *testing.T) {
  39. convey.Convey("DelCacheKfcCoupon", t, func(convCtx convey.C) {
  40. var (
  41. c = context.Background()
  42. id = int64(3)
  43. )
  44. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  45. err := d.DelCacheKfcCoupon(c, id)
  46. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  47. convCtx.So(err, convey.ShouldBeNil)
  48. })
  49. })
  50. })
  51. }
  52. func TestKfcCacheKfcCode(t *testing.T) {
  53. convey.Convey("CacheKfcCode", t, func(convCtx convey.C) {
  54. var (
  55. c = context.Background()
  56. id = "201812041201"
  57. )
  58. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  59. res, err := d.CacheKfcCode(c, id)
  60. convCtx.Convey("Then err should be nil.res should not be nil.", func(convCtx convey.C) {
  61. convCtx.So(err, convey.ShouldBeNil)
  62. convCtx.So(res, convey.ShouldNotBeNil)
  63. })
  64. })
  65. })
  66. }
  67. func TestKfcAddCacheKfcCode(t *testing.T) {
  68. convey.Convey("AddCacheKfcCode", t, func(convCtx convey.C) {
  69. var (
  70. c = context.Background()
  71. id = "201812041201"
  72. val = int64(3)
  73. )
  74. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  75. err := d.AddCacheKfcCode(c, id, val)
  76. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  77. convCtx.So(err, convey.ShouldBeNil)
  78. })
  79. })
  80. })
  81. }