2022-04-07 05:33:53 +00:00
|
|
|
package oidc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2023-03-06 03:58:50 +00:00
|
|
|
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
2022-04-07 05:33:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewOpenIDConnectWellKnownConfiguration(t *testing.T) {
|
|
|
|
testCases := []struct {
|
2022-10-20 02:16:36 +00:00
|
|
|
desc string
|
|
|
|
pkcePlainChallenge bool
|
2023-03-06 03:58:50 +00:00
|
|
|
enforcePAR bool
|
2022-10-20 02:16:36 +00:00
|
|
|
clients map[string]*Client
|
|
|
|
|
2022-04-07 05:33:53 +00:00
|
|
|
expectCodeChallengeMethodsSupported, expectSubjectTypesSupported []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "ShouldHaveChallengeMethodsS256ANDSubjectTypesSupportedPublic",
|
|
|
|
pkcePlainChallenge: false,
|
2022-10-20 02:16:36 +00:00
|
|
|
clients: map[string]*Client{"a": {}},
|
|
|
|
expectCodeChallengeMethodsSupported: []string{PKCEChallengeMethodSHA256},
|
|
|
|
expectSubjectTypesSupported: []string{SubjectTypePublic},
|
2022-04-07 05:33:53 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "ShouldHaveChallengeMethodsS256PlainANDSubjectTypesSupportedPublic",
|
|
|
|
pkcePlainChallenge: true,
|
2022-10-20 02:16:36 +00:00
|
|
|
clients: map[string]*Client{"a": {}},
|
|
|
|
expectCodeChallengeMethodsSupported: []string{PKCEChallengeMethodSHA256, PKCEChallengeMethodPlain},
|
|
|
|
expectSubjectTypesSupported: []string{SubjectTypePublic},
|
2022-04-07 05:33:53 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "ShouldHaveChallengeMethodsS256ANDSubjectTypesSupportedPublicPairwise",
|
|
|
|
pkcePlainChallenge: false,
|
2022-10-20 02:16:36 +00:00
|
|
|
clients: map[string]*Client{"a": {SectorIdentifier: "yes"}},
|
|
|
|
expectCodeChallengeMethodsSupported: []string{PKCEChallengeMethodSHA256},
|
|
|
|
expectSubjectTypesSupported: []string{SubjectTypePublic, SubjectTypePairwise},
|
2022-04-07 05:33:53 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "ShouldHaveChallengeMethodsS256PlainANDSubjectTypesSupportedPublicPairwise",
|
|
|
|
pkcePlainChallenge: true,
|
2022-10-20 02:16:36 +00:00
|
|
|
clients: map[string]*Client{"a": {SectorIdentifier: "yes"}},
|
|
|
|
expectCodeChallengeMethodsSupported: []string{PKCEChallengeMethodSHA256, PKCEChallengeMethodPlain},
|
|
|
|
expectSubjectTypesSupported: []string{SubjectTypePublic, SubjectTypePairwise},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "ShouldHaveTokenAuthMethodsNone",
|
|
|
|
pkcePlainChallenge: true,
|
|
|
|
clients: map[string]*Client{"a": {SectorIdentifier: "yes"}},
|
|
|
|
expectCodeChallengeMethodsSupported: []string{PKCEChallengeMethodSHA256, PKCEChallengeMethodPlain},
|
|
|
|
expectSubjectTypesSupported: []string{SubjectTypePublic, SubjectTypePairwise},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "ShouldHaveTokenAuthMethodsNone",
|
|
|
|
pkcePlainChallenge: true,
|
|
|
|
clients: map[string]*Client{
|
|
|
|
"a": {SectorIdentifier: "yes"},
|
|
|
|
"b": {SectorIdentifier: "yes"},
|
|
|
|
},
|
|
|
|
expectCodeChallengeMethodsSupported: []string{PKCEChallengeMethodSHA256, PKCEChallengeMethodPlain},
|
|
|
|
expectSubjectTypesSupported: []string{SubjectTypePublic, SubjectTypePairwise},
|
2022-04-07 05:33:53 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.desc, func(t *testing.T) {
|
2023-03-06 03:58:50 +00:00
|
|
|
c := schema.OpenIDConnectConfiguration{
|
|
|
|
EnablePKCEPlainChallenge: tc.pkcePlainChallenge,
|
|
|
|
PAR: schema.OpenIDConnectPARConfiguration{
|
|
|
|
Enforce: tc.enforcePAR,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := NewOpenIDConnectWellKnownConfiguration(&c, tc.clients)
|
2022-04-07 05:33:53 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|