mysql_test.go 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. package dao
  2. import (
  3. "context"
  4. "math/rand"
  5. "testing"
  6. "time"
  7. model "go-common/app/interface/main/credit/model"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. // TestDao_LoadConf .
  11. func TestDao_LoadConf(t *testing.T) {
  12. var c = context.Background()
  13. convey.Convey("return someting", t, func(convCtx convey.C) {
  14. v, err := d.LoadConf(c)
  15. convCtx.So(err, convey.ShouldBeNil)
  16. convCtx.So(v, convey.ShouldNotBeNil)
  17. })
  18. }
  19. // TestJuryOpinion .
  20. func TestJuryOpinion(t *testing.T) {
  21. var (
  22. c = context.Background()
  23. )
  24. convey.Convey("return someting", t, func(convCtx convey.C) {
  25. tx, err := d.BeginTran(c)
  26. convCtx.So(err, convey.ShouldBeNil)
  27. convCtx.So(tx, convey.ShouldNotBeNil)
  28. d.SetVoteTx(tx, 21432418, 383, 1)
  29. d.AddOpinionTx(tx, 383, 632, 11, "aaa", 1, 1, 1)
  30. tx.Commit()
  31. _, err = d.AddHates(c, []int64{632})
  32. convCtx.So(err, convey.ShouldBeNil)
  33. _, err = d.AddLikes(c, []int64{632})
  34. convCtx.So(err, convey.ShouldBeNil)
  35. ops, err := d.Opinions(c, []int64{632})
  36. convCtx.So(err, convey.ShouldBeNil)
  37. convCtx.So(ops, convey.ShouldBeNil)
  38. })
  39. }
  40. // TestDao_IsVote .
  41. func TestDao_IsVote(t *testing.T) {
  42. var (
  43. err error
  44. c = context.Background()
  45. res int64
  46. )
  47. convey.Convey("return someting", t, func(convCtx convey.C) {
  48. res, err = d.IsVote(c, 2528, 631)
  49. convCtx.So(err, convey.ShouldBeNil)
  50. convCtx.So(res, convey.ShouldNotBeNil)
  51. })
  52. }
  53. // TestDao_CaseInfo .
  54. func TestDao_CaseInfo(t *testing.T) {
  55. var (
  56. err error
  57. c = context.Background()
  58. res = &model.BlockedCase{}
  59. )
  60. convey.Convey("return someting", t, func(convCtx convey.C) {
  61. res, err = d.CaseInfo(c, -1)
  62. convCtx.So(err, convey.ShouldBeNil)
  63. convCtx.So(res, convey.ShouldBeNil)
  64. })
  65. }
  66. // TestDao_VoteInfo .
  67. func TestDao_VoteInfo(t *testing.T) {
  68. var (
  69. err error
  70. c = context.Background()
  71. res = &model.VoteInfo{}
  72. )
  73. convey.Convey("return someting", t, func(convCtx convey.C) {
  74. res, err = d.VoteInfo(c, 2528, 631)
  75. convCtx.So(err, convey.ShouldBeNil)
  76. convCtx.So(res, convey.ShouldNotBeNil)
  77. })
  78. }
  79. // TestDao_ApplyJuryInfo .
  80. func TestDao_ApplyJuryInfo(t *testing.T) {
  81. var (
  82. err error
  83. c = context.Background()
  84. res = &model.BlockedJury{}
  85. )
  86. convey.Convey("return someting", t, func(convCtx convey.C) {
  87. res, err = d.JuryInfo(c, 2528)
  88. convCtx.So(err, convey.ShouldBeNil)
  89. convCtx.So(res, convey.ShouldNotBeNil)
  90. })
  91. }
  92. // TestDao_JuryInfo .
  93. func TestDao_JuryInfo(t *testing.T) {
  94. var (
  95. err error
  96. c = context.Background()
  97. res = &model.BlockedJury{}
  98. )
  99. convey.Convey("return someting", t, func(convCtx convey.C) {
  100. res, err = d.JuryInfo(c, 0)
  101. convCtx.So(err, convey.ShouldBeNil)
  102. convCtx.So(res, convey.ShouldNotBeNil)
  103. })
  104. }
  105. // TestDao_Setvote .
  106. func TestDao_Setvote(t *testing.T) {
  107. var (
  108. err error
  109. c = context.Background()
  110. )
  111. convey.Convey("return someting", t, func(convCtx convey.C) {
  112. err = d.Setvote(c, 2528, 631, 1)
  113. convCtx.So(err, convey.ShouldBeNil)
  114. })
  115. }
  116. // TestDao_InsVote .
  117. func TestDao_InsVote(t *testing.T) {
  118. var (
  119. err error
  120. c = context.Background()
  121. )
  122. convey.Convey("return someting", t, func(convCtx convey.C) {
  123. err = d.InsVote(c, rand.Int63n(9999999), rand.Int63n(9999999), 1)
  124. convCtx.So(err, convey.ShouldBeNil)
  125. })
  126. }
  127. func TestDao_AddUserVoteTotal(t *testing.T) {
  128. var (
  129. err error
  130. c = context.Background()
  131. )
  132. convey.Convey("return someting", t, func(convCtx convey.C) {
  133. err = d.AddUserVoteTotal(c, 2528)
  134. convCtx.So(err, convey.ShouldBeNil)
  135. })
  136. }
  137. func TestDao_AddCaseVoteTotal(t *testing.T) {
  138. var (
  139. err error
  140. c = context.Background()
  141. )
  142. convey.Convey("return someting", t, func(convCtx convey.C) {
  143. err = d.AddCaseVoteTotal(c, "put_total", 631, 1)
  144. convCtx.So(err, convey.ShouldBeNil)
  145. })
  146. }
  147. func TestDao_JuryApply(t *testing.T) {
  148. var (
  149. err error
  150. c = context.Background()
  151. )
  152. convey.Convey("return someting", t, func(convCtx convey.C) {
  153. err = d.JuryApply(c, 2528, time.Now().AddDate(0, 0, 30))
  154. convCtx.So(err, convey.ShouldBeNil)
  155. })
  156. }
  157. func TestOpinionIdx(t *testing.T) {
  158. convey.Convey("return someting", t, func(convCtx convey.C) {
  159. res, err := d.OpinionIdx(context.Background(), -1)
  160. convCtx.So(err, convey.ShouldBeNil)
  161. convCtx.So(res, convey.ShouldBeNil)
  162. })
  163. }
  164. func TestDao_addQs(t *testing.T) {
  165. var qs = &model.LabourQs{}
  166. qs.Question = "test"
  167. qs.Ans = 1
  168. qs.AvID = 123
  169. qs.Status = 1
  170. convey.Convey("return someting", t, func(convCtx convey.C) {
  171. err := d.AddQs(context.Background(), qs)
  172. convCtx.So(err, convey.ShouldBeNil)
  173. })
  174. }
  175. func TestDao_setQs(t *testing.T) {
  176. convey.Convey("return someting", t, func(convCtx convey.C) {
  177. err := d.SetQs(context.Background(), 1, 2, 2)
  178. convCtx.So(err, convey.ShouldBeNil)
  179. })
  180. }
  181. func TestDao_delQs(t *testing.T) {
  182. convey.Convey("return someting", t, func(convCtx convey.C) {
  183. err := d.DelQs(context.Background(), 1, 1)
  184. convCtx.So(err, convey.ShouldBeNil)
  185. })
  186. }
  187. func TestDao_AddBlockedCases(t *testing.T) {
  188. var (
  189. err error
  190. c = context.Background()
  191. bc []*model.ArgJudgeCase
  192. b = &model.ArgJudgeCase{}
  193. )
  194. b.MID = 1
  195. b.Operator = "a"
  196. b.OContent = "oc"
  197. b.PunishResult = 1
  198. b.OTitle = "ot"
  199. b.OType = 1
  200. b.OURL = "ou"
  201. b.BlockedDays = 1
  202. b.ReasonType = 1
  203. b.RelationID = "1-1"
  204. bc = append(bc, b)
  205. b = &model.ArgJudgeCase{}
  206. b.MID = 1
  207. b.Operator = "a"
  208. b.OContent = "oc"
  209. b.PunishResult = 1
  210. b.OTitle = "ot"
  211. b.OType = 1
  212. b.OURL = "ou"
  213. b.BlockedDays = 1
  214. b.ReasonType = 1
  215. b.RelationID = "1-1"
  216. bc = append(bc, b)
  217. convey.Convey("return someting", t, func(convCtx convey.C) {
  218. err = d.AddBlockedCases(c, bc)
  219. convCtx.So(err, convey.ShouldBeNil)
  220. })
  221. }
  222. func TestDao_NewKPI(t *testing.T) {
  223. convey.Convey("should return err be nil & map be nil", t, func(convCtx convey.C) {
  224. rate, err := d.NewKPI(context.Background(), 4)
  225. convCtx.So(err, convey.ShouldBeNil)
  226. convCtx.So(rate, convey.ShouldBeGreaterThanOrEqualTo, 0)
  227. t.Logf("rate:%d", rate)
  228. })
  229. }