2020-04-29 13:30:36 +02:00
|
|
|
# Copyright 2018 New Vector Ltd
|
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C
|
|
|
|
#
|
|
|
|
# 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.
|
2023-02-08 22:29:49 +01:00
|
|
|
from typing import Any, List, Optional, Tuple
|
2020-04-29 13:30:36 +02:00
|
|
|
|
|
|
|
import synapse.server
|
|
|
|
from synapse.api.constants import EventTypes
|
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS
|
|
|
|
from synapse.events import EventBase
|
2020-05-05 15:17:27 +02:00
|
|
|
from synapse.events.snapshot import EventContext
|
2020-04-29 13:30:36 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
Utility functions for poking events into the storage of the server under test.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2020-07-22 18:29:15 +02:00
|
|
|
async def inject_member_event(
|
2020-04-29 13:30:36 +02:00
|
|
|
hs: synapse.server.HomeServer,
|
|
|
|
room_id: str,
|
|
|
|
sender: str,
|
|
|
|
membership: str,
|
|
|
|
target: Optional[str] = None,
|
|
|
|
extra_content: Optional[dict] = None,
|
2023-02-08 22:29:49 +01:00
|
|
|
**kwargs: Any,
|
2020-04-29 13:30:36 +02:00
|
|
|
) -> EventBase:
|
|
|
|
"""Inject a membership event into a room."""
|
|
|
|
if target is None:
|
|
|
|
target = sender
|
|
|
|
|
|
|
|
content = {"membership": membership}
|
|
|
|
if extra_content:
|
|
|
|
content.update(extra_content)
|
|
|
|
|
2020-07-22 18:29:15 +02:00
|
|
|
return await inject_event(
|
2020-04-29 13:30:36 +02:00
|
|
|
hs,
|
|
|
|
room_id=room_id,
|
|
|
|
type=EventTypes.Member,
|
|
|
|
sender=sender,
|
|
|
|
state_key=target,
|
|
|
|
content=content,
|
2020-10-28 00:26:36 +01:00
|
|
|
**kwargs,
|
2020-04-29 13:30:36 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-07-22 18:29:15 +02:00
|
|
|
async def inject_event(
|
2020-04-29 13:30:36 +02:00
|
|
|
hs: synapse.server.HomeServer,
|
|
|
|
room_version: Optional[str] = None,
|
2020-09-01 14:39:04 +02:00
|
|
|
prev_event_ids: Optional[List[str]] = None,
|
2023-02-08 22:29:49 +01:00
|
|
|
**kwargs: Any,
|
2020-04-29 13:30:36 +02:00
|
|
|
) -> EventBase:
|
|
|
|
"""Inject a generic event into a room
|
|
|
|
|
|
|
|
Args:
|
|
|
|
hs: the homeserver under test
|
|
|
|
room_version: the version of the room we're inserting into.
|
|
|
|
if not specified, will be looked up
|
|
|
|
prev_event_ids: prev_events for the event. If not specified, will be looked up
|
|
|
|
kwargs: fields for the event to be created
|
|
|
|
"""
|
2020-07-22 18:29:15 +02:00
|
|
|
event, context = await create_event(hs, room_version, prev_event_ids, **kwargs)
|
2020-05-05 15:17:27 +02:00
|
|
|
|
2022-05-31 14:17:50 +02:00
|
|
|
persistence = hs.get_storage_controllers().persistence
|
2020-09-11 13:22:55 +02:00
|
|
|
assert persistence is not None
|
|
|
|
|
|
|
|
await persistence.persist_event(event, context)
|
2020-05-05 15:17:27 +02:00
|
|
|
|
|
|
|
return event
|
|
|
|
|
|
|
|
|
2020-07-22 18:29:15 +02:00
|
|
|
async def create_event(
|
2020-05-05 15:17:27 +02:00
|
|
|
hs: synapse.server.HomeServer,
|
|
|
|
room_version: Optional[str] = None,
|
2020-09-01 14:39:04 +02:00
|
|
|
prev_event_ids: Optional[List[str]] = None,
|
2023-02-08 22:29:49 +01:00
|
|
|
**kwargs: Any,
|
2020-05-05 15:17:27 +02:00
|
|
|
) -> Tuple[EventBase, EventContext]:
|
2020-04-29 13:30:36 +02:00
|
|
|
if room_version is None:
|
2022-02-23 12:04:02 +01:00
|
|
|
room_version = await hs.get_datastores().main.get_room_version_id(
|
|
|
|
kwargs["room_id"]
|
|
|
|
)
|
2020-04-29 13:30:36 +02:00
|
|
|
|
|
|
|
builder = hs.get_event_builder_factory().for_room_version(
|
|
|
|
KNOWN_ROOM_VERSIONS[room_version], kwargs
|
|
|
|
)
|
2023-02-09 22:05:02 +01:00
|
|
|
(
|
|
|
|
event,
|
|
|
|
unpersisted_context,
|
|
|
|
) = await hs.get_event_creation_handler().create_new_client_event(
|
2020-04-29 13:30:36 +02:00
|
|
|
builder, prev_event_ids=prev_event_ids
|
|
|
|
)
|
|
|
|
|
2023-02-09 22:05:02 +01:00
|
|
|
context = await unpersisted_context.persist(event)
|
|
|
|
|
2020-05-05 15:17:27 +02:00
|
|
|
return event, context
|
2023-03-13 13:31:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
async def mark_event_as_partial_state(
|
|
|
|
hs: synapse.server.HomeServer,
|
|
|
|
event_id: str,
|
|
|
|
room_id: str,
|
|
|
|
) -> None:
|
|
|
|
"""
|
|
|
|
(Falsely) mark an event as having partial state.
|
|
|
|
|
|
|
|
Naughty, but occasionally useful when checking that partial state doesn't
|
|
|
|
block something from happening.
|
|
|
|
|
|
|
|
If the event already has partial state, this insert will fail (event_id is unique
|
|
|
|
in this table).
|
|
|
|
"""
|
|
|
|
store = hs.get_datastores().main
|
|
|
|
await store.db_pool.simple_upsert(
|
|
|
|
table="partial_state_rooms",
|
|
|
|
keyvalues={"room_id": room_id},
|
|
|
|
values={},
|
|
|
|
insertion_values={"room_id": room_id},
|
|
|
|
)
|
|
|
|
|
|
|
|
await store.db_pool.simple_insert(
|
|
|
|
table="partial_state_events",
|
|
|
|
values={
|
|
|
|
"room_id": room_id,
|
|
|
|
"event_id": event_id,
|
|
|
|
},
|
|
|
|
)
|