summaryrefslogtreecommitdiff
path: root/tests/handlers/test_typing.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@matrix.org>2016-09-08 15:33:07 +0100
committerErik Johnston <erikj@matrix.org>2016-09-08 15:33:07 +0100
commit51bd72a0d0c1d409ba8603129ad528726831a929 (patch)
tree3d1fe71fc6a53ea65981f814facd80d79d99bf68 /tests/handlers/test_typing.py
parentc1c15ad12f8bda0d65778bd03543ad1f14a1cfc2 (diff)
Imported Upstream version 0.17.2
Diffstat (limited to 'tests/handlers/test_typing.py')
-rw-r--r--tests/handlers/test_typing.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py
index ab9899b7..b2957eef 100644
--- a/tests/handlers/test_typing.py
+++ b/tests/handlers/test_typing.py
@@ -62,6 +62,7 @@ class TypingNotificationsTestCase(unittest.TestCase):
self.on_new_event = mock_notifier.on_new_event
self.auth = Mock(spec=[])
+ self.state_handler = Mock()
hs = yield setup_test_homeserver(
"test",
@@ -75,6 +76,7 @@ class TypingNotificationsTestCase(unittest.TestCase):
"set_received_txn_response",
"get_destination_retry_timings",
]),
+ state_handler=self.state_handler,
handlers=None,
notifier=mock_notifier,
resource_for_client=Mock(),
@@ -113,6 +115,10 @@ class TypingNotificationsTestCase(unittest.TestCase):
return set(member.domain for member in self.room_members)
self.datastore.get_joined_hosts_for_room = get_joined_hosts_for_room
+ def get_current_user_in_room(room_id):
+ return set(str(u) for u in self.room_members)
+ self.state_handler.get_current_user_in_room = get_current_user_in_room
+
self.auth.check_joined_room = check_joined_room
# Some local users to test with