123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616 |
- # Copyright 2020 Dirk Klimpel
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from http import HTTPStatus
- from typing import List
- from twisted.test.proto_helpers import MemoryReactor
- import synapse.rest.admin
- from synapse.api.errors import Codes
- from synapse.rest.client import login, report_event, room
- from synapse.server import HomeServer
- from synapse.types import JsonDict
- from synapse.util import Clock
- from tests import unittest
- class EventReportsTestCase(unittest.HomeserverTestCase):
- servlets = [
- synapse.rest.admin.register_servlets,
- login.register_servlets,
- room.register_servlets,
- report_event.register_servlets,
- ]
- def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
- self.admin_user = self.register_user("admin", "pass", admin=True)
- self.admin_user_tok = self.login("admin", "pass")
- self.other_user = self.register_user("user", "pass")
- self.other_user_tok = self.login("user", "pass")
- self.room_id1 = self.helper.create_room_as(
- self.other_user, tok=self.other_user_tok, is_public=True
- )
- self.helper.join(self.room_id1, user=self.admin_user, tok=self.admin_user_tok)
- self.room_id2 = self.helper.create_room_as(
- self.other_user, tok=self.other_user_tok, is_public=True
- )
- self.helper.join(self.room_id2, user=self.admin_user, tok=self.admin_user_tok)
- # Two rooms and two users. Every user sends and reports every room event
- for _ in range(5):
- self._create_event_and_report(
- room_id=self.room_id1,
- user_tok=self.other_user_tok,
- )
- for _ in range(5):
- self._create_event_and_report(
- room_id=self.room_id2,
- user_tok=self.other_user_tok,
- )
- for _ in range(5):
- self._create_event_and_report(
- room_id=self.room_id1,
- user_tok=self.admin_user_tok,
- )
- for _ in range(5):
- self._create_event_and_report_without_parameters(
- room_id=self.room_id2,
- user_tok=self.admin_user_tok,
- )
- self.url = "/_synapse/admin/v1/event_reports"
- def test_no_auth(self) -> None:
- """
- Try to get an event report without authentication.
- """
- channel = self.make_request("GET", self.url, b"{}")
- self.assertEqual(
- HTTPStatus.UNAUTHORIZED,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.MISSING_TOKEN, channel.json_body["errcode"])
- def test_requester_is_no_admin(self) -> None:
- """
- If the user is not a server admin, an error HTTPStatus.FORBIDDEN is returned.
- """
- channel = self.make_request(
- "GET",
- self.url,
- access_token=self.other_user_tok,
- )
- self.assertEqual(
- HTTPStatus.FORBIDDEN,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.FORBIDDEN, channel.json_body["errcode"])
- def test_default_success(self) -> None:
- """
- Testing list of reported events
- """
- channel = self.make_request(
- "GET",
- self.url,
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 20)
- self.assertNotIn("next_token", channel.json_body)
- self._check_fields(channel.json_body["event_reports"])
- def test_limit(self) -> None:
- """
- Testing list of reported events with limit
- """
- channel = self.make_request(
- "GET",
- self.url + "?limit=5",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 5)
- self.assertEqual(channel.json_body["next_token"], 5)
- self._check_fields(channel.json_body["event_reports"])
- def test_from(self) -> None:
- """
- Testing list of reported events with a defined starting point (from)
- """
- channel = self.make_request(
- "GET",
- self.url + "?from=5",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 15)
- self.assertNotIn("next_token", channel.json_body)
- self._check_fields(channel.json_body["event_reports"])
- def test_limit_and_from(self) -> None:
- """
- Testing list of reported events with a defined starting point and limit
- """
- channel = self.make_request(
- "GET",
- self.url + "?from=5&limit=10",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(channel.json_body["next_token"], 15)
- self.assertEqual(len(channel.json_body["event_reports"]), 10)
- self._check_fields(channel.json_body["event_reports"])
- def test_filter_room(self) -> None:
- """
- Testing list of reported events with a filter of room
- """
- channel = self.make_request(
- "GET",
- self.url + "?room_id=%s" % self.room_id1,
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 10)
- self.assertEqual(len(channel.json_body["event_reports"]), 10)
- self.assertNotIn("next_token", channel.json_body)
- self._check_fields(channel.json_body["event_reports"])
- for report in channel.json_body["event_reports"]:
- self.assertEqual(report["room_id"], self.room_id1)
- def test_filter_user(self) -> None:
- """
- Testing list of reported events with a filter of user
- """
- channel = self.make_request(
- "GET",
- self.url + "?user_id=%s" % self.other_user,
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 10)
- self.assertEqual(len(channel.json_body["event_reports"]), 10)
- self.assertNotIn("next_token", channel.json_body)
- self._check_fields(channel.json_body["event_reports"])
- for report in channel.json_body["event_reports"]:
- self.assertEqual(report["user_id"], self.other_user)
- def test_filter_user_and_room(self) -> None:
- """
- Testing list of reported events with a filter of user and room
- """
- channel = self.make_request(
- "GET",
- self.url + "?user_id=%s&room_id=%s" % (self.other_user, self.room_id1),
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 5)
- self.assertEqual(len(channel.json_body["event_reports"]), 5)
- self.assertNotIn("next_token", channel.json_body)
- self._check_fields(channel.json_body["event_reports"])
- for report in channel.json_body["event_reports"]:
- self.assertEqual(report["user_id"], self.other_user)
- self.assertEqual(report["room_id"], self.room_id1)
- def test_valid_search_order(self) -> None:
- """
- Testing search order. Order by timestamps.
- """
- # fetch the most recent first, largest timestamp
- channel = self.make_request(
- "GET",
- self.url + "?dir=b",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 20)
- report = 1
- while report < len(channel.json_body["event_reports"]):
- self.assertGreaterEqual(
- channel.json_body["event_reports"][report - 1]["received_ts"],
- channel.json_body["event_reports"][report]["received_ts"],
- )
- report += 1
- # fetch the oldest first, smallest timestamp
- channel = self.make_request(
- "GET",
- self.url + "?dir=f",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 20)
- report = 1
- while report < len(channel.json_body["event_reports"]):
- self.assertLessEqual(
- channel.json_body["event_reports"][report - 1]["received_ts"],
- channel.json_body["event_reports"][report]["received_ts"],
- )
- report += 1
- def test_invalid_search_order(self) -> None:
- """
- Testing that a invalid search order returns a HTTPStatus.BAD_REQUEST
- """
- channel = self.make_request(
- "GET",
- self.url + "?dir=bar",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.BAD_REQUEST,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"])
- self.assertEqual("Unknown direction: bar", channel.json_body["error"])
- def test_limit_is_negative(self) -> None:
- """
- Testing that a negative limit parameter returns a HTTPStatus.BAD_REQUEST
- """
- channel = self.make_request(
- "GET",
- self.url + "?limit=-5",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.BAD_REQUEST,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"])
- def test_from_is_negative(self) -> None:
- """
- Testing that a negative from parameter returns a HTTPStatus.BAD_REQUEST
- """
- channel = self.make_request(
- "GET",
- self.url + "?from=-5",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.BAD_REQUEST,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"])
- def test_next_token(self) -> None:
- """
- Testing that `next_token` appears at the right place
- """
- # `next_token` does not appear
- # Number of results is the number of entries
- channel = self.make_request(
- "GET",
- self.url + "?limit=20",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 20)
- self.assertNotIn("next_token", channel.json_body)
- # `next_token` does not appear
- # Number of max results is larger than the number of entries
- channel = self.make_request(
- "GET",
- self.url + "?limit=21",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 20)
- self.assertNotIn("next_token", channel.json_body)
- # `next_token` does appear
- # Number of max results is smaller than the number of entries
- channel = self.make_request(
- "GET",
- self.url + "?limit=19",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 19)
- self.assertEqual(channel.json_body["next_token"], 19)
- # Check
- # Set `from` to value of `next_token` for request remaining entries
- # `next_token` does not appear
- channel = self.make_request(
- "GET",
- self.url + "?from=19",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self.assertEqual(channel.json_body["total"], 20)
- self.assertEqual(len(channel.json_body["event_reports"]), 1)
- self.assertNotIn("next_token", channel.json_body)
- def _create_event_and_report(self, room_id: str, user_tok: str) -> None:
- """Create and report events"""
- 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),
- {"score": -100, "reason": "this makes me sad"},
- access_token=user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- def _create_event_and_report_without_parameters(
- self, room_id: str, user_tok: str
- ) -> None:
- """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),
- {},
- access_token=user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- def _check_fields(self, content: List[JsonDict]) -> None:
- """Checks that all attributes are present in an event report"""
- for c in content:
- self.assertIn("id", c)
- self.assertIn("received_ts", c)
- self.assertIn("room_id", c)
- self.assertIn("event_id", c)
- self.assertIn("user_id", c)
- self.assertIn("sender", c)
- self.assertIn("canonical_alias", c)
- self.assertIn("name", c)
- self.assertIn("score", c)
- self.assertIn("reason", c)
- class EventReportDetailTestCase(unittest.HomeserverTestCase):
- servlets = [
- synapse.rest.admin.register_servlets,
- login.register_servlets,
- room.register_servlets,
- report_event.register_servlets,
- ]
- def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
- self.admin_user = self.register_user("admin", "pass", admin=True)
- self.admin_user_tok = self.login("admin", "pass")
- self.other_user = self.register_user("user", "pass")
- self.other_user_tok = self.login("user", "pass")
- self.room_id1 = self.helper.create_room_as(
- self.other_user, tok=self.other_user_tok, is_public=True
- )
- self.helper.join(self.room_id1, user=self.admin_user, tok=self.admin_user_tok)
- self._create_event_and_report(
- room_id=self.room_id1,
- user_tok=self.other_user_tok,
- )
- # first created event report gets `id`=2
- self.url = "/_synapse/admin/v1/event_reports/2"
- def test_no_auth(self) -> None:
- """
- Try to get event report without authentication.
- """
- channel = self.make_request("GET", self.url, b"{}")
- self.assertEqual(
- HTTPStatus.UNAUTHORIZED,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.MISSING_TOKEN, channel.json_body["errcode"])
- def test_requester_is_no_admin(self) -> None:
- """
- If the user is not a server admin, an error HTTPStatus.FORBIDDEN is returned.
- """
- channel = self.make_request(
- "GET",
- self.url,
- access_token=self.other_user_tok,
- )
- self.assertEqual(
- HTTPStatus.FORBIDDEN,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.FORBIDDEN, channel.json_body["errcode"])
- def test_default_success(self) -> None:
- """
- Testing get a reported event
- """
- channel = self.make_request(
- "GET",
- self.url,
- access_token=self.admin_user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- self._check_fields(channel.json_body)
- def test_invalid_report_id(self) -> None:
- """
- Testing that an invalid `report_id` returns a HTTPStatus.BAD_REQUEST.
- """
- # `report_id` is negative
- channel = self.make_request(
- "GET",
- "/_synapse/admin/v1/event_reports/-123",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.BAD_REQUEST,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"])
- self.assertEqual(
- "The report_id parameter must be a string representing a positive integer.",
- channel.json_body["error"],
- )
- # `report_id` is a non-numerical string
- channel = self.make_request(
- "GET",
- "/_synapse/admin/v1/event_reports/abcdef",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.BAD_REQUEST,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"])
- self.assertEqual(
- "The report_id parameter must be a string representing a positive integer.",
- channel.json_body["error"],
- )
- # `report_id` is undefined
- channel = self.make_request(
- "GET",
- "/_synapse/admin/v1/event_reports/",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.BAD_REQUEST,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.INVALID_PARAM, channel.json_body["errcode"])
- self.assertEqual(
- "The report_id parameter must be a string representing a positive integer.",
- channel.json_body["error"],
- )
- def test_report_id_not_found(self) -> None:
- """
- Testing that a not existing `report_id` returns a HTTPStatus.NOT_FOUND.
- """
- channel = self.make_request(
- "GET",
- "/_synapse/admin/v1/event_reports/123",
- access_token=self.admin_user_tok,
- )
- self.assertEqual(
- HTTPStatus.NOT_FOUND,
- channel.code,
- msg=channel.json_body,
- )
- self.assertEqual(Codes.NOT_FOUND, channel.json_body["errcode"])
- self.assertEqual("Event report not found", channel.json_body["error"])
- def _create_event_and_report(self, room_id: str, user_tok: str) -> None:
- """Create and report events"""
- 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),
- {"score": -100, "reason": "this makes me sad"},
- access_token=user_tok,
- )
- self.assertEqual(HTTPStatus.OK, channel.code, msg=channel.json_body)
- def _check_fields(self, content: JsonDict) -> None:
- """Checks that all attributes are present in a event report"""
- self.assertIn("id", content)
- self.assertIn("received_ts", content)
- self.assertIn("room_id", content)
- self.assertIn("event_id", content)
- self.assertIn("user_id", content)
- self.assertIn("sender", content)
- self.assertIn("canonical_alias", content)
- self.assertIn("name", content)
- self.assertIn("event_json", content)
- self.assertIn("score", content)
- self.assertIn("reason", content)
- self.assertIn("auth_events", content["event_json"])
- self.assertIn("type", content["event_json"])
- self.assertIn("room_id", content["event_json"])
- self.assertIn("sender", content["event_json"])
- self.assertIn("content", content["event_json"])
|