api_test.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package newcomer
  2. import (
  3. "context"
  4. "go-common/library/ecode"
  5. "testing"
  6. "strings"
  7. "github.com/smartystreets/goconvey/convey"
  8. "gopkg.in/h2non/gock.v1"
  9. )
  10. func TestNewcomerMall(t *testing.T) {
  11. var (
  12. c = context.Background()
  13. mid = int64(27515308)
  14. couponID = "ef89b24b3951429b"
  15. uname = "test"
  16. )
  17. convey.Convey("Mall", t, func(ctx convey.C) {
  18. defer gock.OffAll()
  19. httpMock("POST", d.mallURI).Reply(200).JSON(`{"code":20062}`)
  20. err := d.Mall(c, mid, couponID, uname)
  21. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  22. ctx.So(err, convey.ShouldNotBeNil)
  23. })
  24. })
  25. }
  26. func TestNewcomerBCoin(t *testing.T) {
  27. var (
  28. c = context.Background()
  29. mid = int64(27515406)
  30. money = int64(1)
  31. aid = "217"
  32. )
  33. convey.Convey("BCoin", t, func(ctx convey.C) {
  34. defer gock.OffAll()
  35. httpMock("POST", d.bPayURI).Reply(200).JSON(`{"code":20063}`)
  36. err := d.BCoin(c, mid, aid, money)
  37. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  38. ctx.So(err, convey.ShouldNotBeNil)
  39. })
  40. })
  41. }
  42. func TestNewcomerPendant(t *testing.T) {
  43. var (
  44. c = context.Background()
  45. mid = int64(27515406)
  46. PID = "4"
  47. expires = int64(1)
  48. err error
  49. )
  50. convey.Convey("Pendant", t, func(ctx convey.C) {
  51. defer gock.OffAll()
  52. httpMock("POST", d.pendantURI).Reply(200).JSON(`{"code":20064}`)
  53. err = d.Pendant(c, mid, PID, expires)
  54. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  55. ctx.So(err, convey.ShouldNotBeNil)
  56. ctx.So(err, convey.ShouldEqual, ecode.CreativeNewcomerPendantAPIErr)
  57. })
  58. })
  59. }
  60. func TestNewcomerBigMemberCoupon(t *testing.T) {
  61. var (
  62. c = context.Background()
  63. mid = int64(27515308)
  64. batchToken = "841764801720181030122848"
  65. )
  66. convey.Convey("BigMemberCoupon", t, func(ctx convey.C) {
  67. defer gock.OffAll()
  68. httpMock("POST", d.bigMemberURI).Reply(200).JSON(`{"code":20069}`)
  69. err := d.BigMemberCoupon(c, mid, batchToken)
  70. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  71. ctx.So(err, convey.ShouldNotBeNil)
  72. })
  73. })
  74. }
  75. func httpMock(method, url string) *gock.Request {
  76. r := gock.New(url)
  77. r.Method = strings.ToUpper(method)
  78. d.client.SetTransport(gock.DefaultTransport)
  79. return r
  80. }
  81. func TestNewcomerSendNotify(t *testing.T) {
  82. convey.Convey("SendNotify", t, func(ctx convey.C) {
  83. var (
  84. c = context.Background()
  85. mids = []int64{27515405}
  86. mc = "1_17_4"
  87. title = "creative"
  88. context = "sssss"
  89. )
  90. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  91. err := d.SendNotify(c, mids, mc, title, context)
  92. ctx.Convey("Then err should be nil.msg should not be nil.", func(ctx convey.C) {
  93. ctx.So(err, convey.ShouldEqual, err)
  94. })
  95. })
  96. })
  97. }