case_test.go 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/credit/model"
  5. "math/rand"
  6. "testing"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestDaoAddBlockedCases(t *testing.T) {
  10. convey.Convey("AddBlockedCases", t, func(convCtx convey.C) {
  11. var (
  12. c = context.Background()
  13. bc = []*model.ArgJudgeCase{}
  14. b = &model.ArgJudgeCase{MID: 1}
  15. )
  16. bc = append(bc, b)
  17. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  18. err := d.AddBlockedCases(c, bc)
  19. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  20. convCtx.So(err, convey.ShouldBeNil)
  21. })
  22. })
  23. })
  24. }
  25. func TestDaoInsVote(t *testing.T) {
  26. convey.Convey("InsVote", t, func(convCtx convey.C) {
  27. var (
  28. c = context.Background()
  29. mid = rand.Int63n(99999999)
  30. cid = rand.Int63n(99999999)
  31. no = int64(0)
  32. )
  33. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  34. err := d.InsVote(c, mid, cid, no)
  35. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  36. convCtx.So(err, convey.ShouldBeNil)
  37. })
  38. })
  39. })
  40. }
  41. func TestDaoSetvote(t *testing.T) {
  42. convey.Convey("Setvote", t, func(convCtx convey.C) {
  43. var (
  44. c = context.Background()
  45. mid = int64(0)
  46. cid = int64(0)
  47. vote = int64(0)
  48. )
  49. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  50. err := d.Setvote(c, mid, cid, vote)
  51. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  52. convCtx.So(err, convey.ShouldBeNil)
  53. })
  54. })
  55. })
  56. }
  57. func TestDaoSetVoteTx(t *testing.T) {
  58. convey.Convey("SetVoteTx", t, func(convCtx convey.C) {
  59. var (
  60. tx, _ = d.BeginTran(context.Background())
  61. mid = rand.Int63n(99999999)
  62. cid = rand.Int63n(99999999)
  63. vote = int8(0)
  64. )
  65. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  66. affect, err := d.SetVoteTx(tx, mid, cid, vote)
  67. if err == nil {
  68. if err = tx.Commit(); err != nil {
  69. tx.Rollback()
  70. }
  71. } else {
  72. tx.Rollback()
  73. }
  74. convCtx.Convey("Then err should be nil.affect should not be nil.", func(convCtx convey.C) {
  75. convCtx.So(err, convey.ShouldBeNil)
  76. convCtx.So(affect, convey.ShouldBeGreaterThanOrEqualTo, 0)
  77. })
  78. })
  79. })
  80. }
  81. func TestDaoAddCaseReasonApply(t *testing.T) {
  82. convey.Convey("AddCaseReasonApply", t, func(convCtx convey.C) {
  83. var (
  84. c = context.Background()
  85. mid = int64(0)
  86. cid = int64(0)
  87. applyType = int8(0)
  88. originReason = int8(0)
  89. applyReason = int8(0)
  90. )
  91. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  92. err := d.AddCaseReasonApply(c, mid, cid, applyType, originReason, applyReason)
  93. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  94. convCtx.So(err, convey.ShouldBeNil)
  95. })
  96. })
  97. })
  98. }
  99. func TestDaoAddCaseVoteTotal(t *testing.T) {
  100. convey.Convey("AddCaseVoteTotal", t, func(convCtx convey.C) {
  101. var (
  102. c = context.Background()
  103. field = "vote_rule"
  104. cid = int64(3)
  105. voteNum = int8(0)
  106. )
  107. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  108. err := d.AddCaseVoteTotal(c, field, cid, voteNum)
  109. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  110. convCtx.So(err, convey.ShouldBeNil)
  111. })
  112. })
  113. })
  114. }
  115. func TestDaoCaseInfo(t *testing.T) {
  116. convey.Convey("CaseInfo", t, func(convCtx convey.C) {
  117. var (
  118. c = context.Background()
  119. cid = int64(3)
  120. cid1 = int64(0)
  121. )
  122. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  123. r, err := d.CaseInfo(c, cid)
  124. convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
  125. convCtx.So(err, convey.ShouldBeNil)
  126. convCtx.So(r, convey.ShouldNotBeNil)
  127. })
  128. r1, err := d.CaseInfo(c, cid1)
  129. convCtx.Convey("Then err should be nil.r should be nil.", func(convCtx convey.C) {
  130. convCtx.So(err, convey.ShouldBeNil)
  131. convCtx.So(r1, convey.ShouldBeNil)
  132. })
  133. })
  134. })
  135. }
  136. func TestDaoCountCaseVote(t *testing.T) {
  137. convey.Convey("CountCaseVote", t, func(convCtx convey.C) {
  138. var (
  139. c = context.Background()
  140. mid = int64(0)
  141. )
  142. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  143. r, err := d.CountCaseVote(c, mid)
  144. convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
  145. convCtx.So(err, convey.ShouldBeNil)
  146. convCtx.So(r, convey.ShouldNotBeNil)
  147. })
  148. })
  149. })
  150. }
  151. func TestDaoIsVote(t *testing.T) {
  152. convey.Convey("IsVote", t, func(convCtx convey.C) {
  153. var (
  154. c = context.Background()
  155. mid = int64(0)
  156. cid = int64(0)
  157. )
  158. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  159. r, err := d.IsVote(c, mid, cid)
  160. convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
  161. convCtx.So(err, convey.ShouldBeNil)
  162. convCtx.So(r, convey.ShouldNotBeNil)
  163. })
  164. })
  165. })
  166. }
  167. func TestDaoVoteInfo(t *testing.T) {
  168. convey.Convey("VoteInfo", t, func(convCtx convey.C) {
  169. var (
  170. c = context.Background()
  171. mid = int64(0)
  172. cid = int64(0)
  173. )
  174. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  175. r, err := d.VoteInfo(c, mid, cid)
  176. convCtx.Convey("Then err should be nil.r should not be nil.", func(convCtx convey.C) {
  177. convCtx.So(err, convey.ShouldBeNil)
  178. convCtx.So(r, convey.ShouldNotBeNil)
  179. })
  180. })
  181. })
  182. }
  183. func TestDaoLoadVoteIDsMid(t *testing.T) {
  184. convey.Convey("LoadVoteIDsMid", t, func(convCtx convey.C) {
  185. var (
  186. c = context.Background()
  187. mid = int64(0)
  188. day = int(0)
  189. )
  190. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  191. cases, err := d.LoadVoteIDsMid(c, mid, day)
  192. convCtx.Convey("Then err should be nil.cases should not be nil.", func(convCtx convey.C) {
  193. convCtx.So(err, convey.ShouldBeNil)
  194. convCtx.So(cases, convey.ShouldNotBeNil)
  195. })
  196. })
  197. })
  198. }
  199. func TestDaoCaseVoteIDs(t *testing.T) {
  200. convey.Convey("CaseVoteIDs", t, func(convCtx convey.C) {
  201. var (
  202. c = context.Background()
  203. ids = []int64{3, 6}
  204. )
  205. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  206. mbc, err := d.CaseVoteIDs(c, ids)
  207. convCtx.Convey("Then err should be nil.mbc should not be nil.", func(convCtx convey.C) {
  208. convCtx.So(err, convey.ShouldBeNil)
  209. convCtx.So(mbc, convey.ShouldNotBeNil)
  210. })
  211. })
  212. })
  213. }
  214. func TestDaoCaseRelationIDCount(t *testing.T) {
  215. convey.Convey("CaseRelationIDCount", t, func(convCtx convey.C) {
  216. var (
  217. c = context.Background()
  218. tp = int8(0)
  219. relationID = ""
  220. )
  221. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  222. count, err := d.CaseRelationIDCount(c, tp, relationID)
  223. convCtx.Convey("Then err should be nil.count should not be nil.", func(convCtx convey.C) {
  224. convCtx.So(err, convey.ShouldBeNil)
  225. convCtx.So(count, convey.ShouldNotBeNil)
  226. })
  227. })
  228. })
  229. }
  230. func TestDaoCaseInfoIDs(t *testing.T) {
  231. convey.Convey("CaseInfoIDs", t, func(convCtx convey.C) {
  232. var (
  233. c = context.Background()
  234. ids = []int64{3}
  235. )
  236. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  237. cases, err := d.CaseInfoIDs(c, ids)
  238. convCtx.Convey("Then err should be nil.cases should not be nil.", func(convCtx convey.C) {
  239. convCtx.So(err, convey.ShouldBeNil)
  240. convCtx.So(cases, convey.ShouldNotBeNil)
  241. })
  242. })
  243. })
  244. }
  245. func TestDaoCaseVotesMID(t *testing.T) {
  246. convey.Convey("CaseVotesMID", t, func(convCtx convey.C) {
  247. var (
  248. c = context.Background()
  249. ids = []int64{1, 44}
  250. )
  251. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  252. mvo, err := d.CaseVotesMID(c, ids)
  253. convCtx.Convey("Then err should be nil.mvo should not be nil.", func(convCtx convey.C) {
  254. convCtx.So(err, convey.ShouldBeNil)
  255. convCtx.So(mvo, convey.ShouldNotBeNil)
  256. })
  257. })
  258. })
  259. }
  260. func TestDaoCaseVoteIDMID(t *testing.T) {
  261. convey.Convey("CaseVoteIDMID", t, func(convCtx convey.C) {
  262. var (
  263. c = context.Background()
  264. mid = int64(111001692)
  265. pn = int64(1)
  266. ps = int64(1)
  267. )
  268. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  269. vids, cids, err := d.CaseVoteIDMID(c, mid, pn, ps)
  270. convCtx.Convey("Then err should be nil.vids,cids should not be nil.", func(convCtx convey.C) {
  271. convCtx.So(err, convey.ShouldBeNil)
  272. convCtx.So(cids, convey.ShouldNotBeNil)
  273. convCtx.So(vids, convey.ShouldNotBeNil)
  274. })
  275. })
  276. })
  277. }
  278. func TestDaoCaseVoteIDTop(t *testing.T) {
  279. convey.Convey("CaseVoteIDTop", t, func(convCtx convey.C) {
  280. var (
  281. c = context.Background()
  282. mid = int64(0)
  283. )
  284. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  285. vids, cids, err := d.CaseVoteIDTop(c, mid)
  286. convCtx.Convey("Then err should be nil.vids,cids should not be nil.", func(convCtx convey.C) {
  287. convCtx.So(err, convey.ShouldBeNil)
  288. convCtx.So(cids, convey.ShouldNotBeNil)
  289. convCtx.So(vids, convey.ShouldNotBeNil)
  290. })
  291. })
  292. })
  293. }