test_end_to_end_keys.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2016 OpenMarket Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. from twisted.internet import defer
  16. import tests.unittest
  17. import tests.utils
  18. class EndToEndKeyStoreTestCase(tests.unittest.TestCase):
  19. def __init__(self, *args, **kwargs):
  20. super(EndToEndKeyStoreTestCase, self).__init__(*args, **kwargs)
  21. self.store = None # type: synapse.storage.DataStore
  22. @defer.inlineCallbacks
  23. def setUp(self):
  24. hs = yield tests.utils.setup_test_homeserver(self.addCleanup)
  25. self.store = hs.get_datastore()
  26. @defer.inlineCallbacks
  27. def test_key_without_device_name(self):
  28. now = 1470174257070
  29. json = {"key": "value"}
  30. yield self.store.store_device("user", "device", None)
  31. yield self.store.set_e2e_device_keys("user", "device", now, json)
  32. res = yield self.store.get_e2e_device_keys((("user", "device"),))
  33. self.assertIn("user", res)
  34. self.assertIn("device", res["user"])
  35. dev = res["user"]["device"]
  36. self.assertDictContainsSubset({"keys": json, "device_display_name": None}, dev)
  37. @defer.inlineCallbacks
  38. def test_reupload_key(self):
  39. now = 1470174257070
  40. json = {"key": "value"}
  41. yield self.store.store_device("user", "device", None)
  42. changed = yield self.store.set_e2e_device_keys("user", "device", now, json)
  43. self.assertTrue(changed)
  44. # If we try to upload the same key then we should be told nothing
  45. # changed
  46. changed = yield self.store.set_e2e_device_keys("user", "device", now, json)
  47. self.assertFalse(changed)
  48. @defer.inlineCallbacks
  49. def test_get_key_with_device_name(self):
  50. now = 1470174257070
  51. json = {"key": "value"}
  52. yield self.store.set_e2e_device_keys("user", "device", now, json)
  53. yield self.store.store_device("user", "device", "display_name")
  54. res = yield self.store.get_e2e_device_keys((("user", "device"),))
  55. self.assertIn("user", res)
  56. self.assertIn("device", res["user"])
  57. dev = res["user"]["device"]
  58. self.assertDictContainsSubset(
  59. {"keys": json, "device_display_name": "display_name"}, dev
  60. )
  61. @defer.inlineCallbacks
  62. def test_multiple_devices(self):
  63. now = 1470174257070
  64. yield self.store.store_device("user1", "device1", None)
  65. yield self.store.store_device("user1", "device2", None)
  66. yield self.store.store_device("user2", "device1", None)
  67. yield self.store.store_device("user2", "device2", None)
  68. yield self.store.set_e2e_device_keys("user1", "device1", now, 'json11')
  69. yield self.store.set_e2e_device_keys("user1", "device2", now, 'json12')
  70. yield self.store.set_e2e_device_keys("user2", "device1", now, 'json21')
  71. yield self.store.set_e2e_device_keys("user2", "device2", now, 'json22')
  72. res = yield self.store.get_e2e_device_keys(
  73. (("user1", "device1"), ("user2", "device2"))
  74. )
  75. self.assertIn("user1", res)
  76. self.assertIn("device1", res["user1"])
  77. self.assertNotIn("device2", res["user1"])
  78. self.assertIn("user2", res)
  79. self.assertNotIn("device1", res["user2"])
  80. self.assertIn("device2", res["user2"])