redis_test.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/credit/model"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaocaseObtainMIDKey(t *testing.T) {
  9. convey.Convey("caseObtainMIDKey", t, func(convCtx convey.C) {
  10. var (
  11. mid = int64(0)
  12. )
  13. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  14. p1 := caseObtainMIDKey(mid)
  15. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  16. convCtx.So(p1, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestDaocaseVoteCIDMIDKey(t *testing.T) {
  22. convey.Convey("caseVoteCIDMIDKey", t, func(convCtx convey.C) {
  23. var (
  24. mid = int64(0)
  25. )
  26. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  27. p1 := caseVoteCIDMIDKey(mid)
  28. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  29. convCtx.So(p1, convey.ShouldNotBeNil)
  30. })
  31. })
  32. })
  33. }
  34. func TestDaoCaseObtainMID(t *testing.T) {
  35. convey.Convey("CaseObtainMID", t, func(convCtx convey.C) {
  36. var (
  37. c = context.Background()
  38. mid = int64(0)
  39. isToday bool
  40. )
  41. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  42. cases, err := d.CaseObtainMID(c, mid, isToday)
  43. convCtx.Convey("Then err should be nil.cases should not be nil.", func(convCtx convey.C) {
  44. convCtx.So(err, convey.ShouldBeNil)
  45. convCtx.So(cases, convey.ShouldNotBeNil)
  46. })
  47. })
  48. })
  49. }
  50. func TestDaoIsExpiredObtainMID(t *testing.T) {
  51. convey.Convey("IsExpiredObtainMID", t, func(convCtx convey.C) {
  52. var (
  53. c = context.Background()
  54. mid = int64(0)
  55. isToday bool
  56. )
  57. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  58. ok, err := d.IsExpiredObtainMID(c, mid, isToday)
  59. convCtx.Convey("Then err should be nil.ok should not be nil.", func(convCtx convey.C) {
  60. convCtx.So(err, convey.ShouldBeNil)
  61. convCtx.So(ok, convey.ShouldNotBeNil)
  62. })
  63. })
  64. })
  65. }
  66. func TestDaoGrantCases(t *testing.T) {
  67. convey.Convey("GrantCases", t, func(convCtx convey.C) {
  68. var (
  69. c = context.Background()
  70. )
  71. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  72. mcases, err := d.GrantCases(c)
  73. convCtx.Convey("Then err should be nil.mcases should not be nil.", func(convCtx convey.C) {
  74. convCtx.So(err, convey.ShouldBeNil)
  75. convCtx.So(mcases, convey.ShouldNotBeNil)
  76. })
  77. })
  78. })
  79. }
  80. func TestDaoLoadVoteCaseMID(t *testing.T) {
  81. convey.Convey("LoadVoteCaseMID", t, func(convCtx convey.C) {
  82. var (
  83. c = context.Background()
  84. mid = int64(0)
  85. mcases map[int64]*model.SimCase
  86. isToday bool
  87. )
  88. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  89. err := d.LoadVoteCaseMID(c, mid, mcases, isToday)
  90. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  91. convCtx.So(err, convey.ShouldBeNil)
  92. })
  93. })
  94. })
  95. }
  96. func TestDaoSetVoteCaseMID(t *testing.T) {
  97. convey.Convey("SetVoteCaseMID", t, func(convCtx convey.C) {
  98. var (
  99. c = context.Background()
  100. mid = int64(0)
  101. sc = &model.SimCase{}
  102. )
  103. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  104. err := d.SetVoteCaseMID(c, mid, sc)
  105. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  106. convCtx.So(err, convey.ShouldBeNil)
  107. })
  108. })
  109. })
  110. }