diff options
author | Callum Brown <callum@calcuode.com> | 2021-05-27 18:42:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-27 18:42:23 +0100 |
commit | 8fb9af570f942d2057e8acb4a047d61ed7048f58 (patch) | |
tree | a2d6ddf916c755d288a9e5e4db2d0f511b2bd863 /tests/rest/admin | |
parent | Limit the number of events sent over replication when persisting events. (#10... (diff) | |
download | synapse-8fb9af570f942d2057e8acb4a047d61ed7048f58.tar.xz |
Make reason and score optional for report_event (#10077)
Implements MSC2414: https://github.com/matrix-org/matrix-doc/pull/2414 See #8551 Signed-off-by: Callum Brown <callum@calcuode.com>
Diffstat (limited to 'tests/rest/admin')
-rw-r--r-- | tests/rest/admin/test_event_reports.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/rest/admin/test_event_reports.py b/tests/rest/admin/test_event_reports.py index 29341bc6e9..f15d1cf6f7 100644 --- a/tests/rest/admin/test_event_reports.py +++ b/tests/rest/admin/test_event_reports.py @@ -64,7 +64,7 @@ class EventReportsTestCase(unittest.HomeserverTestCase): user_tok=self.admin_user_tok, ) for _ in range(5): - self._create_event_and_report( + self._create_event_and_report_without_parameters( room_id=self.room_id2, user_tok=self.admin_user_tok, ) @@ -378,6 +378,19 @@ class EventReportsTestCase(unittest.HomeserverTestCase): ) self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"]) + def _create_event_and_report_without_parameters(self, room_id, user_tok): + """Create and report an event, but omit reason and score""" + resp = self.helper.send(room_id, tok=user_tok) + event_id = resp["event_id"] + + channel = self.make_request( + "POST", + "rooms/%s/report/%s" % (room_id, event_id), + json.dumps({}), + access_token=user_tok, + ) + self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"]) + def _check_fields(self, content): """Checks that all attributes are present in an event report""" for c in content: |