1
0

test_directory.py 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-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. from synapse.types import RoomAlias, RoomID
  17. from tests import unittest
  18. from tests.utils import setup_test_homeserver
  19. class DirectoryStoreTestCase(unittest.TestCase):
  20. @defer.inlineCallbacks
  21. def setUp(self):
  22. hs = yield setup_test_homeserver(self.addCleanup)
  23. self.store = hs.get_datastore()
  24. self.room = RoomID.from_string("!abcde:test")
  25. self.alias = RoomAlias.from_string("#my-room:test")
  26. @defer.inlineCallbacks
  27. def test_room_to_alias(self):
  28. yield defer.ensureDeferred(
  29. self.store.create_room_alias_association(
  30. room_alias=self.alias, room_id=self.room.to_string(), servers=["test"]
  31. )
  32. )
  33. self.assertEquals(
  34. ["#my-room:test"],
  35. (yield self.store.get_aliases_for_room(self.room.to_string())),
  36. )
  37. @defer.inlineCallbacks
  38. def test_alias_to_room(self):
  39. yield defer.ensureDeferred(
  40. self.store.create_room_alias_association(
  41. room_alias=self.alias, room_id=self.room.to_string(), servers=["test"]
  42. )
  43. )
  44. self.assertObjectHasAttributes(
  45. {"room_id": self.room.to_string(), "servers": ["test"]},
  46. (
  47. yield defer.ensureDeferred(
  48. self.store.get_association_from_room_alias(self.alias)
  49. )
  50. ),
  51. )
  52. @defer.inlineCallbacks
  53. def test_delete_alias(self):
  54. yield defer.ensureDeferred(
  55. self.store.create_room_alias_association(
  56. room_alias=self.alias, room_id=self.room.to_string(), servers=["test"]
  57. )
  58. )
  59. room_id = yield defer.ensureDeferred(self.store.delete_room_alias(self.alias))
  60. self.assertEqual(self.room.to_string(), room_id)
  61. self.assertIsNone(
  62. (
  63. yield defer.ensureDeferred(
  64. self.store.get_association_from_room_alias(self.alias)
  65. )
  66. )
  67. )