exchange_test.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/model"
  5. "testing"
  6. "time"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestDaoGetGoodsByProductID(t *testing.T) {
  10. convey.Convey("GetGoodsByProductID", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. productID = "aaaaa"
  14. goodsType = int(1)
  15. )
  16. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  17. Exec(c, "INSERT INTO creative_goods(ex_resource_id,discount,goods_type,is_display) values('aaaaa', 100, 1, 2)")
  18. goods, err := d.GetGoodsByProductID(c, productID, goodsType)
  19. ctx.Convey("Then err should be nil.goods should not be nil.", func(ctx convey.C) {
  20. ctx.So(err, convey.ShouldBeNil)
  21. ctx.So(goods, convey.ShouldNotBeNil)
  22. })
  23. })
  24. })
  25. }
  26. func TestDaoGetDisplayGoods(t *testing.T) {
  27. convey.Convey("GetDisplayGoods", t, func(ctx convey.C) {
  28. var (
  29. c = context.Background()
  30. isDisplay = int(1)
  31. )
  32. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  33. Exec(c, "INSERT INTO creative_goods(ex_resource_id,discount,goods_type,is_display) values('aaaaa', 100, 1, 2)")
  34. goods, err := d.GetDisplayGoods(c, isDisplay)
  35. ctx.Convey("Then err should be nil.goods should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. ctx.So(goods, convey.ShouldNotBeNil)
  38. })
  39. })
  40. })
  41. }
  42. func TestDaoTxInsertGoodsOrder(t *testing.T) {
  43. convey.Convey("TxInsertGoodsOrder", t, func(ctx convey.C) {
  44. var (
  45. c = context.Background()
  46. tx, _ = d.BeginTran(c)
  47. o = &model.GoodsOrder{
  48. MID: 253550886,
  49. OrderNo: "DHY-20181122172812-1617825777068670976-253550886",
  50. GoodsType: 1,
  51. GoodsID: "incentive-1mon",
  52. GoodsName: "月度大会员",
  53. GoodsPrice: 100,
  54. GoodsCost: 100,
  55. }
  56. )
  57. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  58. defer tx.Commit()
  59. Exec(c, "DELETE FROM creative_order WHERE order_no = 'DHY-20181122172812-1617825777068670976-253550886'")
  60. rows, err := d.TxInsertGoodsOrder(tx, o)
  61. ctx.Convey("Then err should be nil.rows should not be nil.", func(ctx convey.C) {
  62. ctx.So(err, convey.ShouldBeNil)
  63. ctx.So(rows, convey.ShouldNotBeNil)
  64. })
  65. })
  66. ctx.Reset(func() {
  67. tx.Commit()
  68. })
  69. })
  70. }
  71. func TestDaoListVipProducts(t *testing.T) {
  72. convey.Convey("ListVipProducts", t, func(ctx convey.C) {
  73. var (
  74. c = context.Background()
  75. mid = int64(212312)
  76. )
  77. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  78. r, err := d.ListVipProducts(c, mid)
  79. ctx.Convey("Then err should be nil.r should not be nil.", func(ctx convey.C) {
  80. ctx.So(err, convey.ShouldBeNil)
  81. ctx.So(r, convey.ShouldNotBeNil)
  82. })
  83. })
  84. })
  85. }
  86. func TestDaoExchangeBigVIP(t *testing.T) {
  87. convey.Convey("ExchangeBigVIP", t, func(ctx convey.C) {
  88. var (
  89. c = context.Background()
  90. mid = int64(253550886)
  91. resourceID = int64(16)
  92. orderNo = time.Now().UnixNano()
  93. remark = "creative"
  94. )
  95. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  96. err := d.ExchangeBigVIP(c, mid, resourceID, orderNo, remark)
  97. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  98. ctx.So(err, convey.ShouldBeNil)
  99. })
  100. })
  101. })
  102. }