Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for UnsupportedAuthentication #22

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions test/DiscoveryTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ module DiscoveryTest
) where

--------------------------------------------------------------------------------
import Data.List.NonEmpty (fromList)
import HttpHelper
import qualified Network.HTTP.Client.Internal as HTTP
import Network.URI (parseURI)
import qualified Network.URI.Static as Network
import OpenID.Connect.Authentication
import OpenID.Connect.Client.Provider
import OpenID.Connect.Scope
import Test.Tasty (TestTree, testGroup)
Expand All @@ -35,6 +37,7 @@ import Test.Tasty.HUnit
test :: TestTree
test = testGroup "Discovery"
[ testCase "discovery" testDiscoveryParsing
, testCase "discovery auth method extensions" testDiscoveryAuthExtParsing
]

--------------------------------------------------------------------------------
Expand All @@ -60,3 +63,24 @@ testDiscoveryParsing = do
fmap (`hasScope` "email") scopesSupported @?= Just True
fmap (`hasScope` "profile") scopesSupported @?= Just True
fmap show cache @?= Just "2020-02-20 20:40:21 UTC"

testDiscoveryAuthExtParsing :: Assertion
testDiscoveryAuthExtParsing = do
let fake = defaultFakeHTTPS "test/data/discovery-extensions.json"
https = mkHTTPS fake
url <- maybe (fail "WTF?") pure (parseURI "https://oidc.example")
(res, _) <- runHTTPS (discovery https url)

case res of
Left e -> fail (show e)
Right (Discovery{..}, _) -> do
tokenEndpointAuthMethodsSupported
@?=
Just
(fromList
[ PrivateKeyJwt
, ClientSecretBasic
, ClientSecretPost
, UnsupportedAuthentication "tls_client_auth"
, ClientSecretJwt
])
174 changes: 174 additions & 0 deletions test/data/discovery-extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
{
"issuer": "https://oidc.example",
"authorization_endpoint": "https://oidc.example/openid-connect/auth",
"token_endpoint": "https://oidc.example/openid-connect/token",
"introspection_endpoint": "https://oidc.example/openid-connect/token/introspect",
"userinfo_endpoint": "https://oidc.example/openid-connect/userinfo",
"end_session_endpoint": "https://oidc.example/openid-connect/logout",
"jwks_uri": "https://oidc.example/openid-connect/certs",
"check_session_iframe": "https://oidc.example/openid-connect/login-status-iframe.html",
"grant_types_supported": [
"authorization_code",
"implicit",
"refresh_token",
"password",
"client_credentials"
],
"response_types_supported": [
"code",
"none",
"id_token",
"token",
"id_token token",
"code id_token",
"code token",
"code id_token token"
],
"subject_types_supported": [
"public",
"pairwise"
],
"id_token_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512"
],
"id_token_encryption_alg_values_supported": [
"RSA-OAEP",
"RSA-OAEP-256",
"RSA1_5"
],
"id_token_encryption_enc_values_supported": [
"A256GCM",
"A192GCM",
"A128GCM",
"A128CBC-HS256",
"A192CBC-HS384",
"A256CBC-HS512"
],
"userinfo_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512",
"none"
],
"request_object_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512",
"none"
],
"response_modes_supported": [
"query",
"fragment",
"form_post"
],
"registration_endpoint": "https://oidc.example/clients-registrations/openid-connect",
"token_endpoint_auth_methods_supported": [
"private_key_jwt",
"client_secret_basic",
"client_secret_post",
"tls_client_auth",
"client_secret_jwt"
],
"token_endpoint_auth_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512"
],
"claims_supported": [
"aud",
"sub",
"iss",
"auth_time",
"name",
"given_name",
"family_name",
"preferred_username",
"email",
"acr"
],
"claim_types_supported": [
"normal"
],
"claims_parameter_supported": true,
"scopes_supported": [
"openid",
"offline_access",
"profile",
"email",
"address",
"phone",
"roles",
"web-origins",
"microprofile-jwt"
],
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"require_request_uri_registration": true,
"code_challenge_methods_supported": [
"plain",
"S256"
],
"tls_client_certificate_bound_access_tokens": true,
"revocation_endpoint": "https://oidc.example/openid-connect/revoke",
"revocation_endpoint_auth_methods_supported": [
"private_key_jwt",
"client_secret_basic",
"client_secret_post",
"tls_client_auth",
"client_secret_jwt"
],
"revocation_endpoint_auth_signing_alg_values_supported": [
"PS384",
"ES384",
"RS384",
"HS256",
"HS512",
"ES256",
"RS256",
"HS384",
"ES512",
"PS256",
"PS512",
"RS512"
],
"backchannel_logout_supported": true,
"backchannel_logout_session_supported": true
}
Loading