captcha_test.go 601 B

1234567891011121314151617181920212223242526272829303132
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. var (
  8. bid = "account"
  9. token = "5049a45ffc7c49489c14a7677c4548e2"
  10. )
  11. func TestToken(t *testing.T) {
  12. var (
  13. c = context.Background()
  14. )
  15. Convey("err should return nil", t, func() {
  16. _, t, err := svr.Token(c, bid)
  17. So(err, ShouldBeNil)
  18. So(t, ShouldNotBeNil)
  19. })
  20. Convey("err should return nil", t, func() {
  21. err := svr.VerifyCaptcha(c, token, "test")
  22. So(err, ShouldNotBeNil)
  23. })
  24. Convey("err should return nil", t, func() {
  25. business := svr.LookUp(bid)
  26. So(business, ShouldNotBeEmpty)
  27. })
  28. }