diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-06-03 15:36:41 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-06-04 00:16:56 +0100 |
commit | def5ea4062295759d7c28d9c2302187871a1bc72 (patch) | |
tree | 956a5656dcc945bf539bacef1168a4a79f57c1a3 /tests | |
parent | Reduce timeout for outbound /key/v2/server requests. (diff) | |
download | synapse-def5ea4062295759d7c28d9c2302187871a1bc72.tar.xz |
Don't bomb out on direct key fetches as soon as one fails
Diffstat (limited to 'tests')
-rw-r--r-- | tests/crypto/test_keyring.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/tests/crypto/test_keyring.py b/tests/crypto/test_keyring.py index 096401938d..4cff7e36c8 100644 --- a/tests/crypto/test_keyring.py +++ b/tests/crypto/test_keyring.py @@ -25,11 +25,7 @@ from twisted.internet import defer from synapse.api.errors import SynapseError from synapse.crypto import keyring -from synapse.crypto.keyring import ( - KeyLookupError, - PerspectivesKeyFetcher, - ServerKeyFetcher, -) +from synapse.crypto.keyring import PerspectivesKeyFetcher, ServerKeyFetcher from synapse.storage.keys import FetchKeyResult from synapse.util import logcontext from synapse.util.logcontext import LoggingContext @@ -364,9 +360,11 @@ class ServerKeyFetcherTestCase(unittest.HomeserverTestCase): bytes(res["key_json"]), canonicaljson.encode_canonical_json(response) ) - # change the server name: it should cause a rejection + # change the server name: the result should be ignored response["server_name"] = "OTHER_SERVER" - self.get_failure(fetcher.get_keys(keys_to_fetch), KeyLookupError) + + keys = self.get_success(fetcher.get_keys(keys_to_fetch)) + self.assertEqual(keys, {}) class PerspectivesKeyFetcherTestCase(unittest.HomeserverTestCase): |