diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-09 14:14:15 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-09 14:14:15 +0000 |
commit | 5a7dd058184613c70041a61fdbc2ccce104bb500 (patch) | |
tree | c223485171f05bc887507d207d88244e4061047e /tests/rest/client/v2_alpha | |
parent | Register a user account for the AS when the AS registers. Add 'sender' column... (diff) | |
download | synapse-5a7dd058184613c70041a61fdbc2ccce104bb500.tar.xz |
Modify auth.get_user_by_req for authing appservices directly.
Add logic to map the appservice token to the autogenned appservice user ID. Add unit tests for all forms of get_user_by_req (user/appservice, valid/bad/missing tokens)
Diffstat (limited to 'tests/rest/client/v2_alpha')
-rw-r--r-- | tests/rest/client/v2_alpha/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/rest/client/v2_alpha/__init__.py b/tests/rest/client/v2_alpha/__init__.py index fa70575c57..7c2b0dfa0e 100644 --- a/tests/rest/client/v2_alpha/__init__.py +++ b/tests/rest/client/v2_alpha/__init__.py @@ -59,6 +59,8 @@ class V2AlphaRestTestCase(unittest.TestCase): r.register_servlets(hs, self.mock_resource) def make_datastore_mock(self): - return Mock(spec=[ + store = Mock(spec=[ "insert_client_ip", ]) + store.get_app_service_by_token = Mock(return_value=None) + return store |