2020-04-07 00:59:44 +00:00
|
|
|
#![cfg(test)]
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
use std::fs;
|
|
|
|
use std::panic;
|
2020-04-07 12:55:42 +00:00
|
|
|
use std::path::Path;
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
use crate::events::{
|
2020-04-07 12:55:42 +00:00
|
|
|
collections::{
|
|
|
|
all::{RoomEvent, StateEvent},
|
|
|
|
only::Event,
|
|
|
|
},
|
2020-04-07 00:59:44 +00:00
|
|
|
presence::PresenceEvent,
|
2020-04-23 08:52:47 +00:00
|
|
|
EventJson, TryFromRaw,
|
2020-04-07 00:59:44 +00:00
|
|
|
};
|
2020-04-07 12:55:42 +00:00
|
|
|
use crate::identifiers::{RoomId, UserId};
|
2020-04-26 21:27:06 +00:00
|
|
|
use crate::{AsyncClient, Error, SyncSettings};
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-22 21:39:57 +00:00
|
|
|
use mockito::{self, mock, Matcher, Mock};
|
2020-04-07 00:59:44 +00:00
|
|
|
|
|
|
|
use crate::models::Room;
|
|
|
|
|
2020-04-07 20:11:35 +00:00
|
|
|
/// Easily create events to stream into either a Client or a `Room` for testing.
|
2020-04-07 00:59:44 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct EventBuilder {
|
|
|
|
/// The events that determine the state of a `Room`.
|
|
|
|
room_events: Vec<RoomEvent>,
|
|
|
|
/// The presence events that determine the presence state of a `RoomMember`.
|
|
|
|
presence_events: Vec<PresenceEvent>,
|
|
|
|
/// The state events that determine the state of a `Room`.
|
|
|
|
state_events: Vec<StateEvent>,
|
2020-04-07 12:55:42 +00:00
|
|
|
/// The ephemeral room events that determine the state of a `Room`.
|
|
|
|
ephemeral: Vec<Event>,
|
|
|
|
/// The account data events that determine the state of a `Room`.
|
|
|
|
account_data: Vec<Event>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct RoomTestRunner {
|
|
|
|
/// Used To test the models
|
|
|
|
room: Option<Room>,
|
|
|
|
/// The ephemeral room events that determine the state of a `Room`.
|
|
|
|
ephemeral: Vec<Event>,
|
|
|
|
/// The account data events that determine the state of a `Room`.
|
|
|
|
account_data: Vec<Event>,
|
|
|
|
/// The events that determine the state of a `Room`.
|
|
|
|
room_events: Vec<RoomEvent>,
|
|
|
|
/// The presence events that determine the presence state of a `RoomMember`.
|
|
|
|
presence_events: Vec<PresenceEvent>,
|
2020-04-07 00:59:44 +00:00
|
|
|
/// The state events that determine the state of a `Room`.
|
2020-04-07 12:55:42 +00:00
|
|
|
state_events: Vec<StateEvent>,
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 13:47:36 +00:00
|
|
|
pub struct ClientTestRunner {
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Used when testing the whole client
|
2020-04-21 13:47:36 +00:00
|
|
|
client: Option<AsyncClient>,
|
2020-04-07 12:55:42 +00:00
|
|
|
/// RoomId and UserId to use for the events.
|
2020-04-07 00:59:44 +00:00
|
|
|
///
|
2020-04-07 12:55:42 +00:00
|
|
|
/// The RoomId must match the RoomId of the events to track.
|
|
|
|
room_user_id: (RoomId, UserId),
|
|
|
|
/// The ephemeral room events that determine the state of a `Room`.
|
|
|
|
ephemeral: Vec<Event>,
|
|
|
|
/// The account data events that determine the state of a `Room`.
|
|
|
|
account_data: Vec<Event>,
|
2020-04-07 00:59:44 +00:00
|
|
|
/// The events that determine the state of a `Room`.
|
|
|
|
room_events: Vec<RoomEvent>,
|
|
|
|
/// The presence events that determine the presence state of a `RoomMember`.
|
|
|
|
presence_events: Vec<PresenceEvent>,
|
|
|
|
/// The state events that determine the state of a `Room`.
|
|
|
|
state_events: Vec<StateEvent>,
|
2020-04-07 12:55:42 +00:00
|
|
|
}
|
2020-04-07 20:11:35 +00:00
|
|
|
|
2020-04-07 12:55:42 +00:00
|
|
|
#[allow(dead_code)]
|
2020-04-21 13:47:36 +00:00
|
|
|
pub struct MockTestRunner {
|
2020-04-07 12:55:42 +00:00
|
|
|
/// Used when testing the whole client
|
2020-04-21 13:47:36 +00:00
|
|
|
client: Option<AsyncClient>,
|
2020-04-07 12:55:42 +00:00
|
|
|
/// The ephemeral room events that determine the state of a `Room`.
|
|
|
|
ephemeral: Vec<Event>,
|
|
|
|
/// The account data events that determine the state of a `Room`.
|
|
|
|
account_data: Vec<Event>,
|
|
|
|
/// The events that determine the state of a `Room`.
|
|
|
|
room_events: Vec<RoomEvent>,
|
|
|
|
/// The presence events that determine the presence state of a `RoomMember`.
|
|
|
|
presence_events: Vec<PresenceEvent>,
|
|
|
|
/// The state events that determine the state of a `Room`.
|
|
|
|
state_events: Vec<StateEvent>,
|
2020-04-07 00:59:44 +00:00
|
|
|
/// `mokito::Mock`
|
|
|
|
mock: Option<mockito::Mock>,
|
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
impl EventBuilder {
|
2020-04-07 12:55:42 +00:00
|
|
|
/// Add an event to the room events `Vec`.
|
|
|
|
pub fn add_ephemeral_from_file<Ev: TryFromRaw, P: AsRef<Path>>(
|
|
|
|
mut self,
|
|
|
|
path: P,
|
|
|
|
variant: fn(Ev) -> Event,
|
|
|
|
) -> Self {
|
|
|
|
let val = fs::read_to_string(path.as_ref())
|
2020-04-27 10:12:51 +00:00
|
|
|
.unwrap_or_else(|_| panic!("file not found {:?}", path.as_ref()));
|
2020-04-23 08:52:47 +00:00
|
|
|
let event = serde_json::from_str::<EventJson<Ev>>(&val)
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap()
|
2020-04-23 08:52:47 +00:00
|
|
|
.deserialize()
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap();
|
|
|
|
self.ephemeral.push(variant(event));
|
2020-04-07 00:59:44 +00:00
|
|
|
self
|
2020-04-06 11:12:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Add an event to the room events `Vec`.
|
2020-04-07 12:55:42 +00:00
|
|
|
pub fn add_account_from_file<Ev: TryFromRaw, P: AsRef<Path>>(
|
|
|
|
mut self,
|
|
|
|
path: P,
|
|
|
|
variant: fn(Ev) -> Event,
|
|
|
|
) -> Self {
|
|
|
|
let val = fs::read_to_string(path.as_ref())
|
2020-04-27 10:12:51 +00:00
|
|
|
.unwrap_or_else(|_| panic!("file not found {:?}", path.as_ref()));
|
2020-04-23 08:52:47 +00:00
|
|
|
let event = serde_json::from_str::<EventJson<Ev>>(&val)
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap()
|
2020-04-23 08:52:47 +00:00
|
|
|
.deserialize()
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap();
|
|
|
|
self.account_data.push(variant(event));
|
2020-04-07 00:59:44 +00:00
|
|
|
self
|
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Add an event to the room events `Vec`.
|
2020-04-07 12:55:42 +00:00
|
|
|
pub fn add_room_event_from_file<Ev: TryFromRaw, P: AsRef<Path>>(
|
|
|
|
mut self,
|
|
|
|
path: P,
|
|
|
|
variant: fn(Ev) -> RoomEvent,
|
|
|
|
) -> Self {
|
|
|
|
let val = fs::read_to_string(path.as_ref())
|
2020-04-27 10:12:51 +00:00
|
|
|
.unwrap_or_else(|_| panic!("file not found {:?}", path.as_ref()));
|
2020-04-23 08:52:47 +00:00
|
|
|
let event = serde_json::from_str::<EventJson<Ev>>(&val)
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap()
|
2020-04-23 08:52:47 +00:00
|
|
|
.deserialize()
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap();
|
2020-04-07 00:59:44 +00:00
|
|
|
self.room_events.push(variant(event));
|
|
|
|
self
|
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Add a state event to the state events `Vec`.
|
2020-04-07 12:55:42 +00:00
|
|
|
pub fn add_state_event_from_file<Ev: TryFromRaw, P: AsRef<Path>>(
|
|
|
|
mut self,
|
|
|
|
path: P,
|
|
|
|
variant: fn(Ev) -> StateEvent,
|
|
|
|
) -> Self {
|
|
|
|
let val = fs::read_to_string(path.as_ref())
|
2020-04-27 10:12:51 +00:00
|
|
|
.unwrap_or_else(|_| panic!("file not found {:?}", path.as_ref()));
|
2020-04-23 08:52:47 +00:00
|
|
|
let event = serde_json::from_str::<EventJson<Ev>>(&val)
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap()
|
2020-04-23 08:52:47 +00:00
|
|
|
.deserialize()
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap();
|
2020-04-07 00:59:44 +00:00
|
|
|
self.state_events.push(variant(event));
|
|
|
|
self
|
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Add a presence event to the presence events `Vec`.
|
|
|
|
pub fn add_presence_event_from_file<P: AsRef<Path>>(mut self, path: P) -> Self {
|
2020-04-07 12:55:42 +00:00
|
|
|
let val = fs::read_to_string(path.as_ref())
|
2020-04-27 10:12:51 +00:00
|
|
|
.unwrap_or_else(|_| panic!("file not found {:?}", path.as_ref()));
|
2020-04-23 08:52:47 +00:00
|
|
|
let event = serde_json::from_str::<EventJson<PresenceEvent>>(&val)
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap()
|
2020-04-23 08:52:47 +00:00
|
|
|
.deserialize()
|
2020-04-07 12:55:42 +00:00
|
|
|
.unwrap();
|
2020-04-07 00:59:44 +00:00
|
|
|
self.presence_events.push(event);
|
|
|
|
self
|
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-23 13:55:59 +00:00
|
|
|
/// Consumes `ResponseBuilder and returns a `TestRunner`.
|
|
|
|
///
|
|
|
|
/// The `TestRunner` responds to requests made by the `AsyncClient`.
|
|
|
|
pub fn build_with_response<M, P>(mut self, path: P, method: &str, matcher: M) -> MockTestRunner
|
|
|
|
where
|
|
|
|
M: Into<mockito::Matcher>,
|
|
|
|
P: AsRef<Path>,
|
|
|
|
{
|
|
|
|
let body = fs::read_to_string(path.as_ref())
|
2020-04-27 10:12:51 +00:00
|
|
|
.unwrap_or_else(|_| panic!("file not found {:?}", path.as_ref()));
|
2020-04-23 13:55:59 +00:00
|
|
|
let mock = Some(
|
|
|
|
mock(method, matcher)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body(body)
|
|
|
|
.create(),
|
|
|
|
);
|
|
|
|
MockTestRunner {
|
|
|
|
client: None,
|
|
|
|
ephemeral: Vec::new(),
|
|
|
|
account_data: Vec::new(),
|
|
|
|
room_events: Vec::new(),
|
|
|
|
presence_events: Vec::new(),
|
|
|
|
state_events: Vec::new(),
|
|
|
|
mock,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Consumes `ResponseBuilder and returns a `TestRunner`.
|
2020-04-07 12:55:42 +00:00
|
|
|
///
|
2020-04-07 00:59:44 +00:00
|
|
|
/// The `TestRunner` streams the events to the client and holds methods to make assertions
|
|
|
|
/// about the state of the client.
|
2020-04-22 21:39:57 +00:00
|
|
|
pub fn build_mock_runner<P: Into<Matcher>>(mut self, method: &str, path: P) -> MockTestRunner {
|
2020-04-07 12:55:42 +00:00
|
|
|
let body = serde_json::json! {
|
|
|
|
{
|
|
|
|
"device_one_time_keys_count": {},
|
|
|
|
"next_batch": "s526_47314_0_7_1_1_1_11444_1",
|
|
|
|
"device_lists": {
|
|
|
|
"changed": [],
|
|
|
|
"left": []
|
|
|
|
},
|
|
|
|
"rooms": {
|
|
|
|
"invite": {},
|
|
|
|
"join": {
|
|
|
|
"!SVkFJHzfwvuaIEawgC:localhost": {
|
|
|
|
"summary": {},
|
|
|
|
"account_data": {
|
|
|
|
"events": self.account_data
|
|
|
|
},
|
|
|
|
"ephemeral": {
|
|
|
|
"events": self.ephemeral
|
|
|
|
},
|
|
|
|
"state": {
|
|
|
|
"events": self.state_events
|
|
|
|
},
|
|
|
|
"timeline": {
|
|
|
|
"events": self.room_events,
|
|
|
|
"limited": true,
|
|
|
|
"prev_batch": "t392-516_47314_0_7_1_1_1_11444_1"
|
|
|
|
},
|
|
|
|
"unread_notifications": {
|
|
|
|
"highlight_count": 0,
|
|
|
|
"notification_count": 11
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"leave": {}
|
|
|
|
},
|
|
|
|
"to_device": {
|
|
|
|
"events": []
|
|
|
|
},
|
|
|
|
"presence": {
|
|
|
|
"events": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let mock = Some(
|
|
|
|
mock(method, path)
|
|
|
|
.with_status(200)
|
|
|
|
.with_body(body.to_string())
|
|
|
|
.create(),
|
|
|
|
);
|
|
|
|
MockTestRunner {
|
2020-04-07 00:59:44 +00:00
|
|
|
client: None,
|
2020-04-07 12:55:42 +00:00
|
|
|
ephemeral: Vec::new(),
|
|
|
|
account_data: Vec::new(),
|
2020-04-07 00:59:44 +00:00
|
|
|
room_events: Vec::new(),
|
|
|
|
presence_events: Vec::new(),
|
|
|
|
state_events: Vec::new(),
|
|
|
|
mock,
|
2020-04-06 11:12:02 +00:00
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Consumes `ResponseBuilder and returns a `TestRunner`.
|
2020-04-07 12:55:42 +00:00
|
|
|
///
|
|
|
|
/// The `TestRunner` streams the events to the `AsyncClient` and holds methods to make assertions
|
|
|
|
/// about the state of the `AsyncClient`.
|
2020-04-21 13:47:36 +00:00
|
|
|
pub fn build_client_runner(self, room_id: RoomId, user_id: UserId) -> ClientTestRunner {
|
2020-04-07 12:55:42 +00:00
|
|
|
ClientTestRunner {
|
2020-04-07 00:59:44 +00:00
|
|
|
client: None,
|
2020-04-07 12:55:42 +00:00
|
|
|
room_user_id: (room_id, user_id),
|
|
|
|
ephemeral: self.ephemeral,
|
|
|
|
account_data: self.account_data,
|
2020-04-07 00:59:44 +00:00
|
|
|
room_events: self.room_events,
|
|
|
|
presence_events: self.presence_events,
|
|
|
|
state_events: self.state_events,
|
2020-04-06 11:12:02 +00:00
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 12:55:42 +00:00
|
|
|
/// Consumes `ResponseBuilder and returns a `TestRunner`.
|
|
|
|
///
|
|
|
|
/// The `TestRunner` streams the events to the `Room` and holds methods to make assertions
|
|
|
|
/// about the state of the `Room`.
|
|
|
|
pub fn build_room_runner(self, room_id: &RoomId, user_id: &UserId) -> RoomTestRunner {
|
|
|
|
RoomTestRunner {
|
|
|
|
room: Some(Room::new(room_id, user_id)),
|
|
|
|
ephemeral: self.ephemeral,
|
|
|
|
account_data: self.account_data,
|
|
|
|
room_events: self.room_events,
|
|
|
|
presence_events: self.presence_events,
|
|
|
|
state_events: self.state_events,
|
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
2020-04-07 12:55:42 +00:00
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 12:55:42 +00:00
|
|
|
impl RoomTestRunner {
|
2020-04-07 00:59:44 +00:00
|
|
|
/// Set `Room`
|
2020-04-07 20:11:35 +00:00
|
|
|
pub fn set_room(&mut self, room: Room) -> &mut Self {
|
2020-04-07 00:59:44 +00:00
|
|
|
self.room = Some(room);
|
|
|
|
self
|
|
|
|
}
|
2020-04-06 19:29:38 +00:00
|
|
|
|
2020-04-07 20:11:35 +00:00
|
|
|
fn stream_room_events(&mut self) {
|
|
|
|
let room = self
|
|
|
|
.room
|
|
|
|
.as_mut()
|
|
|
|
.expect("`Room` must be set use `RoomTestRunner::set_room`");
|
2020-04-07 12:55:42 +00:00
|
|
|
for event in &self.account_data {
|
2020-04-07 00:59:44 +00:00
|
|
|
match event {
|
|
|
|
// Event::IgnoredUserList(iu) => room.handle_ignored_users(iu),
|
2020-04-07 12:55:42 +00:00
|
|
|
Event::Presence(p) => room.receive_presence_event(p),
|
2020-04-07 00:59:44 +00:00
|
|
|
// Event::PushRules(pr) => room.handle_push_rules(pr),
|
2020-04-07 12:55:42 +00:00
|
|
|
_ => todo!("implement more account data events"),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
for event in &self.ephemeral {
|
|
|
|
match event {
|
|
|
|
// Event::IgnoredUserList(iu) => room.handle_ignored_users(iu),
|
|
|
|
Event::Presence(p) => room.receive_presence_event(p),
|
|
|
|
// Event::PushRules(pr) => room.handle_push_rules(pr),
|
|
|
|
_ => todo!("implement more account data events"),
|
2020-04-07 00:59:44 +00:00
|
|
|
};
|
2020-04-06 19:29:38 +00:00
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
for event in &self.room_events {
|
2020-04-07 12:55:42 +00:00
|
|
|
room.receive_timeline_event(event);
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
|
|
|
for event in &self.presence_events {
|
2020-04-07 12:55:42 +00:00
|
|
|
room.receive_presence_event(event);
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
|
|
|
for event in &self.state_events {
|
2020-04-07 12:55:42 +00:00
|
|
|
room.receive_state_event(event);
|
2020-04-06 11:12:02 +00:00
|
|
|
}
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
2020-04-06 19:29:38 +00:00
|
|
|
|
2020-04-07 20:11:35 +00:00
|
|
|
pub fn to_room(&mut self) -> &mut Room {
|
|
|
|
self.stream_room_events();
|
|
|
|
self.room.as_mut().unwrap()
|
2020-04-07 12:55:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:47:36 +00:00
|
|
|
impl ClientTestRunner {
|
|
|
|
pub fn set_client(&mut self, client: AsyncClient) -> &mut Self {
|
2020-04-07 12:55:42 +00:00
|
|
|
self.client = Some(client);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-04-07 20:11:35 +00:00
|
|
|
async fn stream_client_events(&mut self) {
|
|
|
|
let mut cli = self
|
|
|
|
.client
|
|
|
|
.as_ref()
|
|
|
|
.expect("`AsyncClient` must be set use `ClientTestRunner::set_client`")
|
|
|
|
.base_client
|
|
|
|
.write()
|
|
|
|
.await;
|
2020-04-07 12:55:42 +00:00
|
|
|
|
|
|
|
let room_id = &self.room_user_id.0;
|
2020-04-07 00:59:44 +00:00
|
|
|
|
2020-04-07 12:55:42 +00:00
|
|
|
for event in &self.account_data {
|
2020-04-07 00:59:44 +00:00
|
|
|
match event {
|
|
|
|
// Event::IgnoredUserList(iu) => room.handle_ignored_users(iu),
|
2020-04-07 12:55:42 +00:00
|
|
|
Event::Presence(p) => cli.receive_presence_event(room_id, p).await,
|
2020-04-07 00:59:44 +00:00
|
|
|
// Event::PushRules(pr) => room.handle_push_rules(pr),
|
2020-04-07 12:55:42 +00:00
|
|
|
_ => todo!("implement more account data events"),
|
2020-04-06 19:29:38 +00:00
|
|
|
};
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
2020-04-06 19:29:38 +00:00
|
|
|
|
2020-04-07 12:55:42 +00:00
|
|
|
for event in &self.ephemeral {
|
|
|
|
cli.receive_ephemeral_event(room_id, event).await;
|
|
|
|
}
|
|
|
|
|
2020-04-07 00:59:44 +00:00
|
|
|
for event in &self.room_events {
|
2020-04-27 11:20:21 +00:00
|
|
|
cli.receive_joined_timeline_event(room_id, &mut EventJson::from(event), &mut false)
|
2020-04-07 12:55:42 +00:00
|
|
|
.await;
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
|
|
|
for event in &self.presence_events {
|
2020-04-07 12:55:42 +00:00
|
|
|
cli.receive_presence_event(room_id, event).await;
|
2020-04-07 00:59:44 +00:00
|
|
|
}
|
|
|
|
for event in &self.state_events {
|
2020-04-07 12:55:42 +00:00
|
|
|
cli.receive_joined_state_event(room_id, event).await;
|
2020-04-06 19:29:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:47:36 +00:00
|
|
|
pub async fn to_client(&mut self) -> &mut AsyncClient {
|
2020-04-07 20:11:35 +00:00
|
|
|
self.stream_client_events().await;
|
|
|
|
self.client.as_mut().unwrap()
|
2020-04-07 12:55:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:47:36 +00:00
|
|
|
impl MockTestRunner {
|
|
|
|
pub fn set_client(&mut self, client: AsyncClient) -> &mut Self {
|
2020-04-07 12:55:42 +00:00
|
|
|
self.client = Some(client);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_mock(mut self, mock: Mock) -> Self {
|
|
|
|
self.mock = Some(mock);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-04-26 21:27:06 +00:00
|
|
|
pub async fn to_client(&mut self) -> Result<&mut AsyncClient, Error> {
|
2020-04-07 12:55:42 +00:00
|
|
|
self.client
|
|
|
|
.as_mut()
|
|
|
|
.unwrap()
|
2020-04-26 21:27:06 +00:00
|
|
|
.sync(SyncSettings::default())
|
2020-04-07 20:11:35 +00:00
|
|
|
.await?;
|
2020-04-07 12:55:42 +00:00
|
|
|
|
2020-04-07 20:11:35 +00:00
|
|
|
Ok(self.client.as_mut().unwrap())
|
2020-04-06 13:11:38 +00:00
|
|
|
}
|
2020-04-06 11:12:02 +00:00
|
|
|
}
|