diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2023-02-17 14:54:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 13:54:55 +0000 |
commit | 61bfcd669ae596a8df940f434e3e2335059100b1 (patch) | |
tree | 8850b7a471114128422acf2ab7e785e3eae079f9 /tests/handlers | |
parent | Mitigate a race where /make_join could 403 for restricted rooms (#15080) (diff) | |
download | synapse-61bfcd669ae596a8df940f434e3e2335059100b1.tar.xz |
Add account data to export command (#14969)
* Add account data to to export command * newsfile * remove not needed function * update newsfile * adopt #14973
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_admin.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/handlers/test_admin.py b/tests/handlers/test_admin.py index 6f300b8e11..1b97aaeed1 100644 --- a/tests/handlers/test_admin.py +++ b/tests/handlers/test_admin.py @@ -296,3 +296,30 @@ class ExfiltrateData(unittest.HomeserverTestCase): self.assertEqual(args[0][0]["user_agent"], "user_agent") self.assertGreater(args[0][0]["last_seen"], 0) self.assertNotIn("access_token", args[0][0]) + + def test_account_data(self) -> None: + """Tests that user account data get exported.""" + # add account data + self.get_success( + self._store.add_account_data_for_user(self.user2, "m.global", {"a": 1}) + ) + self.get_success( + self._store.add_account_data_to_room( + self.user2, "test_room", "m.per_room", {"b": 2} + ) + ) + + writer = Mock() + + self.get_success(self.admin_handler.export_user_data(self.user2, writer)) + + # two calls, one call for user data and one call for room data + writer.write_account_data.assert_called() + + args = writer.write_account_data.call_args_list[0][0] + self.assertEqual(args[0], "global") + self.assertEqual(args[1]["m.global"]["a"], 1) + + args = writer.write_account_data.call_args_list[1][0] + self.assertEqual(args[0], "test_room") + self.assertEqual(args[1]["m.per_room"]["b"], 2) |