summaryrefslogtreecommitdiff
path: root/internal/configuration/validator/totp_test.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2023-04-13 20:58:18 +1000
committerGitHub <noreply@github.com>2023-04-13 20:58:18 +1000
commit3d2da0b070d097129cc71b5e170692c3a6380b8f (patch)
treea639324484bd067a7b5eadd04867d6eb40b882c1 /internal/configuration/validator/totp_test.go
parentdb130dad483dfdbc36d0f781713d01d6fd1b960c (diff)
feat(oidc): client authentication modes (#5150)
This adds a feature to OpenID Connect 1.0 where clients can be restricted to a specific client authentication mode, as well as implements some backend requirements for the private_key_jwt client authentication mode (and potentially the tls_client_auth / self_signed_tls_client_auth client authentication modes). It also adds some improvements to configuration defaults and validations which will for now be warnings but likely be made into errors. Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/configuration/validator/totp_test.go')
-rw-r--r--internal/configuration/validator/totp_test.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/internal/configuration/validator/totp_test.go b/internal/configuration/validator/totp_test.go
index 956f074c4..b94f7f00b 100644
--- a/internal/configuration/validator/totp_test.go
+++ b/internal/configuration/validator/totp_test.go
@@ -56,7 +56,9 @@ func TestValidateTOTP(t *testing.T) {
Skew: schema.DefaultTOTPConfiguration.Skew,
Issuer: "abc",
},
- errs: []string{"totp: option 'algorithm' must be one of 'SHA1', 'SHA256', 'SHA512' but it is configured as 'SHA3'"},
+ errs: []string{
+ "totp: option 'algorithm' must be one of 'SHA1', 'SHA256', or 'SHA512' but it's configured as 'SHA3'",
+ },
},
{
desc: "ShouldRaiseErrorWhenInvalidTOTPValue",
@@ -69,10 +71,10 @@ func TestValidateTOTP(t *testing.T) {
Issuer: "abc",
},
errs: []string{
- "totp: option 'algorithm' must be one of 'SHA1', 'SHA256', 'SHA512' but it is configured as 'SHA3'",
- "totp: option 'period' option must be 15 or more but it is configured as '5'",
- "totp: option 'digits' must be 6 or 8 but it is configured as '20'",
- "totp: option 'secret_size' must be 20 or higher but it is configured as '10'",
+ "totp: option 'algorithm' must be one of 'SHA1', 'SHA256', or 'SHA512' but it's configured as 'SHA3'",
+ "totp: option 'period' option must be 15 or more but it's configured as '5'",
+ "totp: option 'digits' must be 6 or 8 but it's configured as '20'",
+ "totp: option 'secret_size' must be 20 or higher but it's configured as '10'",
},
},
}