diff options
author | Manuel Stahl <37705355+awesome-manuel@users.noreply.github.com> | 2020-05-07 21:33:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 15:33:07 -0400 |
commit | a4a5ec4096f8de938f4a6e4264aeaaa0e0b26463 (patch) | |
tree | 29af79b037dbda9d2cc8b445959928d923c9c1da /tests/storage | |
parent | Merge branch 'release-v1.13.0' into develop (diff) | |
download | synapse-a4a5ec4096f8de938f4a6e4264aeaaa0e0b26463.tar.xz |
Add room details admin endpoint (#7317)
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_room.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/storage/test_room.py b/tests/storage/test_room.py index 086adeb8fd..3b78d48896 100644 --- a/tests/storage/test_room.py +++ b/tests/storage/test_room.py @@ -55,6 +55,17 @@ class RoomStoreTestCase(unittest.TestCase): (yield self.store.get_room(self.room.to_string())), ) + @defer.inlineCallbacks + def test_get_room_with_stats(self): + self.assertDictContainsSubset( + { + "room_id": self.room.to_string(), + "creator": self.u_creator.to_string(), + "public": True, + }, + (yield self.store.get_room_with_stats(self.room.to_string())), + ) + class RoomEventsStoreTestCase(unittest.TestCase): @defer.inlineCallbacks |