coupon_test.go 637 B

12345678910111213141516171819202122232425262728
  1. package bnj
  2. import (
  3. "context"
  4. "testing"
  5. "gopkg.in/h2non/gock.v1"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestBnjGrantCoupon(t *testing.T) {
  9. convey.Convey("GrantCoupon", t, func(ctx convey.C) {
  10. var (
  11. c = context.Background()
  12. mid = int64(2080809)
  13. couponID = "3d005e8ba01c5cb0"
  14. )
  15. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  16. defer gock.OffAll()
  17. httpMock("POST", d.grantCouponURL).Reply(200).JSON(`{"code":0}`)
  18. err := d.GrantCoupon(c, mid, couponID)
  19. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  20. ctx.So(err, convey.ShouldBeNil)
  21. })
  22. })
  23. })
  24. }