diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-12-06 09:44:38 +0100 |
---|---|---|
committer | Amber Brown <hawkowl@atleastfornow.net> | 2018-12-06 19:44:38 +1100 |
commit | b0c24a66ec7ede1c70e082fc1a652fb7b61bae9d (patch) | |
tree | 5e56e6358e7deb0d7510399ca8f1fa24daa5de53 /tests | |
parent | drop undocumented dependency on dateutil (#4266) (diff) | |
download | synapse-b0c24a66ec7ede1c70e082fc1a652fb7b61bae9d.tar.xz |
Rip out half-implemented m.login.saml2 support (#4265)
* Rip out half-implemented m.login.saml2 support This was implemented in an odd way that left most of the work to the client, in a way that I really didn't understand. It's going to be a pain to maintain, so let's start by ripping it out. * drop undocumented dependency on dateutil It turns out we were relying on dateutil being pulled in transitively by pysaml2. There's no need for that bloat.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_register.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/handlers/test_register.py b/tests/handlers/test_register.py index 90a2a76475..23bce6ee7d 100644 --- a/tests/handlers/test_register.py +++ b/tests/handlers/test_register.py @@ -130,21 +130,6 @@ class RegistrationTestCase(unittest.TestCase): yield self.handler.register(localpart="local_part") @defer.inlineCallbacks - def test_register_saml2_mau_blocked(self): - self.hs.config.limit_usage_by_mau = True - self.store.get_monthly_active_count = Mock( - return_value=defer.succeed(self.lots_of_users) - ) - with self.assertRaises(ResourceLimitError): - yield self.handler.register_saml2(localpart="local_part") - - self.store.get_monthly_active_count = Mock( - return_value=defer.succeed(self.hs.config.max_mau_value) - ) - with self.assertRaises(ResourceLimitError): - yield self.handler.register_saml2(localpart="local_part") - - @defer.inlineCallbacks def test_auto_create_auto_join_rooms(self): room_alias_str = "#room:test" self.hs.config.auto_join_rooms = [room_alias_str] |