mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
2cd88594e8
* refactor: weak passed-in params in handler * refactor: rename struct * chore: update tables * chore: update schema * chore: add permission * chore: update tables * chore: support transaction mode * chore: workspace database id * chore: add user workspace * feat: return list of workspaces * chore: add user to workspace * feat: separate database row table * refactor: update schema * chore: partition table * chore: use transaction * refactor: dir * refactor: collab db ref * fix: collab db lock * chore: rename files * chore: add tables descriptions * chore: update readme * docs: update documentation * chore: rename crate * chore: update ref * chore: update tests * chore: update tests * refactor: crate deps * chore: update crate ref * chore: remove unused deps * chore: remove unused deps * chore: update collab crate refs * chore: replace client with transaction in pooler * refactor: return error type * refactor: use anyhow error in deps * feat: supabase postgrest user signin (wip) * fix: Cargo.toml source git deps, changed Error to anyhow::Error * fix: uuid serialization * chore: fix conflict * chore: extend the response * feat: add implementation place holders * feat: impl get_user_workspaces * feat: impl get_user_profile * test: create workspace * fix: postgrest: field names and alias * chore: implement folder restful api * chore: implement collab storate with restful api * feat: added placeholders for impl: update_user_profile, check_user * feat: impl: update_user_profile * feat: impl: check_user * fix: use UidResponse, add more debug info for serde serialization error * fix: get_user_profile: use Optional<UserProfileResponse> * chore: imple init sync * chore: support soft delete * feat: postgresql: add migration test * feat: postgresql migration test: added UID display and colored output * feat: postgresql migration test: workspace role * feat: postgresql migration test: create shared common utils * feat: postgresql migration test: fixed shebang * chore: add flush_collab_update pg function * chore: implement datbaase and document restful api * chore: migrate to use restful api * chore: update table schema * chore: fix tests * chore: remove unused code * chore: format code * chore: remove unused env * fix: tauri build * fix: tauri build --------- Co-authored-by: Fu Zi Xiang <speed2exe@live.com.sg>
128 lines
3.3 KiB
Rust
128 lines
3.3 KiB
Rust
use anyhow::Error;
|
|
use std::ops::Deref;
|
|
use std::sync::Arc;
|
|
|
|
use appflowy_integrate::collab_builder::{AppFlowyCollabBuilder, DefaultCollabStorageProvider};
|
|
use appflowy_integrate::RocksCollabDB;
|
|
use collab_document::blocks::DocumentData;
|
|
use nanoid::nanoid;
|
|
use parking_lot::Once;
|
|
use tempfile::TempDir;
|
|
use tracing_subscriber::{fmt::Subscriber, util::SubscriberInitExt, EnvFilter};
|
|
|
|
use flowy_document2::document::MutexDocument;
|
|
use flowy_document2::document_data::default_document_data;
|
|
use flowy_document2::manager::{DocumentManager, DocumentUser};
|
|
use flowy_document_deps::cloud::*;
|
|
|
|
use lib_infra::future::FutureResult;
|
|
|
|
pub struct DocumentTest {
|
|
inner: DocumentManager,
|
|
}
|
|
|
|
impl DocumentTest {
|
|
pub fn new() -> Self {
|
|
let user = FakeUser::new();
|
|
let cloud_service = Arc::new(LocalTestDocumentCloudServiceImpl());
|
|
let manager = DocumentManager::new(Arc::new(user), default_collab_builder(), cloud_service);
|
|
Self { inner: manager }
|
|
}
|
|
}
|
|
|
|
impl Deref for DocumentTest {
|
|
type Target = DocumentManager;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.inner
|
|
}
|
|
}
|
|
|
|
pub struct FakeUser {
|
|
collab_db: Arc<RocksCollabDB>,
|
|
}
|
|
|
|
impl FakeUser {
|
|
pub fn new() -> Self {
|
|
Self { collab_db: db() }
|
|
}
|
|
}
|
|
|
|
impl DocumentUser for FakeUser {
|
|
fn user_id(&self) -> Result<i64, flowy_error::FlowyError> {
|
|
Ok(1)
|
|
}
|
|
|
|
fn token(&self) -> Result<Option<String>, flowy_error::FlowyError> {
|
|
Ok(None)
|
|
}
|
|
|
|
fn collab_db(
|
|
&self,
|
|
_uid: i64,
|
|
) -> Result<std::sync::Weak<RocksCollabDB>, flowy_error::FlowyError> {
|
|
Ok(Arc::downgrade(&self.collab_db))
|
|
}
|
|
}
|
|
|
|
pub fn db() -> Arc<RocksCollabDB> {
|
|
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();
|
|
Arc::new(RocksCollabDB::open(path).unwrap())
|
|
}
|
|
|
|
pub fn default_collab_builder() -> Arc<AppFlowyCollabBuilder> {
|
|
let builder = AppFlowyCollabBuilder::new(DefaultCollabStorageProvider(), None);
|
|
Arc::new(builder)
|
|
}
|
|
|
|
pub async fn create_and_open_empty_document() -> (DocumentTest, Arc<MutexDocument>, String) {
|
|
let test = DocumentTest::new();
|
|
let doc_id: String = gen_document_id();
|
|
let data = default_document_data();
|
|
|
|
// create a document
|
|
_ = test.create_document(&doc_id, Some(data.clone())).unwrap();
|
|
|
|
let document = test.get_document(&doc_id).await.unwrap();
|
|
|
|
(test, document, data.page_id)
|
|
}
|
|
|
|
pub fn gen_document_id() -> String {
|
|
let uuid = uuid::Uuid::new_v4();
|
|
uuid.to_string()
|
|
}
|
|
|
|
pub fn gen_id() -> String {
|
|
nanoid!(10)
|
|
}
|
|
|
|
pub struct LocalTestDocumentCloudServiceImpl();
|
|
impl DocumentCloudService for LocalTestDocumentCloudServiceImpl {
|
|
fn get_document_updates(&self, _document_id: &str) -> FutureResult<Vec<Vec<u8>>, Error> {
|
|
FutureResult::new(async move { Ok(vec![]) })
|
|
}
|
|
|
|
fn get_document_latest_snapshot(
|
|
&self,
|
|
_document_id: &str,
|
|
) -> FutureResult<Option<DocumentSnapshot>, Error> {
|
|
FutureResult::new(async move { Ok(None) })
|
|
}
|
|
|
|
fn get_document_data(&self, _document_id: &str) -> FutureResult<Option<DocumentData>, Error> {
|
|
FutureResult::new(async move { Ok(None) })
|
|
}
|
|
}
|