api_test.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package vip
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestVipCodeVerify(t *testing.T) {
  8. convey.Convey("CodeVerify", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. )
  12. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  13. token, err := d.CodeVerify(c)
  14. convCtx.Convey("Then err should be nil.token should not be nil.", func(convCtx convey.C) {
  15. convCtx.So(err, convey.ShouldBeNil)
  16. convCtx.So(token, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestVipCodeOpen(t *testing.T) {
  22. convey.Convey("CodeOpen", t, func(convCtx convey.C) {
  23. var (
  24. c = context.Background()
  25. mid = int64(0)
  26. code = ""
  27. token = ""
  28. verify = ""
  29. )
  30. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  31. data, err := d.CodeOpen(c, mid, code, token, verify)
  32. convCtx.Convey("Then err should be nil.data should not be nil.", func(convCtx convey.C) {
  33. convCtx.So(err, convey.ShouldBeNil)
  34. convCtx.So(data, convey.ShouldNotBeNil)
  35. })
  36. })
  37. })
  38. }