summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-11-08 14:06:44 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2019-02-13 14:24:42 +0000
commit06132f1f0bb37ea81b80d6a27f3d296aeec3c66e (patch)
tree378b0dfada2ef085133bed8acb769fa6d5499b98
parentLets convert bytes to unicode instead (diff)
downloadsynapse-06132f1f0bb37ea81b80d6a27f3d296aeec3c66e.tar.xz
Add test to assert set_e2e_device_keys correctly returns False on no-op
-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"}