mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 10:03:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use flowy_collaboration::entities::revision::RevisionState;
 | |
| use flowy_document::editor::ClientDocumentEditor;
 | |
| use flowy_document::DOCUMENT_SYNC_INTERVAL_IN_MILLIS;
 | |
| use flowy_test::{helper::ViewTest, FlowySDKTest};
 | |
| use lib_ot::{core::Interval, rich_text::RichTextDelta};
 | |
| use std::sync::Arc;
 | |
| use tokio::time::{sleep, Duration};
 | |
| 
 | |
| pub enum EditorScript {
 | |
|     InsertText(&'static str, usize),
 | |
|     Delete(Interval),
 | |
|     Replace(Interval, &'static str),
 | |
| 
 | |
|     AssertRevisionState(i64, RevisionState),
 | |
|     AssertNextSyncRevId(Option<i64>),
 | |
|     AssertCurrentRevId(i64),
 | |
|     AssertJson(&'static str),
 | |
| }
 | |
| 
 | |
| pub struct EditorTest {
 | |
|     pub sdk: FlowySDKTest,
 | |
|     pub editor: Arc<ClientDocumentEditor>,
 | |
| }
 | |
| 
 | |
| impl EditorTest {
 | |
|     pub async fn new() -> Self {
 | |
|         let sdk = FlowySDKTest::default();
 | |
|         let _ = sdk.init_user().await;
 | |
|         let test = ViewTest::new(&sdk).await;
 | |
|         let editor = sdk.document_manager.open_document(&test.view.id).await.unwrap();
 | |
|         Self { sdk, editor }
 | |
|     }
 | |
| 
 | |
|     pub async fn run_scripts(mut self, scripts: Vec<EditorScript>) {
 | |
|         for script in scripts {
 | |
|             self.run_script(script).await;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     async fn run_script(&mut self, script: EditorScript) {
 | |
|         let rev_manager = self.editor.rev_manager();
 | |
|         let cache = rev_manager.revision_cache().await;
 | |
|         let _user_id = self.sdk.user_session.user_id().unwrap();
 | |
|         // let ws_manager = self.sdk.ws_conn.clone();
 | |
|         // let token = self.sdk.user_session.token().unwrap();
 | |
| 
 | |
|         match script {
 | |
|             EditorScript::InsertText(s, offset) => {
 | |
|                 self.editor.insert(offset, s).await.unwrap();
 | |
|             }
 | |
|             EditorScript::Delete(interval) => {
 | |
|                 self.editor.delete(interval).await.unwrap();
 | |
|             }
 | |
|             EditorScript::Replace(interval, s) => {
 | |
|                 self.editor.replace(interval, s).await.unwrap();
 | |
|             }
 | |
|             EditorScript::AssertRevisionState(rev_id, state) => {
 | |
|                 let record = cache.get(rev_id).await.unwrap();
 | |
|                 assert_eq!(record.state, state);
 | |
|             }
 | |
|             EditorScript::AssertCurrentRevId(rev_id) => {
 | |
|                 assert_eq!(self.editor.rev_manager().rev_id(), rev_id);
 | |
|             }
 | |
|             EditorScript::AssertNextSyncRevId(rev_id) => {
 | |
|                 let next_revision = rev_manager.next_sync_revision().await.unwrap();
 | |
|                 if rev_id.is_none() {
 | |
|                     assert!(next_revision.is_none(), "Next revision should be None");
 | |
|                     return;
 | |
|                 }
 | |
|                 let next_revision = next_revision.unwrap();
 | |
|                 let mut notify = rev_manager.ack_notify();
 | |
|                 let _ = notify.recv().await;
 | |
|                 assert_eq!(next_revision.rev_id, rev_id.unwrap());
 | |
|             }
 | |
|             EditorScript::AssertJson(expected) => {
 | |
|                 let expected_delta: RichTextDelta = serde_json::from_str(expected).unwrap();
 | |
|                 let delta = self.editor.doc_delta().await.unwrap();
 | |
|                 if expected_delta != delta {
 | |
|                     eprintln!("✅ expect: {}", expected,);
 | |
|                     eprintln!("❌ receive: {}", delta.to_json());
 | |
|                 }
 | |
|                 assert_eq!(expected_delta, delta);
 | |
|             }
 | |
|         }
 | |
|         sleep(Duration::from_millis(DOCUMENT_SYNC_INTERVAL_IN_MILLIS)).await;
 | |
|     }
 | |
| }
 | 
