matrix_sdk_test/sync_builder/
invited_room.rsuse ruma::{
api::client::sync::sync_events::v3::InvitedRoom, events::AnyStrippedStateEvent, serde::Raw,
OwnedRoomId, RoomId,
};
use super::StrippedStateTestEvent;
use crate::DEFAULT_TEST_ROOM_ID;
pub struct InvitedRoomBuilder {
pub(super) room_id: OwnedRoomId,
pub(super) inner: InvitedRoom,
}
impl InvitedRoomBuilder {
pub fn new(room_id: &RoomId) -> Self {
Self { room_id: room_id.to_owned(), inner: Default::default() }
}
pub fn room_id(&self) -> &RoomId {
&self.room_id
}
pub fn add_state_event(mut self, event: StrippedStateTestEvent) -> Self {
self.inner.invite_state.events.push(event.into_raw_event());
self
}
pub fn add_state_bulk<I>(mut self, events: I) -> Self
where
I: IntoIterator<Item = Raw<AnyStrippedStateEvent>>,
{
self.inner.invite_state.events.extend(events);
self
}
}
impl Default for InvitedRoomBuilder {
fn default() -> Self {
Self::new(&DEFAULT_TEST_ROOM_ID)
}
}