summary refs log tree commit diff
path: root/tests/handlers/test_cas.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add type hints to more tests files. (#12240)Dirk Klimpel2022-03-171-7/+12
|
* Remove `HomeServer.get_datastore()` (#12031)Richard van der Hoff2022-02-231-1/+1
| | | | | | | The presence of this method was confusing, and mostly present for backwards compatibility. Let's get rid of it. Part of #11733
* Save the OIDC session ID (sid) with the device on login (#11482)Quentin Gliech2021-12-061-5/+35
| | | As a step towards allowing back-channel logout for OIDC.
* Rename handler and config modules which end in handler/config. (#9816)Patrick Cloke2021-04-201-1/+1
|
* Use mock from the stdlib. (#9772)Patrick Cloke2021-04-091-1/+1
|
* Record the SSO Auth Provider in the login token (#9510)Richard van der Hoff2021-03-041-5/+5
| | | This great big stack of commits is a a whole load of hoop-jumping to make it easier to store additional values in login tokens, and then to actually store the SSO Identity Provider in the login token. (Making use of that data will follow in a subsequent PR.)
* Combine the CAS & SAML implementations for required attributes. (#9326)Patrick Cloke2021-02-111-2/+50
|
* Improve styling and wording of SSO redirect confirm template (#9272)Richard van der Hoff2021-02-011-4/+4
|
* Remove SynapseRequest.get_user_agent (#9069)Richard van der Hoff2021-01-121-1/+1
| | | | | | | | | | | SynapseRequest is in danger of becoming a bit of a dumping-ground for "useful stuff relating to Requests", which isn't really its intention (its purpose is to override render, finished and connectionLost to set up the LoggingContext and write the right entries to the request log). Putting utility functions inside SynapseRequest means that lots of our code ends up requiring a SynapseRequest when there is nothing synapse-specific about the Request at all, and any old twisted.web.iweb.IRequest will do. This increases code coupling and makes testing more difficult. In short: move get_user_agent out to a utility function.
* Use the SSO handler helpers for CAS registration/login. (#8856)Patrick Cloke2021-01-031-0/+121