withdraw_test.go 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/model"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestDaoGetUpAccountCount(t *testing.T) {
  9. convey.Convey("GetUpAccountCount", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. dateVersion = "2017-01-01"
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. Exec(c, "INSERT INTO up_account(mid, has_sign_contract, total_unwithdraw_income, withdraw_date_version, is_deleted) VALUES(1001, 1, 100, '2018-10', 0) ON DUPLICATE KEY UPDATE has_sign_contract = 1, is_deleted = 0")
  16. count, err := d.GetUpAccountCount(c, dateVersion)
  17. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  18. ctx.So(err, convey.ShouldBeNil)
  19. ctx.So(count, convey.ShouldNotBeNil)
  20. })
  21. })
  22. })
  23. }
  24. func TestDaoQueryUpAccountByDate(t *testing.T) {
  25. convey.Convey("QueryUpAccountByDate", t, func(ctx convey.C) {
  26. var (
  27. c = context.Background()
  28. dateVersion = "2017-01-01"
  29. from = int(0)
  30. limit = int(10)
  31. )
  32. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  33. Exec(c, "INSERT INTO up_account(mid, has_sign_contract, total_unwithdraw_income, withdraw_date_version, is_deleted) VALUES(1001, 1, 100, '2018-10', 0) ON DUPLICATE KEY UPDATE has_sign_contract = 1, is_deleted = 0")
  34. upAccounts, err := d.QueryUpAccountByDate(c, dateVersion, from, limit)
  35. ctx.Convey("Then err should be nil.upAccounts should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. ctx.So(upAccounts, convey.ShouldNotBeNil)
  38. })
  39. })
  40. })
  41. }
  42. func TestDaoQueryUpWithdrawByMID(t *testing.T) {
  43. convey.Convey("QueryUpWithdrawByMID", t, func(ctx convey.C) {
  44. var (
  45. c = context.Background()
  46. mid = int64(1001)
  47. )
  48. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  49. Exec(c, "INSERT INTO up_income_withdraw(mid, date_version) VALUES(1001, '2018-08')")
  50. upWithdraws, err := d.QueryUpWithdrawByMID(c, mid)
  51. ctx.Convey("Then err should be nil.upWithdraws should not be nil.", func(ctx convey.C) {
  52. ctx.So(err, convey.ShouldBeNil)
  53. ctx.So(upWithdraws, convey.ShouldNotBeNil)
  54. })
  55. })
  56. })
  57. }
  58. func TestDaoQueryUpWithdrawByMids(t *testing.T) {
  59. convey.Convey("QueryUpWithdrawByMids", t, func(ctx convey.C) {
  60. var (
  61. c = context.Background()
  62. mids = []int64{1001}
  63. dateVersion = "2018-08"
  64. )
  65. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  66. Exec(c, "INSERT INTO up_income_withdraw(mid, date_version, is_deleted) VALUES(1001, '2018-08', 0) ON DUPLICATE KEY UPDATE is_deleted = 0")
  67. upWithdraws, err := d.QueryUpWithdrawByMids(c, mids, dateVersion)
  68. ctx.Convey("Then err should be nil.upWithdraws should not be nil.", func(ctx convey.C) {
  69. ctx.So(err, convey.ShouldBeNil)
  70. ctx.So(upWithdraws, convey.ShouldNotBeNil)
  71. })
  72. })
  73. })
  74. }
  75. func TestDaoInsertUpWithdrawRecord(t *testing.T) {
  76. convey.Convey("InsertUpWithdrawRecord", t, func(ctx convey.C) {
  77. var (
  78. c = context.Background()
  79. upWithdraw = &model.UpIncomeWithdraw{
  80. MID: 1002,
  81. DateVersion: "2018-09",
  82. State: 1,
  83. }
  84. )
  85. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  86. Exec(c, "DELETE FROM up_income_withdraw WHERE mid = 1002")
  87. result, err := d.InsertUpWithdrawRecord(c, upWithdraw)
  88. ctx.Convey("Then err should be nil.result should not be nil.", func(ctx convey.C) {
  89. ctx.So(err, convey.ShouldBeNil)
  90. ctx.So(result, convey.ShouldNotBeNil)
  91. })
  92. })
  93. })
  94. }
  95. func TestDaoQueryUpWithdrawByID(t *testing.T) {
  96. convey.Convey("QueryUpWithdrawByID", t, func(ctx convey.C) {
  97. var (
  98. c = context.Background()
  99. id = int64(100001)
  100. )
  101. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  102. Exec(c, "INSERT INTO up_income_withdraw(id, mid, date_version, is_deleted) VALUES(100001, 1006, '2018-08', 0) ON DUPLICATE KEY UPDATE is_deleted = 0")
  103. upWithdraw, err := d.QueryUpWithdrawByID(c, id)
  104. ctx.Convey("Then err should be nil.upWithdraw should not be nil.", func(ctx convey.C) {
  105. ctx.So(err, convey.ShouldBeNil)
  106. ctx.So(upWithdraw, convey.ShouldNotBeNil)
  107. })
  108. })
  109. })
  110. }
  111. func TestDaoTxUpdateUpWithdrawState(t *testing.T) {
  112. convey.Convey("TxUpdateUpWithdrawState", t, func(ctx convey.C) {
  113. var (
  114. c = context.Background()
  115. tx, _ = d.BeginTran(c)
  116. id = int64(100001)
  117. state = int(2)
  118. )
  119. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  120. Exec(c, "INSERT INTO up_income_withdraw(id, mid, date_version, is_deleted, state) VALUES(100001, 1001, '2018-08', 0, 1) ON DUPLICATE KEY UPDATE is_deleted = 0, state = 1")
  121. result, err := d.TxUpdateUpWithdrawState(tx, id, state)
  122. ctx.Convey("Then err should be nil.result should not be nil.", func(ctx convey.C) {
  123. ctx.So(err, convey.ShouldBeNil)
  124. ctx.So(result, convey.ShouldNotBeNil)
  125. })
  126. })
  127. ctx.Reset(func() {
  128. tx.Commit()
  129. })
  130. })
  131. }
  132. func TestDaoTxUpdateUpAccountWithdraw(t *testing.T) {
  133. convey.Convey("TxUpdateUpAccountWithdraw", t, func(ctx convey.C) {
  134. var (
  135. c = context.Background()
  136. tx, _ = d.BeginTran(c)
  137. mid = int64(1001)
  138. thirdCoin = int64(10)
  139. )
  140. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  141. Exec(c, "INSERT INTO up_account(mid, has_sign_contract, total_unwithdraw_income, withdraw_date_version, is_deleted) VALUES(1001, 1, 100, '2018-10', 0) ON DUPLICATE KEY UPDATE has_sign_contract = 1, is_deleted = 0")
  142. result, err := d.TxUpdateUpAccountWithdraw(tx, mid, thirdCoin)
  143. ctx.Convey("Then err should be nil.result should not be nil.", func(ctx convey.C) {
  144. ctx.So(err, convey.ShouldBeNil)
  145. ctx.So(result, convey.ShouldNotBeNil)
  146. })
  147. })
  148. ctx.Reset(func() {
  149. tx.Commit()
  150. })
  151. })
  152. }
  153. func TestDaoTxQueryMaxUpWithdrawDateVersion(t *testing.T) {
  154. convey.Convey("TxQueryMaxUpWithdrawDateVersion", t, func(ctx convey.C) {
  155. var (
  156. c = context.Background()
  157. tx, _ = d.BeginTran(c)
  158. mid = int64(1001)
  159. )
  160. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  161. Exec(c, "INSERT INTO up_income_withdraw(id, mid, date_version, is_deleted, state) VALUES(10001, 1001, '2018-08', 0, 1) ON DUPLICATE KEY UPDATE is_deleted = 0, state = 1")
  162. dateVersion, err := d.TxQueryMaxUpWithdrawDateVersion(tx, mid)
  163. ctx.Convey("Then err should be nil.dateVersion should not be nil.", func(ctx convey.C) {
  164. ctx.So(err, convey.ShouldBeNil)
  165. ctx.So(dateVersion, convey.ShouldNotBeNil)
  166. })
  167. })
  168. ctx.Reset(func() {
  169. tx.Commit()
  170. })
  171. })
  172. }
  173. func TestDaoTxQueryUpAccountVersion(t *testing.T) {
  174. convey.Convey("TxQueryUpAccountVersion", t, func(ctx convey.C) {
  175. var (
  176. c = context.Background()
  177. tx, _ = d.BeginTran(c)
  178. mid = int64(1001)
  179. )
  180. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  181. Exec(c, "INSERT INTO up_account(mid, has_sign_contract, total_unwithdraw_income, withdraw_date_version, is_deleted) VALUES(1001, 1, 100, '2018-10', 0) ON DUPLICATE KEY UPDATE has_sign_contract = 1, is_deleted = 0")
  182. version, err := d.TxQueryUpAccountVersion(tx, mid)
  183. ctx.Convey("Then err should be nil.version should not be nil.", func(ctx convey.C) {
  184. ctx.So(err, convey.ShouldBeNil)
  185. ctx.So(version, convey.ShouldNotBeNil)
  186. })
  187. })
  188. ctx.Reset(func() {
  189. tx.Commit()
  190. })
  191. })
  192. }
  193. func TestDaoTxUpdateUpAccountUnwithdrawIncome(t *testing.T) {
  194. convey.Convey("TxUpdateUpAccountUnwithdrawIncome", t, func(ctx convey.C) {
  195. var (
  196. c = context.Background()
  197. tx, _ = d.BeginTran(c)
  198. mid = int64(1005)
  199. dateVersion = "2018-10"
  200. version = int64(1)
  201. )
  202. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  203. Exec(c, "INSERT INTO up_account(mid, version, is_deleted) VALUES(1001, 1, 0) ON DUPLICATE KEY UPDATE version = 1, is_deleted = 0")
  204. result, err := d.TxUpdateUpAccountUnwithdrawIncome(tx, mid, dateVersion, version)
  205. ctx.Convey("Then err should be nil.result should not be nil.", func(ctx convey.C) {
  206. ctx.So(err, convey.ShouldBeNil)
  207. ctx.So(result, convey.ShouldNotBeNil)
  208. })
  209. })
  210. ctx.Reset(func() {
  211. tx.Commit()
  212. })
  213. })
  214. }