paypale/auth_test.go
Aliaksandr Pliutau 2f016eafbb webapps URL
2015-11-17 10:03:46 +07:00

41 lines
1.3 KiB
Go

package paypalsdk
import (
"testing"
)
func TestGetAuthorizationCodeURL(t *testing.T) {
c, _ := NewClient("clid", "secret", APIBaseSandBox)
_, err := c.GetAuthorizationCodeURL("", []string{})
if err == nil {
t.Errorf("redirectURI is required in GetAuthorizationCodeURL")
}
uri, err := c.GetAuthorizationCodeURL("test", []string{})
if uri != "https://sandbox.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize?client_id=clid&response_type=code&scope=profile+email&redirect_uri=test" {
t.Errorf("GetAuthorizationCodeURL returns incorrect value for redirectURI=test " + uri)
}
uri, err = c.GetAuthorizationCodeURL("test", []string{"address"})
if uri != "https://sandbox.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize?client_id=clid&response_type=code&scope=address&redirect_uri=test" {
t.Errorf("GetAuthorizationCodeURL returns incorrect value for redirectURI=test and scope=address " + uri)
}
}
func TestGetAccessToken(t *testing.T) {
c, _ := NewClient("clid", "secret", APIBaseSandBox)
_, err := c.GetAccessToken("123", "")
if err == nil {
t.Errorf("redirectURI is required in GetRefreshToken")
}
_, err = c.GetAccessToken("", "123")
if err == nil {
t.Errorf("authorizationCode is required in GetRefreshToken")
}
_, err = c.GetAccessToken("123", "123")
}