vip_test.go 660 B

1234567891011121314151617181920212223242526272829
  1. package vip
  2. import (
  3. "context"
  4. "testing"
  5. vipmol "go-common/app/service/main/vip/model"
  6. "go-common/library/ecode"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestDao_CodeVerify(t *testing.T) {
  10. Convey("code verify", t, func() {
  11. _, err := d.CodeVerify(context.TODO())
  12. So(err, ShouldBeNil)
  13. })
  14. }
  15. // go test -test.v -test.run TestDaoCancelUseCoupon
  16. func TestDaoCancelUseCoupon(t *testing.T) {
  17. Convey("TestDaoCancelUseCoupon", t, func() {
  18. err := d.CancelUseCoupon(context.TODO(), &vipmol.ArgCancelUseCoupon{
  19. CouponToken: "672889783020180721180426",
  20. Mid: 1,
  21. })
  22. So(err == ecode.CouPonTokenNotFoundErr, ShouldBeTrue)
  23. })
  24. }