mod homeserver_config;
#[cfg(feature = "experimental-search")]
use std::collections::HashMap;
#[cfg(feature = "sqlite")]
use std::path::Path;
#[cfg(any(feature = "experimental-search", feature = "sqlite"))]
use std::path::PathBuf;
use std::{collections::BTreeSet, fmt, sync::Arc};
use homeserver_config::*;
#[cfg(feature = "e2e-encryption")]
use matrix_sdk_base::crypto::DecryptionSettings;
#[cfg(feature = "e2e-encryption")]
use matrix_sdk_base::crypto::{CollectStrategy, TrustRequirement};
use matrix_sdk_base::{BaseClient, ThreadingSupport, store::StoreConfig};
#[cfg(feature = "sqlite")]
use matrix_sdk_sqlite::SqliteStoreConfig;
use ruma::{
OwnedServerName, ServerName,
api::{MatrixVersion, SupportedVersions, error::FromHttpResponseError},
};
use thiserror::Error;
#[cfg(feature = "experimental-search")]
use tokio::sync::Mutex;
use tokio::sync::OnceCell;
use tracing::{Span, debug, field::debug, instrument};
use super::{Client, ClientInner};
#[cfg(feature = "e2e-encryption")]
use crate::encryption::EncryptionSettings;
#[cfg(not(target_family = "wasm"))]
use crate::http_client::HttpSettings;
#[cfg(feature = "experimental-search")]
use crate::search_index::SearchIndex;
#[cfg(feature = "experimental-search")]
use crate::search_index::SearchIndexStoreKind;
use crate::{
HttpError, IdParseError,
authentication::AuthCtx,
client::caches::CachedValue::{Cached, NotSet},
config::RequestConfig,
error::RumaApiError,
http_client::HttpClient,
send_queue::SendQueueData,
sliding_sync::VersionBuilder as SlidingSyncVersionBuilder,
};
#[must_use]
#[derive(Clone, Debug)]
pub struct ClientBuilder {
homeserver_cfg: Option<HomeserverConfig>,
sliding_sync_version_builder: SlidingSyncVersionBuilder,
http_cfg: Option<HttpConfig>,
store_config: BuilderStoreConfig,
request_config: RequestConfig,
respect_login_well_known: bool,
server_versions: Option<BTreeSet<MatrixVersion>>,
handle_refresh_tokens: bool,
base_client: Option<BaseClient>,
#[cfg(feature = "e2e-encryption")]
encryption_settings: EncryptionSettings,
#[cfg(feature = "e2e-encryption")]
room_key_recipient_strategy: CollectStrategy,
#[cfg(feature = "e2e-encryption")]
decryption_settings: DecryptionSettings,
#[cfg(feature = "e2e-encryption")]
enable_share_history_on_invite: bool,
cross_process_store_locks_holder_name: String,
threading_support: ThreadingSupport,
#[cfg(feature = "experimental-search")]
search_index_store_kind: SearchIndexStoreKind,
}
impl ClientBuilder {
const DEFAULT_CROSS_PROCESS_STORE_LOCKS_HOLDER_NAME: &str = "main";
pub(crate) fn new() -> Self {
Self {
homeserver_cfg: None,
sliding_sync_version_builder: SlidingSyncVersionBuilder::Native,
http_cfg: None,
store_config: BuilderStoreConfig::Custom(StoreConfig::new(
Self::DEFAULT_CROSS_PROCESS_STORE_LOCKS_HOLDER_NAME.to_owned(),
)),
request_config: Default::default(),
respect_login_well_known: true,
server_versions: None,
handle_refresh_tokens: false,
base_client: None,
#[cfg(feature = "e2e-encryption")]
encryption_settings: Default::default(),
#[cfg(feature = "e2e-encryption")]
room_key_recipient_strategy: Default::default(),
#[cfg(feature = "e2e-encryption")]
decryption_settings: DecryptionSettings {
sender_device_trust_requirement: TrustRequirement::Untrusted,
},
#[cfg(feature = "e2e-encryption")]
enable_share_history_on_invite: false,
cross_process_store_locks_holder_name:
Self::DEFAULT_CROSS_PROCESS_STORE_LOCKS_HOLDER_NAME.to_owned(),
threading_support: ThreadingSupport::Disabled,
#[cfg(feature = "experimental-search")]
search_index_store_kind: SearchIndexStoreKind::InMemory,
}
}
pub fn homeserver_url(mut self, url: impl AsRef<str>) -> Self {
self.homeserver_cfg = Some(HomeserverConfig::HomeserverUrl(url.as_ref().to_owned()));
self
}
pub fn server_name(mut self, server_name: &ServerName) -> Self {
self.homeserver_cfg = Some(HomeserverConfig::ServerName {
server: server_name.to_owned(),
protocol: UrlScheme::Https,
});
self
}
pub fn insecure_server_name_no_tls(mut self, server_name: &ServerName) -> Self {
self.homeserver_cfg = Some(HomeserverConfig::ServerName {
server: server_name.to_owned(),
protocol: UrlScheme::Http,
});
self
}
pub fn server_name_or_homeserver_url(mut self, server_name_or_url: impl AsRef<str>) -> Self {
self.homeserver_cfg = Some(HomeserverConfig::ServerNameOrHomeserverUrl(
server_name_or_url.as_ref().to_owned(),
));
self
}
pub fn sliding_sync_version_builder(
mut self,
version_builder: SlidingSyncVersionBuilder,
) -> Self {
self.sliding_sync_version_builder = version_builder;
self
}
#[cfg(feature = "sqlite")]
pub fn sqlite_store(mut self, path: impl AsRef<Path>, passphrase: Option<&str>) -> Self {
let sqlite_store_config = SqliteStoreConfig::new(path).passphrase(passphrase);
self.store_config =
BuilderStoreConfig::Sqlite { config: sqlite_store_config, cache_path: None };
self
}
#[cfg(feature = "sqlite")]
pub fn sqlite_store_with_cache_path(
mut self,
path: impl AsRef<Path>,
cache_path: impl AsRef<Path>,
passphrase: Option<&str>,
) -> Self {
let sqlite_store_config = SqliteStoreConfig::new(path).passphrase(passphrase);
self.store_config = BuilderStoreConfig::Sqlite {
config: sqlite_store_config,
cache_path: Some(cache_path.as_ref().to_owned()),
};
self
}
#[cfg(feature = "sqlite")]
pub fn sqlite_store_with_config_and_cache_path(
mut self,
config: SqliteStoreConfig,
cache_path: Option<impl AsRef<Path>>,
) -> Self {
self.store_config = BuilderStoreConfig::Sqlite {
config,
cache_path: cache_path.map(|cache_path| cache_path.as_ref().to_owned()),
};
self
}
#[cfg(feature = "indexeddb")]
pub fn indexeddb_store(mut self, name: &str, passphrase: Option<&str>) -> Self {
self.store_config = BuilderStoreConfig::IndexedDb {
name: name.to_owned(),
passphrase: passphrase.map(ToOwned::to_owned),
};
self
}
pub fn store_config(mut self, store_config: StoreConfig) -> Self {
self.store_config = BuilderStoreConfig::Custom(store_config);
self
}
pub fn respect_login_well_known(mut self, value: bool) -> Self {
self.respect_login_well_known = value;
self
}
pub fn request_config(mut self, request_config: RequestConfig) -> Self {
self.request_config = request_config;
self
}
#[cfg(not(target_family = "wasm"))]
pub fn proxy(mut self, proxy: impl AsRef<str>) -> Self {
self.http_settings().proxy = Some(proxy.as_ref().to_owned());
self
}
#[cfg(not(target_family = "wasm"))]
pub fn disable_ssl_verification(mut self) -> Self {
self.http_settings().disable_ssl_verification = true;
self
}
#[cfg(not(target_family = "wasm"))]
pub fn user_agent(mut self, user_agent: impl AsRef<str>) -> Self {
self.http_settings().user_agent = Some(user_agent.as_ref().to_owned());
self
}
#[cfg(not(target_family = "wasm"))]
pub fn add_root_certificates(mut self, certificates: Vec<reqwest::Certificate>) -> Self {
self.http_settings().additional_root_certificates = certificates;
self
}
#[cfg(not(target_family = "wasm"))]
pub fn disable_built_in_root_certificates(mut self) -> Self {
self.http_settings().disable_built_in_root_certificates = true;
self
}
pub fn http_client(mut self, client: reqwest::Client) -> Self {
self.http_cfg = Some(HttpConfig::Custom(client));
self
}
pub fn server_versions(mut self, value: impl IntoIterator<Item = MatrixVersion>) -> Self {
self.server_versions = Some(value.into_iter().collect());
self
}
#[cfg(not(target_family = "wasm"))]
fn http_settings(&mut self) -> &mut HttpSettings {
self.http_cfg.get_or_insert_with(Default::default).settings()
}
pub fn handle_refresh_tokens(mut self) -> Self {
self.handle_refresh_tokens = true;
self
}
#[doc(hidden)]
pub fn base_client(mut self, base_client: BaseClient) -> Self {
self.base_client = Some(base_client);
self
}
#[cfg(feature = "e2e-encryption")]
pub fn with_encryption_settings(mut self, settings: EncryptionSettings) -> Self {
self.encryption_settings = settings;
self
}
#[cfg(feature = "e2e-encryption")]
pub fn with_room_key_recipient_strategy(mut self, strategy: CollectStrategy) -> Self {
self.room_key_recipient_strategy = strategy;
self
}
#[cfg(feature = "e2e-encryption")]
pub fn with_decryption_settings(mut self, decryption_settings: DecryptionSettings) -> Self {
self.decryption_settings = decryption_settings;
self
}
#[cfg(feature = "e2e-encryption")]
pub fn with_enable_share_history_on_invite(
mut self,
enable_share_history_on_invite: bool,
) -> Self {
self.enable_share_history_on_invite = enable_share_history_on_invite;
self
}
pub fn cross_process_store_locks_holder_name(mut self, holder_name: String) -> Self {
self.cross_process_store_locks_holder_name = holder_name;
self
}
pub fn with_threading_support(mut self, threading_support: ThreadingSupport) -> Self {
self.threading_support = threading_support;
self
}
#[cfg(feature = "experimental-search")]
pub fn search_index_store(mut self, kind: SearchIndexStoreKind) -> Self {
self.search_index_store_kind = kind;
self
}
#[instrument(skip_all, target = "matrix_sdk::client", fields(homeserver))]
pub async fn build(self) -> Result<Client, ClientBuildError> {
debug!("Starting to build the Client");
let homeserver_cfg = self.homeserver_cfg.ok_or(ClientBuildError::MissingHomeserver)?;
Span::current().record("homeserver", debug(&homeserver_cfg));
#[cfg_attr(target_family = "wasm", allow(clippy::infallible_destructuring_match))]
let inner_http_client = match self.http_cfg.unwrap_or_default() {
#[cfg(not(target_family = "wasm"))]
HttpConfig::Settings(mut settings) => {
settings.timeout = self.request_config.timeout;
settings.make_client()?
}
HttpConfig::Custom(c) => c,
};
let base_client = if let Some(base_client) = self.base_client {
base_client
} else {
#[allow(unused_mut)]
let mut client = BaseClient::new(
build_store_config(self.store_config, &self.cross_process_store_locks_holder_name)
.await?,
self.threading_support,
);
#[cfg(feature = "e2e-encryption")]
{
client.room_key_recipient_strategy = self.room_key_recipient_strategy;
client.decryption_settings = self.decryption_settings;
}
client
};
let http_client = HttpClient::new(inner_http_client.clone(), self.request_config);
#[allow(unused_variables)]
let HomeserverDiscoveryResult { server, homeserver, supported_versions, well_known } =
homeserver_cfg.discover(&http_client).await?;
let sliding_sync_version = {
let supported_versions = match supported_versions {
Some(versions) => Some(versions),
None if self.sliding_sync_version_builder.needs_get_supported_versions() => {
Some(get_supported_versions(&homeserver, &http_client).await?)
}
None => None,
};
let version = self.sliding_sync_version_builder.build(
supported_versions.map(|response| response.as_supported_versions()).as_ref(),
)?;
tracing::info!(?version, "selected sliding sync version");
version
};
let allow_insecure_oauth = homeserver.scheme() == "http";
let auth_ctx = Arc::new(AuthCtx::new(self.handle_refresh_tokens, allow_insecure_oauth));
let send_queue = Arc::new(SendQueueData::new(true));
let supported_versions = match self.server_versions {
Some(versions) => Cached(SupportedVersions { versions, features: Default::default() }),
None => NotSet,
};
let well_known = match well_known {
Some(well_known) => Cached(Some(well_known.into())),
None => NotSet,
};
let event_cache = OnceCell::new();
let latest_events = OnceCell::new();
let thread_subscriptions_catchup = OnceCell::new();
#[cfg(feature = "experimental-search")]
let search_index =
SearchIndex::new(Arc::new(Mutex::new(HashMap::new())), self.search_index_store_kind);
let inner = ClientInner::new(
auth_ctx,
server,
homeserver,
sliding_sync_version,
http_client,
base_client,
supported_versions,
well_known,
self.respect_login_well_known,
event_cache,
send_queue,
latest_events,
#[cfg(feature = "e2e-encryption")]
self.encryption_settings,
#[cfg(feature = "e2e-encryption")]
self.enable_share_history_on_invite,
self.cross_process_store_locks_holder_name,
#[cfg(feature = "experimental-search")]
search_index,
thread_subscriptions_catchup,
)
.await;
debug!("Done building the Client");
Ok(Client { inner })
}
}
pub fn sanitize_server_name(s: &str) -> crate::Result<OwnedServerName, IdParseError> {
ServerName::parse(
s.trim().trim_start_matches("http://").trim_start_matches("https://").trim_end_matches('/'),
)
}
#[allow(clippy::unused_async, unused)] async fn build_store_config(
builder_config: BuilderStoreConfig,
cross_process_store_locks_holder_name: &str,
) -> Result<StoreConfig, ClientBuildError> {
#[allow(clippy::infallible_destructuring_match)]
let store_config = match builder_config {
#[cfg(feature = "sqlite")]
BuilderStoreConfig::Sqlite { config, cache_path } => {
let store_config = StoreConfig::new(cross_process_store_locks_holder_name.to_owned())
.state_store(
matrix_sdk_sqlite::SqliteStateStore::open_with_config(config.clone()).await?,
)
.event_cache_store({
let mut config = config.clone();
if let Some(ref cache_path) = cache_path {
config = config.path(cache_path);
}
matrix_sdk_sqlite::SqliteEventCacheStore::open_with_config(config).await?
})
.media_store({
let mut config = config.clone();
if let Some(ref cache_path) = cache_path {
config = config.path(cache_path);
}
matrix_sdk_sqlite::SqliteMediaStore::open_with_config(config).await?
});
#[cfg(feature = "e2e-encryption")]
let store_config = store_config.crypto_store(
matrix_sdk_sqlite::SqliteCryptoStore::open_with_config(config).await?,
);
store_config
}
#[cfg(feature = "indexeddb")]
BuilderStoreConfig::IndexedDb { name, passphrase } => {
build_indexeddb_store_config(
&name,
passphrase.as_deref(),
cross_process_store_locks_holder_name,
)
.await?
}
BuilderStoreConfig::Custom(config) => config,
};
Ok(store_config)
}
#[cfg(all(target_family = "wasm", feature = "indexeddb"))]
async fn build_indexeddb_store_config(
name: &str,
passphrase: Option<&str>,
cross_process_store_locks_holder_name: &str,
) -> Result<StoreConfig, ClientBuildError> {
let cross_process_store_locks_holder_name = cross_process_store_locks_holder_name.to_owned();
#[cfg(feature = "e2e-encryption")]
let store_config = {
let (state_store, crypto_store) =
matrix_sdk_indexeddb::open_stores_with_name(name, passphrase).await?;
StoreConfig::new(cross_process_store_locks_holder_name)
.state_store(state_store)
.crypto_store(crypto_store)
};
#[cfg(not(feature = "e2e-encryption"))]
let store_config = {
let state_store = matrix_sdk_indexeddb::open_state_store(name, passphrase).await?;
StoreConfig::new(cross_process_store_locks_holder_name).state_store(state_store)
};
let store_config = {
tracing::warn!(
"The IndexedDB backend does not implement an event cache store, \
falling back to the in-memory event cache store…"
);
store_config.event_cache_store(matrix_sdk_base::event_cache::store::MemoryStore::new())
};
Ok(store_config)
}
#[cfg(all(not(target_family = "wasm"), feature = "indexeddb"))]
#[allow(clippy::unused_async)]
async fn build_indexeddb_store_config(
_name: &str,
_passphrase: Option<&str>,
_event_cache_store_lock_holder_name: &str,
) -> Result<StoreConfig, ClientBuildError> {
panic!("the IndexedDB is only available on the 'wasm32' arch")
}
#[derive(Clone, Debug)]
enum HttpConfig {
#[cfg(not(target_family = "wasm"))]
Settings(HttpSettings),
Custom(reqwest::Client),
}
#[cfg(not(target_family = "wasm"))]
impl HttpConfig {
fn settings(&mut self) -> &mut HttpSettings {
match self {
Self::Settings(s) => s,
Self::Custom(_) => {
*self = Self::default();
match self {
Self::Settings(s) => s,
Self::Custom(_) => unreachable!(),
}
}
}
}
}
impl Default for HttpConfig {
fn default() -> Self {
#[cfg(not(target_family = "wasm"))]
return Self::Settings(HttpSettings::default());
#[cfg(target_family = "wasm")]
return Self::Custom(reqwest::Client::new());
}
}
#[derive(Clone)]
enum BuilderStoreConfig {
#[cfg(feature = "sqlite")]
Sqlite {
config: SqliteStoreConfig,
cache_path: Option<PathBuf>,
},
#[cfg(feature = "indexeddb")]
IndexedDb {
name: String,
passphrase: Option<String>,
},
Custom(StoreConfig),
}
#[cfg(not(tarpaulin_include))]
impl fmt::Debug for BuilderStoreConfig {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
#[allow(clippy::infallible_destructuring_match)]
match self {
#[cfg(feature = "sqlite")]
Self::Sqlite { config, cache_path, .. } => f
.debug_struct("Sqlite")
.field("config", config)
.field("cache_path", cache_path)
.finish_non_exhaustive(),
#[cfg(feature = "indexeddb")]
Self::IndexedDb { name, .. } => {
f.debug_struct("IndexedDb").field("name", name).finish_non_exhaustive()
}
Self::Custom(store_config) => f.debug_tuple("Custom").field(store_config).finish(),
}
}
}
#[derive(Debug, Error)]
pub enum ClientBuildError {
#[error("no homeserver or user ID was configured")]
MissingHomeserver,
#[error("The supplied server name is invalid")]
InvalidServerName,
#[error("Error looking up the .well-known endpoint on auto-discovery")]
AutoDiscovery(FromHttpResponseError<RumaApiError>),
#[error(transparent)]
SlidingSyncVersion(#[from] crate::sliding_sync::VersionBuilderError),
#[error(transparent)]
Url(#[from] url::ParseError),
#[error(transparent)]
Http(#[from] HttpError),
#[cfg(feature = "indexeddb")]
#[error(transparent)]
IndexeddbStore(#[from] matrix_sdk_indexeddb::OpenStoreError),
#[cfg(feature = "sqlite")]
#[error(transparent)]
SqliteStore(#[from] matrix_sdk_sqlite::OpenStoreError),
}
#[cfg(all(test, not(target_family = "wasm")))]
pub(crate) mod tests {
use assert_matches::assert_matches;
use matrix_sdk_test::{async_test, test_json};
use serde_json::{Value as JsonValue, json_internal};
use wiremock::{
Mock, MockServer, ResponseTemplate,
matchers::{method, path},
};
use super::*;
use crate::sliding_sync::Version as SlidingSyncVersion;
#[test]
fn test_sanitize_server_name() {
assert_eq!(sanitize_server_name("matrix.org").unwrap().as_str(), "matrix.org");
assert_eq!(sanitize_server_name("https://matrix.org").unwrap().as_str(), "matrix.org");
assert_eq!(sanitize_server_name("http://matrix.org").unwrap().as_str(), "matrix.org");
assert_eq!(
sanitize_server_name("https://matrix.server.org").unwrap().as_str(),
"matrix.server.org"
);
assert_eq!(
sanitize_server_name("https://matrix.server.org/").unwrap().as_str(),
"matrix.server.org"
);
assert_eq!(
sanitize_server_name(" https://matrix.server.org// ").unwrap().as_str(),
"matrix.server.org"
);
assert_matches!(sanitize_server_name("https://matrix.server.org/something"), Err(_))
}
#[async_test]
async fn test_discovery_invalid_server() {
let mut builder = ClientBuilder::new();
builder = builder.server_name_or_homeserver_url("⚠️ This won't work 🚫");
let error = builder.build().await.unwrap_err();
assert_matches!(error, ClientBuildError::InvalidServerName);
}
#[async_test]
async fn test_discovery_no_server() {
let mut builder = ClientBuilder::new();
builder = builder.server_name_or_homeserver_url("localhost:3456");
let error = builder.build().await.unwrap_err();
println!("{error}");
assert_matches!(error, ClientBuildError::Http(_));
}
#[async_test]
async fn test_discovery_web_server() {
let server = MockServer::start().await;
let mut builder = ClientBuilder::new();
builder = builder.server_name_or_homeserver_url(server.uri());
let error = builder.build().await.unwrap_err();
assert_matches!(error, ClientBuildError::AutoDiscovery(FromHttpResponseError::Server(_)));
}
#[async_test]
async fn test_discovery_direct_legacy() {
let homeserver = make_mock_homeserver().await;
let mut builder = ClientBuilder::new();
builder = builder.server_name_or_homeserver_url(homeserver.uri());
let _client = builder.build().await.unwrap();
assert!(_client.sliding_sync_version().is_native());
}
#[async_test]
async fn test_discovery_well_known_parse_error() {
let server = MockServer::start().await;
let homeserver = make_mock_homeserver().await;
let mut builder = ClientBuilder::new();
let well_known = make_well_known_json(&homeserver.uri());
let bad_json = well_known.to_string().replace(',', "");
Mock::given(method("GET"))
.and(path("/.well-known/matrix/client"))
.respond_with(ResponseTemplate::new(200).set_body_json(bad_json))
.mount(&server)
.await;
builder = builder.server_name_or_homeserver_url(server.uri());
let error = builder.build().await.unwrap_err();
assert_matches!(
error,
ClientBuildError::AutoDiscovery(FromHttpResponseError::Deserialization(_))
);
}
#[async_test]
async fn test_discovery_well_known_legacy() {
let server = MockServer::start().await;
let homeserver = make_mock_homeserver().await;
let mut builder = ClientBuilder::new();
Mock::given(method("GET"))
.and(path("/.well-known/matrix/client"))
.respond_with(
ResponseTemplate::new(200).set_body_json(make_well_known_json(&homeserver.uri())),
)
.mount(&server)
.await;
builder = builder.server_name_or_homeserver_url(server.uri());
let client = builder.build().await.unwrap();
assert!(client.sliding_sync_version().is_native());
}
#[async_test]
async fn test_sliding_sync_discover_native() {
let homeserver = make_mock_homeserver().await;
let mut builder = ClientBuilder::new();
builder = builder
.server_name_or_homeserver_url(homeserver.uri())
.sliding_sync_version_builder(SlidingSyncVersionBuilder::DiscoverNative);
let client = builder.build().await.unwrap();
assert_matches!(client.sliding_sync_version(), SlidingSyncVersion::Native);
}
#[async_test]
#[cfg(feature = "e2e-encryption")]
async fn test_set_up_decryption_trust_requirement_cross_signed() {
let homeserver = make_mock_homeserver().await;
let builder = ClientBuilder::new()
.server_name_or_homeserver_url(homeserver.uri())
.with_decryption_settings(DecryptionSettings {
sender_device_trust_requirement: TrustRequirement::CrossSigned,
});
let client = builder.build().await.unwrap();
assert_matches!(
client.base_client().decryption_settings.sender_device_trust_requirement,
TrustRequirement::CrossSigned
);
}
#[async_test]
#[cfg(feature = "e2e-encryption")]
async fn test_set_up_decryption_trust_requirement_untrusted() {
let homeserver = make_mock_homeserver().await;
let builder = ClientBuilder::new()
.server_name_or_homeserver_url(homeserver.uri())
.with_decryption_settings(DecryptionSettings {
sender_device_trust_requirement: TrustRequirement::Untrusted,
});
let client = builder.build().await.unwrap();
assert_matches!(
client.base_client().decryption_settings.sender_device_trust_requirement,
TrustRequirement::Untrusted
);
}
async fn make_mock_homeserver() -> MockServer {
let homeserver = MockServer::start().await;
Mock::given(method("GET"))
.and(path("/_matrix/client/versions"))
.respond_with(ResponseTemplate::new(200).set_body_json(&*test_json::VERSIONS))
.mount(&homeserver)
.await;
Mock::given(method("GET"))
.and(path("/_matrix/client/r0/login"))
.respond_with(ResponseTemplate::new(200).set_body_json(&*test_json::LOGIN_TYPES))
.mount(&homeserver)
.await;
homeserver
}
fn make_well_known_json(homeserver_url: &str) -> JsonValue {
::serde_json::Value::Object({
let mut object = ::serde_json::Map::new();
let _ = object.insert(
"m.homeserver".into(),
json_internal!({
"base_url": homeserver_url
}),
);
object
})
}
#[async_test]
async fn test_cross_process_store_locks_holder_name() {
{
let homeserver = make_mock_homeserver().await;
let client =
ClientBuilder::new().homeserver_url(homeserver.uri()).build().await.unwrap();
assert_eq!(client.cross_process_store_locks_holder_name(), "main");
}
{
let homeserver = make_mock_homeserver().await;
let client = ClientBuilder::new()
.homeserver_url(homeserver.uri())
.cross_process_store_locks_holder_name("foo".to_owned())
.build()
.await
.unwrap();
assert_eq!(client.cross_process_store_locks_holder_name(), "foo");
}
}
}