mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
0a970aef8a
This moves the OpenID Connect storage from memory into the SQL storage, making it persistent and allowing it to be used with clustered deployments like the rest of Authelia.
66 lines
2.5 KiB
Go
66 lines
2.5 KiB
Go
package oidc
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewOpenIDConnectWellKnownConfiguration(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
pkcePlainChallenge, pairwise bool
|
|
expectCodeChallengeMethodsSupported, expectSubjectTypesSupported []string
|
|
}{
|
|
{
|
|
desc: "ShouldHaveChallengeMethodsS256ANDSubjectTypesSupportedPublic",
|
|
pkcePlainChallenge: false,
|
|
pairwise: false,
|
|
expectCodeChallengeMethodsSupported: []string{"S256"},
|
|
expectSubjectTypesSupported: []string{"public"},
|
|
},
|
|
{
|
|
desc: "ShouldHaveChallengeMethodsS256PlainANDSubjectTypesSupportedPublic",
|
|
pkcePlainChallenge: true,
|
|
pairwise: false,
|
|
expectCodeChallengeMethodsSupported: []string{"S256", "plain"},
|
|
expectSubjectTypesSupported: []string{"public"},
|
|
},
|
|
{
|
|
desc: "ShouldHaveChallengeMethodsS256ANDSubjectTypesSupportedPublicPairwise",
|
|
pkcePlainChallenge: false,
|
|
pairwise: true,
|
|
expectCodeChallengeMethodsSupported: []string{"S256"},
|
|
expectSubjectTypesSupported: []string{"public", "pairwise"},
|
|
},
|
|
{
|
|
desc: "ShouldHaveChallengeMethodsS256PlainANDSubjectTypesSupportedPublicPairwise",
|
|
pkcePlainChallenge: true,
|
|
pairwise: true,
|
|
expectCodeChallengeMethodsSupported: []string{"S256", "plain"},
|
|
expectSubjectTypesSupported: []string{"public", "pairwise"},
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
t.Run(tc.desc, func(t *testing.T) {
|
|
actual := NewOpenIDConnectWellKnownConfiguration(tc.pkcePlainChallenge, tc.pairwise)
|
|
for _, codeChallengeMethod := range tc.expectCodeChallengeMethodsSupported {
|
|
assert.Contains(t, actual.CodeChallengeMethodsSupported, codeChallengeMethod)
|
|
}
|
|
|
|
for _, subjectType := range tc.expectSubjectTypesSupported {
|
|
assert.Contains(t, actual.SubjectTypesSupported, subjectType)
|
|
}
|
|
|
|
for _, codeChallengeMethod := range actual.CodeChallengeMethodsSupported {
|
|
assert.Contains(t, tc.expectCodeChallengeMethodsSupported, codeChallengeMethod)
|
|
}
|
|
|
|
for _, subjectType := range actual.SubjectTypesSupported {
|
|
assert.Contains(t, tc.expectSubjectTypesSupported, subjectType)
|
|
}
|
|
})
|
|
}
|
|
}
|