grpc_test.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoTradeCreate(t *testing.T) {
  8. convey.Convey("TradeCreate", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. platform = "ios"
  12. mid = int64(46333)
  13. oid = int64(10110745)
  14. otype = "archive"
  15. currency = "bp"
  16. )
  17. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  18. orderID, payData, err := d.TradeCreate(c, platform, mid, oid, otype, currency)
  19. ctx.Convey("Then err should be nil.orderID,payData should not be nil.", func(ctx convey.C) {
  20. ctx.So(err, convey.ShouldBeNil)
  21. ctx.So(payData, convey.ShouldNotBeNil)
  22. ctx.So(orderID, convey.ShouldNotBeNil)
  23. })
  24. })
  25. })
  26. }
  27. func TestDaoTradeQuery(t *testing.T) {
  28. convey.Convey("TradeQuery", t, func(ctx convey.C) {
  29. var (
  30. c = context.Background()
  31. orderID = "32172647181109193324"
  32. )
  33. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  34. order, err := d.TradeQuery(c, orderID)
  35. ctx.Convey("Then err should be nil.order should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. ctx.So(order, convey.ShouldNotBeNil)
  38. })
  39. })
  40. })
  41. }
  42. func TestDaoTradeConfirm(t *testing.T) {
  43. convey.Convey("TradeConfirm", t, func(ctx convey.C) {
  44. var (
  45. c = context.Background()
  46. orderID = "32172647181109193324"
  47. )
  48. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  49. order, err := d.TradeConfirm(c, orderID)
  50. ctx.Convey("Then err should be nil.order should not be nil.", func(ctx convey.C) {
  51. ctx.So(err, convey.ShouldBeNil)
  52. ctx.So(order, convey.ShouldNotBeNil)
  53. })
  54. })
  55. })
  56. }
  57. func TestDaoTradeCancel(t *testing.T) {
  58. convey.Convey("TradeCancel", t, func(ctx convey.C) {
  59. var (
  60. c = context.Background()
  61. orderID = "32172647181109193324"
  62. )
  63. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  64. err := d.TradeCancel(c, orderID)
  65. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  66. ctx.So(err, convey.ShouldBeNil)
  67. })
  68. })
  69. })
  70. }
  71. func TestDaoIncomeAssetOverview(t *testing.T) {
  72. convey.Convey("IncomeAssetOverview", t, func(ctx convey.C) {
  73. var (
  74. c = context.Background()
  75. mid = int64(46333)
  76. )
  77. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  78. inc, err := d.IncomeAssetOverview(c, mid)
  79. ctx.Convey("Then err should be nil.inc should not be nil.", func(ctx convey.C) {
  80. ctx.So(err, convey.ShouldBeNil)
  81. ctx.So(inc, convey.ShouldNotBeNil)
  82. })
  83. })
  84. })
  85. }
  86. func TestDaoIncomeUserAssetList(t *testing.T) {
  87. convey.Convey("IncomeUserAssetList", t, func(ctx convey.C) {
  88. var (
  89. c = context.Background()
  90. mid = int64(46333)
  91. ver = int64(201811)
  92. ps = int64(10)
  93. pn = int64(1)
  94. )
  95. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  96. inc, err := d.IncomeUserAssetList(c, mid, ver, ps, pn)
  97. ctx.Convey("Then err should be nil.inc should not be nil.", func(ctx convey.C) {
  98. ctx.So(err, convey.ShouldBeNil)
  99. ctx.So(inc, convey.ShouldNotBeNil)
  100. })
  101. })
  102. })
  103. }
  104. func TestDaoArchiveTitles(t *testing.T) {
  105. convey.Convey("ArchiveTitles", t, func(ctx convey.C) {
  106. var (
  107. c = context.Background()
  108. aids = []int64{10110745}
  109. )
  110. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  111. arcTitles, err := d.ArchiveTitles(c, aids)
  112. ctx.Convey("Then err should be nil.arcTitles should not be nil.", func(ctx convey.C) {
  113. ctx.So(err, convey.ShouldBeNil)
  114. ctx.So(arcTitles, convey.ShouldNotBeNil)
  115. })
  116. })
  117. })
  118. }