8527c363bb
This is a bit more clear. We're changing this now because it is a non-backwards-compatible change that we can make now since none of this RFC8693 token exchange stuff has been released yet. There is also a small typo fix in some flag usages (s/RF8693/RFC8693/) Signed-off-by: Matt Moyer <moyerm@vmware.com>
38 lines
1.0 KiB
Go
38 lines
1.0 KiB
Go
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package oidc
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/ory/fosite"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNullStorage_GetClient(t *testing.T) {
|
|
storage := NullStorage{}
|
|
|
|
client, err := storage.GetClient(context.Background(), "some-other-client")
|
|
require.Equal(t, fosite.ErrNotFound, err)
|
|
require.Zero(t, client)
|
|
|
|
client, err = storage.GetClient(context.Background(), "pinniped-cli")
|
|
require.NoError(t, err)
|
|
require.Equal(t,
|
|
&fosite.DefaultOpenIDConnectClient{
|
|
DefaultClient: &fosite.DefaultClient{
|
|
ID: "pinniped-cli",
|
|
Public: true,
|
|
RedirectURIs: []string{"http://127.0.0.1/callback"},
|
|
ResponseTypes: []string{"code"},
|
|
GrantTypes: []string{"authorization_code", "refresh_token", "urn:ietf:params:oauth:grant-type:token-exchange"},
|
|
Scopes: []string{"openid", "offline_access", "profile", "email", "pinniped:request-audience"},
|
|
},
|
|
TokenEndpointAuthMethod: "none",
|
|
},
|
|
client,
|
|
)
|
|
}
|