Skip to content

Commit

Permalink
chore: fix document test (AppFlowy-IO#5470)
Browse files Browse the repository at this point in the history
* chore: fix document test
  • Loading branch information
appflowy authored Jun 5, 2024
1 parent a0e981e commit f6e33a5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/rust-lib/flowy-document/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ getrandom = { version = "0.2", features = ["js"] }
tempfile = "3.4.0"
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
collab-integrate = { workspace = true }
tokio = { workspace = true, features = ["rt", "rt-multi-thread"] }

[build-dependencies]
flowy-codegen.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ async fn undo_redo_test() {
.await;

// open a document
test.open_document(&doc_id).await.unwrap();
let document = test.get_document(&doc_id).await.unwrap();
let document = document.lock();
let page_block = document.get_block(&data.page_id).unwrap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ async fn restore_document() {
.unwrap();
let data_a = test.get_document_data(&doc_id).await.unwrap();
assert_eq!(data_a, data);
test.open_document(&doc_id).await.unwrap();

let data_b = test
.get_document(&doc_id)
Expand Down Expand Up @@ -59,6 +60,7 @@ async fn document_apply_insert_action() {
_ = test.create_document(uid, &doc_id, Some(data.clone())).await;

// open a document
test.open_document(&doc_id).await.unwrap();
let document = test.get_document(&doc_id).await.unwrap();
let page_block = document.lock().get_block(&data.page_id).unwrap();

Expand Down Expand Up @@ -112,6 +114,7 @@ async fn document_apply_update_page_action() {
_ = test.create_document(uid, &doc_id, Some(data.clone())).await;

// open a document
test.open_document(&doc_id).await.unwrap();
let document = test.get_document(&doc_id).await.unwrap();
let page_block = document.lock().get_block(&data.page_id).unwrap();

Expand Down Expand Up @@ -155,6 +158,7 @@ async fn document_apply_update_action() {
_ = test.create_document(uid, &doc_id, Some(data.clone())).await;

// open a document
test.open_document(&doc_id).await.unwrap();
let document = test.get_document(&doc_id).await.unwrap();
let page_block = document.lock().get_block(&data.page_id).unwrap();

Expand Down
1 change: 1 addition & 0 deletions frontend/rust-lib/flowy-document/tests/document/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ pub async fn create_and_open_empty_document() -> (DocumentTest, Arc<MutexDocumen
.await
.unwrap();

test.open_document(&doc_id).await.unwrap();
let document = test.get_document(&doc_id).await.unwrap();

(test, document, data.page_id)
Expand Down

0 comments on commit f6e33a5

Please sign in to comment.