summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-11-08 14:06:44 +0000
committerErik Johnston <erik@matrix.org>2018-11-08 14:06:44 +0000
commitabaa93c1583800155093ab75f6c072c8d83200d0 (patch)
treeafdd46273fd45be2e53c7d24bc5e42d2e2a26c48 /tests
parentLets convert bytes to unicode instead (diff)
downloadsynapse-abaa93c1583800155093ab75f6c072c8d83200d0.tar.xz
Add test to assert set_e2e_device_keys correctly returns False on no-op
Diffstat (limited to 'tests')
-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"}