|
@@ -5,7 +5,7 @@ use futures_util::{stream, stream::StreamExt};
|
|
|
use sqlx::PgPool;
|
|
|
use tokio::time::{sleep, Duration};
|
|
|
|
|
|
-use backend::service::doc::doc::DocManager;
|
|
|
+use backend::service::doc::{crud::update_doc, doc::DocManager};
|
|
|
use flowy_document::{entities::doc::QueryDocParams, services::doc::edit::ClientEditDoc as ClientEditDocContext};
|
|
|
use flowy_net::config::ServerConfig;
|
|
|
use flowy_test::{workspace::ViewTest, FlowyTest};
|
|
@@ -13,6 +13,10 @@ use flowy_user::services::user::UserSession;
|
|
|
|
|
|
// use crate::helper::*;
|
|
|
use crate::helper::{spawn_server, TestServer};
|
|
|
+use flowy_document::protobuf::UpdateDocParams;
|
|
|
+use flowy_ot::core::Delta;
|
|
|
+use parking_lot::RwLock;
|
|
|
+use serde::__private::Formatter;
|
|
|
|
|
|
pub struct DocumentTest {
|
|
|
server: TestServer,
|
|
@@ -24,6 +28,22 @@ pub enum DocScript {
|
|
|
SendText(usize, &'static str),
|
|
|
AssertClient(&'static str),
|
|
|
AssertServer(&'static str),
|
|
|
+ SetServerDocument(String, i64), // delta_json, rev_id
|
|
|
+ OpenDoc,
|
|
|
+}
|
|
|
+
|
|
|
+impl std::fmt::Display for DocScript {
|
|
|
+ fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
+ let name = match self {
|
|
|
+ DocScript::ConnectWs => "ConnectWs",
|
|
|
+ DocScript::SendText(_, _) => "SendText",
|
|
|
+ DocScript::AssertClient(_) => "AssertClient",
|
|
|
+ DocScript::AssertServer(_) => "AssertServer",
|
|
|
+ DocScript::SetServerDocument(_, _) => "SetServerDocument",
|
|
|
+ DocScript::OpenDoc => "OpenDoc",
|
|
|
+ };
|
|
|
+ f.write_str(&format!("******** {} *********", name))
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
impl DocumentTest {
|
|
@@ -37,54 +57,92 @@ impl DocumentTest {
|
|
|
pub async fn run_scripts(self, scripts: Vec<DocScript>) {
|
|
|
let _ = self.flowy_test.sign_up().await;
|
|
|
let DocumentTest { server, flowy_test } = self;
|
|
|
- let script_context = ScriptContext {
|
|
|
- client_edit_context: create_doc(&flowy_test).await,
|
|
|
- user_session: flowy_test.sdk.user_session.clone(),
|
|
|
- doc_manager: server.app_ctx.doc_biz.manager.clone(),
|
|
|
- pool: Data::new(server.pg_pool.clone()),
|
|
|
- };
|
|
|
-
|
|
|
+ let script_context = Arc::new(RwLock::new(ScriptContext::new(flowy_test, server).await));
|
|
|
run_scripts(script_context, scripts).await;
|
|
|
- std::mem::forget(flowy_test);
|
|
|
sleep(Duration::from_secs(5)).await;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
struct ScriptContext {
|
|
|
- client_edit_context: Arc<ClientEditDocContext>,
|
|
|
+ client_edit_context: Option<Arc<ClientEditDocContext>>,
|
|
|
+ flowy_test: FlowyTest,
|
|
|
user_session: Arc<UserSession>,
|
|
|
doc_manager: Arc<DocManager>,
|
|
|
pool: Data<PgPool>,
|
|
|
+ doc_id: String,
|
|
|
+}
|
|
|
+
|
|
|
+impl ScriptContext {
|
|
|
+ async fn new(flowy_test: FlowyTest, server: TestServer) -> Self {
|
|
|
+ let user_session = flowy_test.sdk.user_session.clone();
|
|
|
+ let doc_id = create_doc(&flowy_test).await;
|
|
|
+
|
|
|
+ Self {
|
|
|
+ client_edit_context: None,
|
|
|
+ flowy_test,
|
|
|
+ user_session,
|
|
|
+ doc_manager: server.app_ctx.doc_biz.manager.clone(),
|
|
|
+ pool: Data::new(server.pg_pool.clone()),
|
|
|
+ doc_id,
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ async fn open_doc(&mut self) {
|
|
|
+ let flowy_document = self.flowy_test.sdk.flowy_document.clone();
|
|
|
+ let pool = self.user_session.db_pool().unwrap();
|
|
|
+ let doc_id = self.doc_id.clone();
|
|
|
+
|
|
|
+ let edit_context = flowy_document.open(QueryDocParams { doc_id }, pool).await.unwrap();
|
|
|
+ self.client_edit_context = Some(edit_context);
|
|
|
+ }
|
|
|
+
|
|
|
+ fn client_edit_context(&self) -> Arc<ClientEditDocContext> { self.client_edit_context.as_ref().unwrap().clone() }
|
|
|
+}
|
|
|
+
|
|
|
+impl Drop for ScriptContext {
|
|
|
+ fn drop(&mut self) {
|
|
|
+ // std::mem::forget(self.flowy_test);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-async fn run_scripts(context: ScriptContext, scripts: Vec<DocScript>) {
|
|
|
+async fn run_scripts(context: Arc<RwLock<ScriptContext>>, scripts: Vec<DocScript>) {
|
|
|
let mut fut_scripts = vec![];
|
|
|
for script in scripts {
|
|
|
let context = context.clone();
|
|
|
let fut = async move {
|
|
|
+ let doc_id = context.read().doc_id.clone();
|
|
|
match script {
|
|
|
DocScript::ConnectWs => {
|
|
|
- let token = context.user_session.token().unwrap();
|
|
|
- let _ = context.user_session.start_ws_connection(&token).await.unwrap();
|
|
|
+ // sleep(Duration::from_millis(300)).await;
|
|
|
+ let user_session = context.read().user_session.clone();
|
|
|
+ let token = user_session.token().unwrap();
|
|
|
+ let _ = user_session.start_ws_connection(&token).await.unwrap();
|
|
|
+ },
|
|
|
+ DocScript::OpenDoc => {
|
|
|
+ context.write().open_doc().await;
|
|
|
},
|
|
|
DocScript::SendText(index, s) => {
|
|
|
- context.client_edit_context.insert(index, s).await.unwrap();
|
|
|
+ context.read().client_edit_context().insert(index, s).await.unwrap();
|
|
|
},
|
|
|
DocScript::AssertClient(s) => {
|
|
|
- let json = context.client_edit_context.doc_json().await.unwrap();
|
|
|
+ sleep(Duration::from_millis(300)).await;
|
|
|
+ let json = context.read().client_edit_context().doc_json().await.unwrap();
|
|
|
assert_eq(s, &json);
|
|
|
},
|
|
|
DocScript::AssertServer(s) => {
|
|
|
- let edit_doc = context
|
|
|
- .doc_manager
|
|
|
- .get(&context.client_edit_context.doc_id, context.pool)
|
|
|
- .await
|
|
|
- .unwrap()
|
|
|
- .unwrap();
|
|
|
+ sleep(Duration::from_millis(300)).await;
|
|
|
+
|
|
|
+ let pg_pool = context.read().pool.clone();
|
|
|
+ let doc_manager = context.read().doc_manager.clone();
|
|
|
+ let edit_doc = doc_manager.get(&doc_id, pg_pool).await.unwrap().unwrap();
|
|
|
let json = edit_doc.document_json().await.unwrap();
|
|
|
assert_eq(s, &json);
|
|
|
},
|
|
|
+ DocScript::SetServerDocument(json, rev_id) => {
|
|
|
+ let pg_pool = context.read().pool.clone();
|
|
|
+ save_doc(&doc_id, json, rev_id, pg_pool).await;
|
|
|
+ },
|
|
|
}
|
|
|
};
|
|
|
fut_scripts.push(fut);
|
|
@@ -94,6 +152,8 @@ async fn run_scripts(context: ScriptContext, scripts: Vec<DocScript>) {
|
|
|
while let Some(script) = stream.next().await {
|
|
|
let _ = script.await;
|
|
|
}
|
|
|
+
|
|
|
+ std::mem::forget(context);
|
|
|
}
|
|
|
|
|
|
fn assert_eq(expect: &str, receive: &str) {
|
|
@@ -104,16 +164,16 @@ fn assert_eq(expect: &str, receive: &str) {
|
|
|
assert_eq!(expect, receive);
|
|
|
}
|
|
|
|
|
|
-async fn create_doc(flowy_test: &FlowyTest) -> Arc<ClientEditDocContext> {
|
|
|
+async fn create_doc(flowy_test: &FlowyTest) -> String {
|
|
|
let view_test = ViewTest::new(flowy_test).await;
|
|
|
let doc_id = view_test.view.id.clone();
|
|
|
- let user_session = flowy_test.sdk.user_session.clone();
|
|
|
- let flowy_document = flowy_test.sdk.flowy_document.clone();
|
|
|
-
|
|
|
- let edit_context = flowy_document
|
|
|
- .open(QueryDocParams { doc_id }, user_session.db_pool().unwrap())
|
|
|
- .await
|
|
|
- .unwrap();
|
|
|
+ doc_id
|
|
|
+}
|
|
|
|
|
|
- edit_context
|
|
|
+async fn save_doc(doc_id: &str, json: String, rev_id: i64, pool: Data<PgPool>) {
|
|
|
+ let mut params = UpdateDocParams::new();
|
|
|
+ params.set_doc_id(doc_id.to_owned());
|
|
|
+ params.set_data(json);
|
|
|
+ params.set_rev_id(rev_id);
|
|
|
+ let _ = update_doc(pool.get_ref(), params).await.unwrap();
|
|
|
}
|