case_mc_test.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 TestDaocaseInfoKey(t *testing.T) {
  9. convey.Convey("caseInfoKey", t, func(convCtx convey.C) {
  10. var (
  11. cid = int64(0)
  12. )
  13. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  14. p1 := caseInfoKey(cid)
  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 TestDaovoteCaseInfoKey(t *testing.T) {
  22. convey.Convey("voteCaseInfoKey", t, func(convCtx convey.C) {
  23. var (
  24. mid = int64(0)
  25. cid = int64(0)
  26. )
  27. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  28. p1 := voteCaseInfoKey(mid, cid)
  29. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  30. convCtx.So(p1, convey.ShouldNotBeNil)
  31. })
  32. })
  33. })
  34. }
  35. func TestDaocaseVoteTopKey(t *testing.T) {
  36. convey.Convey("caseVoteTopKey", t, func(convCtx convey.C) {
  37. var (
  38. mid = int64(0)
  39. )
  40. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  41. p1 := caseVoteTopKey(mid)
  42. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  43. convCtx.So(p1, convey.ShouldNotBeNil)
  44. })
  45. })
  46. })
  47. }
  48. func TestDaoSetCaseInfoCache(t *testing.T) {
  49. convey.Convey("SetCaseInfoCache", t, func(convCtx convey.C) {
  50. var (
  51. c = context.Background()
  52. cid = int64(0)
  53. bc = &model.BlockedCase{}
  54. )
  55. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  56. err := d.SetCaseInfoCache(c, cid, bc)
  57. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  58. convCtx.So(err, convey.ShouldBeNil)
  59. })
  60. })
  61. })
  62. }
  63. func TestDaoCaseInfoCache(t *testing.T) {
  64. convey.Convey("CaseInfoCache", t, func(convCtx convey.C) {
  65. var (
  66. c = context.Background()
  67. cid = int64(0)
  68. )
  69. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  70. bc, err := d.CaseInfoCache(c, cid)
  71. convCtx.Convey("Then err should be nil.bc should not be nil.", func(convCtx convey.C) {
  72. convCtx.So(err, convey.ShouldBeNil)
  73. convCtx.So(bc, convey.ShouldNotBeNil)
  74. })
  75. })
  76. })
  77. }
  78. func TestDaoSetVoteInfoCache(t *testing.T) {
  79. convey.Convey("SetVoteInfoCache", t, func(convCtx convey.C) {
  80. var (
  81. c = context.Background()
  82. mid = int64(0)
  83. cid = int64(0)
  84. vi = &model.VoteInfo{}
  85. )
  86. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  87. err := d.SetVoteInfoCache(c, mid, cid, vi)
  88. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  89. convCtx.So(err, convey.ShouldBeNil)
  90. })
  91. })
  92. })
  93. }
  94. func TestDaoVoteInfoCache(t *testing.T) {
  95. convey.Convey("VoteInfoCache", t, func(convCtx convey.C) {
  96. var (
  97. c = context.Background()
  98. mid = int64(0)
  99. cid = int64(0)
  100. )
  101. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  102. vi, err := d.VoteInfoCache(c, mid, cid)
  103. convCtx.Convey("Then err should be nil.vi should not be nil.", func(convCtx convey.C) {
  104. convCtx.So(err, convey.ShouldBeNil)
  105. convCtx.So(vi, convey.ShouldNotBeNil)
  106. })
  107. })
  108. })
  109. }
  110. func TestDaoCaseVoteTopCache(t *testing.T) {
  111. convey.Convey("CaseVoteTopCache", t, func(convCtx convey.C) {
  112. var (
  113. c = context.Background()
  114. mid = int64(-1)
  115. )
  116. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  117. bs, err := d.CaseVoteTopCache(c, mid)
  118. convCtx.Convey("Then err should be nil.bs should be nil.", func(convCtx convey.C) {
  119. convCtx.So(err, convey.ShouldBeNil)
  120. convCtx.So(len(bs), convey.ShouldBeGreaterThanOrEqualTo, 0)
  121. })
  122. })
  123. })
  124. }
  125. func TestDaoSetCaseVoteTopCache(t *testing.T) {
  126. convey.Convey("SetCaseVoteTopCache", t, func(convCtx convey.C) {
  127. var (
  128. c = context.Background()
  129. mid = int64(0)
  130. bs = []*model.BlockedCase{}
  131. )
  132. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  133. err := d.SetCaseVoteTopCache(c, mid, bs)
  134. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  135. convCtx.So(err, convey.ShouldBeNil)
  136. })
  137. })
  138. })
  139. }