90 lines
2.5 KiB
Go
90 lines
2.5 KiB
Go
package oidc_test
|
|
|
|
import (
|
|
"net/url"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
"github.com/authelia/authelia/v4/internal/oidc"
|
|
)
|
|
|
|
func TestOpenIDConnectProvider_NewOpenIDConnectProvider_NotConfigured(t *testing.T) {
|
|
provider := oidc.NewOpenIDConnectProvider(nil, nil, nil)
|
|
|
|
assert.Nil(t, provider)
|
|
}
|
|
|
|
func TestNewOpenIDConnectProvider_ShouldEnableOptionalDiscoveryValues(t *testing.T) {
|
|
provider := oidc.NewOpenIDConnectProvider(&schema.OpenIDConnect{
|
|
IssuerCertificateChain: schema.X509CertificateChain{},
|
|
IssuerPrivateKey: keyRSA2048,
|
|
EnablePKCEPlainChallenge: true,
|
|
HMACSecret: badhmac,
|
|
Clients: []schema.OpenIDConnectClient{
|
|
{
|
|
ID: myclient,
|
|
Secret: tOpenIDConnectPlainTextClientSecret,
|
|
SectorIdentifier: url.URL{Host: examplecomsid},
|
|
Policy: onefactor,
|
|
RedirectURIs: []string{
|
|
examplecom,
|
|
},
|
|
},
|
|
},
|
|
}, nil, nil)
|
|
|
|
require.NotNil(t, provider)
|
|
|
|
disco := provider.GetOpenIDConnectWellKnownConfiguration(examplecom)
|
|
|
|
assert.Len(t, disco.SubjectTypesSupported, 2)
|
|
assert.Contains(t, disco.SubjectTypesSupported, oidc.SubjectTypePublic)
|
|
assert.Contains(t, disco.SubjectTypesSupported, oidc.SubjectTypePairwise)
|
|
|
|
assert.Len(t, disco.CodeChallengeMethodsSupported, 2)
|
|
assert.Contains(t, disco.CodeChallengeMethodsSupported, oidc.PKCEChallengeMethodSHA256)
|
|
assert.Contains(t, disco.CodeChallengeMethodsSupported, oidc.PKCEChallengeMethodSHA256)
|
|
}
|
|
|
|
func TestOpenIDConnectProvider_NewOpenIDConnectProvider_GoodConfiguration(t *testing.T) {
|
|
provider := oidc.NewOpenIDConnectProvider(&schema.OpenIDConnect{
|
|
IssuerCertificateChain: schema.X509CertificateChain{},
|
|
IssuerPrivateKey: keyRSA2048,
|
|
HMACSecret: badhmac,
|
|
Clients: []schema.OpenIDConnectClient{
|
|
{
|
|
ID: "a-client",
|
|
Secret: tOpenIDConnectPlainTextClientSecret,
|
|
Policy: onefactor,
|
|
RedirectURIs: []string{
|
|
"https://google.com",
|
|
},
|
|
},
|
|
{
|
|
ID: "b-client",
|
|
Description: "Normal Description",
|
|
Secret: tOpenIDConnectPlainTextClientSecret,
|
|
Policy: twofactor,
|
|
RedirectURIs: []string{
|
|
"https://google.com",
|
|
},
|
|
Scopes: []string{
|
|
oidc.ScopeGroups,
|
|
},
|
|
GrantTypes: []string{
|
|
oidc.GrantTypeRefreshToken,
|
|
},
|
|
ResponseTypes: []string{
|
|
"token",
|
|
"code",
|
|
},
|
|
},
|
|
},
|
|
}, nil, nil)
|
|
|
|
assert.NotNil(t, provider)
|
|
}
|