26 lignes
704 o
Go
26 lignes
704 o
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/ory/fosite"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestClient(t *testing.T) {
|
||
|
c := &Client{
|
||
|
ID: "foo",
|
||
|
RedirectURIs: []string{"foo"},
|
||
|
Scope: "foo bar",
|
||
|
}
|
||
|
|
||
|
assert.EqualValues(t, c.RedirectURIs, c.GetRedirectURIs())
|
||
|
assert.EqualValues(t, []byte(c.Secret), c.GetHashedSecret())
|
||
|
assert.EqualValues(t, fosite.Arguments{"authorization_code"}, c.GetGrantTypes())
|
||
|
assert.EqualValues(t, fosite.Arguments{"code"}, c.GetResponseTypes())
|
||
|
assert.EqualValues(t, (c.Owner), c.GetOwner())
|
||
|
assert.EqualValues(t, (c.Public), c.IsPublic())
|
||
|
assert.Len(t, c.GetScopes(), 2)
|
||
|
assert.EqualValues(t, c.RedirectURIs, c.GetRedirectURIs())
|
||
|
}
|