oauth2_api_test.go 584 B

12345678910111213141516171819202122232425
  1. package vip
  2. import (
  3. "context"
  4. "fmt"
  5. "testing"
  6. "go-common/app/interface/main/account/model"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. // go test -test.v -test.run TestDaoOAuth2
  10. func TestDaoOAuth2(t *testing.T) {
  11. Convey("TestDaoOAuth2", t, func() {
  12. data, err := d.OAuth2ByCode(context.Background(), &model.ArgAuthCode{
  13. Code: "778b91c87a43e4fdab6c647010b77566",
  14. })
  15. if fmt.Sprintf("%v", err) != "dao oauth2 userinfo: -907" {
  16. So(err, ShouldBeNil)
  17. So(data, ShouldNotBeNil)
  18. }
  19. So(fmt.Sprintf("%v", err) == "dao oauth2 userinfo: -907", ShouldBeTrue)
  20. })
  21. }