MatrixSynapse/tests/handlers
Richard van der Hoff 9de6b94117
Land support for multiple OIDC providers (#9110)
This is the final step for supporting multiple OIDC providers concurrently.

First of all, we reorganise the config so that you can specify a list of OIDC providers, instead of a single one. Before:

    oidc_config:
       enabled: true
       issuer: "https://oidc_provider"
       # etc

After:

    oidc_providers:
     - idp_id: prov1
       issuer: "https://oidc_provider"

     - idp_id: prov2
       issuer: "https://another_oidc_provider"

The old format is still grandfathered in.

With that done, it's then simply a matter of having OidcHandler instantiate a new OidcProvider for each configured provider.
2021-01-15 16:55:29 +00:00
..
__init__.py
test_admin.py
test_appservice.py
test_auth.py
test_cas.py Remove SynapseRequest.get_user_agent (#9069) 2021-01-12 12:34:16 +00:00
test_device.py
test_directory.py
test_e2e_keys.py
test_e2e_room_keys.py
test_federation.py
test_message.py
test_oidc.py Land support for multiple OIDC providers (#9110) 2021-01-15 16:55:29 +00:00
test_password_providers.py
test_presence.py
test_profile.py Remove user's avatar URL and displayname when deactivated. (#8932) 2021-01-12 16:30:15 -05:00
test_register.py
test_saml.py Remove SynapseRequest.get_user_agent (#9069) 2021-01-12 12:34:16 +00:00
test_stats.py
test_sync.py
test_typing.py
test_user_directory.py Fix a bug that deactivated users appear in the directory (#8933) 2020-12-17 12:05:39 +00:00