summary refs log tree commit diff
path: root/tests/storage
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-11-14 11:54:29 +0000
committerRichard van der Hoff <richard@matrix.org>2018-11-14 11:54:29 +0000
commitb699178aa153eb6285fa4c582f7d287ee23c8497 (patch)
treeac890bdd98c9f84b9e18ce26fcea4fccad7c562c /tests/storage
parentMerge remote-tracking branch 'origin/erikj/fix_device_comparison' into matrix... (diff)
parentMerge pull request #4184 from matrix-org/rav/fix_public_consent (diff)
downloadsynapse-b699178aa153eb6285fa4c582f7d287ee23c8497.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'tests/storage')
-rw-r--r--tests/storage/test_end_to_end_keys.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/storage/test_end_to_end_keys.py b/tests/storage/test_end_to_end_keys.py

index 8f0aaece40..b83f7336d3 100644 --- a/tests/storage/test_end_to_end_keys.py +++ b/tests/storage/test_end_to_end_keys.py
@@ -45,6 +45,21 @@ class EndToEndKeyStoreTestCase(tests.unittest.TestCase): self.assertDictContainsSubset({"keys": json, "device_display_name": None}, dev) @defer.inlineCallbacks + def test_reupload_key(self): + now = 1470174257070 + json = {"key": "value"} + + yield self.store.store_device("user", "device", None) + + changed = yield self.store.set_e2e_device_keys("user", "device", now, json) + self.assertTrue(changed) + + # If we try to upload the same key then we should be told nothing + # changed + changed = yield self.store.set_e2e_device_keys("user", "device", now, json) + self.assertFalse(changed) + + @defer.inlineCallbacks def test_get_key_with_device_name(self): now = 1470174257070 json = {"key": "value"}