forked-synapse/tests/events/test_utils.py

285 lines
8.4 KiB
Python
Raw Normal View History

2015-10-16 18:56:46 +00:00
# -*- coding: utf-8 -*-
2016-01-07 04:26:29 +00:00
# Copyright 2015, 2016 OpenMarket Ltd
2015-10-16 18:56:46 +00:00
#
# 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 synapse.events import FrozenEvent
from synapse.events.utils import (
copy_power_levels_contents,
prune_event,
serialize_event,
)
from synapse.util.frozenutils import freeze
2016-11-21 17:52:45 +00:00
from tests import unittest
2018-07-09 06:09:20 +00:00
2016-11-21 17:52:45 +00:00
def MockEvent(**kwargs):
2017-01-13 13:16:54 +00:00
if "event_id" not in kwargs:
kwargs["event_id"] = "fake_event_id"
if "type" not in kwargs:
kwargs["type"] = "fake_type"
2016-11-21 17:52:45 +00:00
return FrozenEvent(kwargs)
2015-10-16 18:56:46 +00:00
2016-02-19 15:34:38 +00:00
2015-10-16 18:56:46 +00:00
class PruneEventTestCase(unittest.TestCase):
""" Asserts that a new event constructed with `evdict` will look like
`matchdict` when it is redacted. """
2018-08-10 13:54:09 +00:00
2015-10-16 18:56:46 +00:00
def run_test(self, evdict, matchdict):
2018-08-10 13:54:09 +00:00
self.assertEquals(prune_event(FrozenEvent(evdict)).get_dict(), matchdict)
2015-10-16 18:56:46 +00:00
def test_minimal(self):
self.run_test(
2019-06-20 09:32:02 +00:00
{"type": "A", "event_id": "$test:domain"},
2017-01-13 13:16:54 +00:00
{
2019-06-20 09:32:02 +00:00
"type": "A",
"event_id": "$test:domain",
"content": {},
"signatures": {},
"unsigned": {},
2018-08-10 13:54:09 +00:00
},
2015-10-16 18:56:46 +00:00
)
def test_basic_keys(self):
self.run_test(
{
2019-06-20 09:32:02 +00:00
"type": "A",
"room_id": "!1:domain",
"sender": "@2:domain",
"event_id": "$3:domain",
"origin": "domain",
2015-10-16 18:56:46 +00:00
},
{
2019-06-20 09:32:02 +00:00
"type": "A",
"room_id": "!1:domain",
"sender": "@2:domain",
"event_id": "$3:domain",
"origin": "domain",
"content": {},
"signatures": {},
"unsigned": {},
2018-08-10 13:54:09 +00:00
},
2015-10-16 18:56:46 +00:00
)
def test_unsigned_age_ts(self):
self.run_test(
2019-06-20 09:32:02 +00:00
{"type": "B", "event_id": "$test:domain", "unsigned": {"age_ts": 20}},
2015-10-16 18:56:46 +00:00
{
2019-06-20 09:32:02 +00:00
"type": "B",
"event_id": "$test:domain",
"content": {},
"signatures": {},
"unsigned": {"age_ts": 20},
2018-08-10 13:54:09 +00:00
},
2015-10-16 18:56:46 +00:00
)
self.run_test(
{
2019-06-20 09:32:02 +00:00
"type": "B",
"event_id": "$test:domain",
"unsigned": {"other_key": "here"},
2015-10-16 18:56:46 +00:00
},
{
2019-06-20 09:32:02 +00:00
"type": "B",
"event_id": "$test:domain",
"content": {},
"signatures": {},
"unsigned": {},
2018-08-10 13:54:09 +00:00
},
2015-10-16 18:56:46 +00:00
)
def test_content(self):
self.run_test(
2019-06-20 09:32:02 +00:00
{"type": "C", "event_id": "$test:domain", "content": {"things": "here"}},
2015-10-16 18:56:46 +00:00
{
2019-06-20 09:32:02 +00:00
"type": "C",
"event_id": "$test:domain",
"content": {},
"signatures": {},
"unsigned": {},
2018-08-10 13:54:09 +00:00
},
2015-10-16 18:56:46 +00:00
)
self.run_test(
{
2019-06-20 09:32:02 +00:00
"type": "m.room.create",
"event_id": "$test:domain",
"content": {"creator": "@2:domain", "other_field": "here"},
2015-10-16 18:56:46 +00:00
},
{
2019-06-20 09:32:02 +00:00
"type": "m.room.create",
"event_id": "$test:domain",
"content": {"creator": "@2:domain"},
"signatures": {},
"unsigned": {},
2018-08-10 13:54:09 +00:00
},
2015-10-16 18:56:46 +00:00
)
class SerializeEventTestCase(unittest.TestCase):
2016-11-21 17:52:45 +00:00
def serialize(self, ev, fields):
2016-11-22 09:59:27 +00:00
return serialize_event(ev, 1479807801915, only_event_fields=fields)
2016-11-21 17:52:45 +00:00
def test_event_fields_works_with_keys(self):
2016-11-21 17:52:45 +00:00
self.assertEquals(
self.serialize(
2018-08-10 13:54:09 +00:00
MockEvent(sender="@alice:localhost", room_id="!foo:bar"), ["room_id"]
2016-11-21 17:52:45 +00:00
),
2018-08-10 13:54:09 +00:00
{"room_id": "!foo:bar"},
2016-11-21 17:52:45 +00:00
)
def test_event_fields_works_with_nested_keys(self):
2016-11-21 17:52:45 +00:00
self.assertEquals(
self.serialize(
MockEvent(
sender="@alice:localhost",
room_id="!foo:bar",
2018-08-10 13:54:09 +00:00
content={"body": "A message"},
2016-11-21 17:52:45 +00:00
),
2018-08-10 13:54:09 +00:00
["content.body"],
2016-11-21 17:52:45 +00:00
),
2018-08-10 13:54:09 +00:00
{"content": {"body": "A message"}},
2016-11-21 17:52:45 +00:00
)
def test_event_fields_works_with_dot_keys(self):
2016-11-21 17:58:22 +00:00
self.assertEquals(
self.serialize(
MockEvent(
sender="@alice:localhost",
room_id="!foo:bar",
2018-08-10 13:54:09 +00:00
content={"key.with.dots": {}},
2016-11-21 17:58:22 +00:00
),
[r"content.key\.with\.dots"],
2016-11-21 17:58:22 +00:00
),
2018-08-10 13:54:09 +00:00
{"content": {"key.with.dots": {}}},
2016-11-21 17:58:22 +00:00
)
def test_event_fields_works_with_nested_dot_keys(self):
2016-11-21 17:58:22 +00:00
self.assertEquals(
self.serialize(
MockEvent(
sender="@alice:localhost",
room_id="!foo:bar",
content={
"not_me": 1,
2018-08-10 13:54:09 +00:00
"nested.dot.key": {"leaf.key": 42, "not_me_either": 1},
2016-11-21 17:58:22 +00:00
},
),
[r"content.nested\.dot\.key.leaf\.key"],
2016-11-21 17:58:22 +00:00
),
2018-08-10 13:54:09 +00:00
{"content": {"nested.dot.key": {"leaf.key": 42}}},
2016-11-21 17:58:22 +00:00
)
def test_event_fields_nops_with_unknown_keys(self):
2016-11-21 17:58:22 +00:00
self.assertEquals(
self.serialize(
MockEvent(
sender="@alice:localhost",
room_id="!foo:bar",
2018-08-10 13:54:09 +00:00
content={"foo": "bar"},
2016-11-21 17:58:22 +00:00
),
2018-08-10 13:54:09 +00:00
["content.foo", "content.notexists"],
2016-11-21 17:58:22 +00:00
),
2018-08-10 13:54:09 +00:00
{"content": {"foo": "bar"}},
2016-11-21 17:58:22 +00:00
)
def test_event_fields_nops_with_non_dict_keys(self):
2016-11-21 17:58:22 +00:00
self.assertEquals(
self.serialize(
MockEvent(
sender="@alice:localhost",
room_id="!foo:bar",
2018-08-10 13:54:09 +00:00
content={"foo": ["I", "am", "an", "array"]},
2016-11-21 17:58:22 +00:00
),
2018-08-10 13:54:09 +00:00
["content.foo.am"],
2016-11-21 17:58:22 +00:00
),
2018-08-10 13:54:09 +00:00
{},
2016-11-21 17:58:22 +00:00
)
2016-11-22 09:59:27 +00:00
def test_event_fields_nops_with_array_keys(self):
self.assertEquals(
self.serialize(
MockEvent(
sender="@alice:localhost",
room_id="!foo:bar",
2018-08-10 13:54:09 +00:00
content={"foo": ["I", "am", "an", "array"]},
2016-11-22 09:59:27 +00:00
),
2018-08-10 13:54:09 +00:00
["content.foo.1"],
2016-11-22 09:59:27 +00:00
),
2018-08-10 13:54:09 +00:00
{},
2016-11-22 09:59:27 +00:00
)
def test_event_fields_all_fields_if_empty(self):
self.assertEquals(
self.serialize(
MockEvent(
2017-01-13 13:16:54 +00:00
type="foo",
event_id="test",
2016-11-22 09:59:27 +00:00
room_id="!foo:bar",
2018-08-10 13:54:09 +00:00
content={"foo": "bar"},
2016-11-22 09:59:27 +00:00
),
2018-08-10 13:54:09 +00:00
[],
2016-11-22 09:59:27 +00:00
),
{
2017-01-13 13:16:54 +00:00
"type": "foo",
"event_id": "test",
2016-11-22 09:59:27 +00:00
"room_id": "!foo:bar",
2018-08-10 13:54:09 +00:00
"content": {"foo": "bar"},
"unsigned": {},
},
2016-11-22 09:59:27 +00:00
)
def test_event_fields_fail_if_fields_not_str(self):
2016-11-22 13:42:11 +00:00
with self.assertRaises(TypeError):
2016-11-22 09:59:27 +00:00
self.serialize(
2018-08-10 13:54:09 +00:00
MockEvent(room_id="!foo:bar", content={"foo": "bar"}), ["room_id", 4]
2016-11-22 13:42:11 +00:00
)
class CopyPowerLevelsContentTestCase(unittest.TestCase):
def setUp(self) -> None:
self.test_content = {
"ban": 50,
"events": {"m.room.name": 100, "m.room.power_levels": 100},
"events_default": 0,
"invite": 50,
"kick": 50,
"notifications": {"room": 20},
"redact": 50,
"state_default": 50,
"users": {"@example:localhost": 100},
"users_default": 0,
}
def _test(self, input):
a = copy_power_levels_contents(input)
self.assertEqual(a["ban"], 50)
self.assertEqual(a["events"]["m.room.name"], 100)
# make sure that changing the copy changes the copy and not the orig
a["ban"] = 10
a["events"]["m.room.power_levels"] = 20
self.assertEqual(input["ban"], 50)
self.assertEqual(input["events"]["m.room.power_levels"], 100)
def test_unfrozen(self):
self._test(self.test_content)
def test_frozen(self):
input = freeze(self.test_content)
self._test(input)