paypal/auth_test.go
2015-10-15 15:47:36 +07:00

25 lines
982 B
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://api.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, err = c.GetAuthorizationCodeURL("test", []string{"address"})
if uri != "https://api.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")
}
}