2023-05-23 15:55:21 +00:00
|
|
|
use appflowy_integrate::collab_builder::{AppFlowyCollabBuilder, CloudStorageType};
|
|
|
|
|
2023-04-28 12:47:40 +00:00
|
|
|
use std::sync::Arc;
|
2023-05-10 05:27:50 +00:00
|
|
|
|
2023-05-15 14:16:05 +00:00
|
|
|
use appflowy_integrate::RocksCollabDB;
|
2023-05-10 05:27:50 +00:00
|
|
|
use parking_lot::Once;
|
2023-04-24 06:25:00 +00:00
|
|
|
use tempfile::TempDir;
|
|
|
|
use tracing_subscriber::{fmt::Subscriber, util::SubscriberInitExt, EnvFilter};
|
|
|
|
|
2023-05-10 05:27:50 +00:00
|
|
|
use flowy_document2::manager::DocumentUser;
|
|
|
|
|
2023-04-24 06:25:00 +00:00
|
|
|
pub struct FakeUser {
|
2023-04-28 12:47:40 +00:00
|
|
|
kv: Arc<RocksCollabDB>,
|
2023-04-24 06:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FakeUser {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self { kv: db() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DocumentUser for FakeUser {
|
|
|
|
fn user_id(&self) -> Result<i64, flowy_error::FlowyError> {
|
|
|
|
Ok(1)
|
|
|
|
}
|
|
|
|
|
2023-05-21 10:53:59 +00:00
|
|
|
fn token(&self) -> Result<Option<String>, flowy_error::FlowyError> {
|
|
|
|
Ok(None)
|
2023-04-24 06:25:00 +00:00
|
|
|
}
|
|
|
|
|
2023-05-15 14:16:05 +00:00
|
|
|
fn collab_db(&self) -> Result<std::sync::Arc<RocksCollabDB>, flowy_error::FlowyError> {
|
2023-04-24 06:25:00 +00:00
|
|
|
Ok(self.kv.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-28 12:47:40 +00:00
|
|
|
pub fn db() -> Arc<RocksCollabDB> {
|
2023-04-24 06:25:00 +00:00
|
|
|
static START: Once = Once::new();
|
|
|
|
START.call_once(|| {
|
|
|
|
std::env::set_var("RUST_LOG", "collab_persistence=trace");
|
|
|
|
let subscriber = Subscriber::builder()
|
|
|
|
.with_env_filter(EnvFilter::from_default_env())
|
|
|
|
.with_ansi(true)
|
|
|
|
.finish();
|
|
|
|
subscriber.try_init().unwrap();
|
|
|
|
});
|
|
|
|
|
|
|
|
let tempdir = TempDir::new().unwrap();
|
|
|
|
let path = tempdir.into_path();
|
2023-04-28 12:47:40 +00:00
|
|
|
Arc::new(RocksCollabDB::open(path).unwrap())
|
2023-04-24 06:25:00 +00:00
|
|
|
}
|
2023-05-16 06:58:24 +00:00
|
|
|
|
|
|
|
pub fn default_collab_builder() -> Arc<AppFlowyCollabBuilder> {
|
2023-05-23 15:55:21 +00:00
|
|
|
let builder = AppFlowyCollabBuilder::new(CloudStorageType::Local);
|
2023-05-16 06:58:24 +00:00
|
|
|
Arc::new(builder)
|
|
|
|
}
|