diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-08-04 22:07:04 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-08-04 22:07:04 +0100 |
commit | 42c6823827a12cdb4374bc6e64d32d4ce4f526ec (patch) | |
tree | a0dbc9edfea7853ee1631a740a2b3ba085660841 /tests/api | |
parent | py3 fix (diff) | |
download | synapse-42c6823827a12cdb4374bc6e64d32d4ce4f526ec.tar.xz |
disable HS from config
Diffstat (limited to 'tests/api')
-rw-r--r-- | tests/api/test_auth.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py index 5dc3398300..fbb96361a8 100644 --- a/tests/api/test_auth.py +++ b/tests/api/test_auth.py @@ -21,7 +21,7 @@ from twisted.internet import defer import synapse.handlers.auth from synapse.api.auth import Auth -from synapse.api.errors import AuthError +from synapse.api.errors import AuthError, Codes from synapse.types import UserID from tests import unittest @@ -469,3 +469,12 @@ class AuthTestCase(unittest.TestCase): return_value=defer.succeed(small_number_of_users) ) yield self.auth.check_auth_blocking() + + @defer.inlineCallbacks + def test_hs_disabled(self): + self.hs.config.hs_disabled = True + self.hs.config.hs_disabled_message = "Reason for being disabled" + with self.assertRaises(AuthError) as e: + yield self.auth.check_auth_blocking() + self.assertEquals(e.exception.errcode, Codes.HS_DISABLED) + self.assertEquals(e.exception.code, 403) |