mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 01:18:56 +00:00

* chore: write snapshot * chore: add tests * chore: sync close * chore: restore from snapshot * chore: delete invalid revisions after restored from snapshot * chore: create default view if it fail to deserialize view's revisions when there is no snapshot * chore: auto generate snapshot Co-authored-by: nathan <nathan@appflowy.io>
106 lines
3.3 KiB
Rust
106 lines
3.3 KiB
Rust
use crate::grid::grid_editor::GridEditorTest;
|
|
|
|
use flowy_http_model::revision::Revision;
|
|
use flowy_revision::{RevisionSnapshot, REVISION_WRITE_INTERVAL_IN_MILLIS};
|
|
use flowy_sync::client_grid::{GridOperations, GridRevisionPad};
|
|
use grid_rev_model::FieldRevision;
|
|
use std::time::Duration;
|
|
use tokio::time::sleep;
|
|
|
|
pub enum SnapshotScript {
|
|
WriteSnapshot,
|
|
#[allow(dead_code)]
|
|
AssertSnapshot {
|
|
rev_id: i64,
|
|
expected: Option<RevisionSnapshot>,
|
|
},
|
|
AssertSnapshotContent {
|
|
snapshot: RevisionSnapshot,
|
|
expected: String,
|
|
},
|
|
CreateField {
|
|
field_rev: FieldRevision,
|
|
},
|
|
DeleteField {
|
|
field_rev: FieldRevision,
|
|
},
|
|
}
|
|
|
|
pub struct GridSnapshotTest {
|
|
inner: GridEditorTest,
|
|
pub current_snapshot: Option<RevisionSnapshot>,
|
|
pub current_revision: Option<Revision>,
|
|
}
|
|
|
|
impl GridSnapshotTest {
|
|
pub async fn new() -> Self {
|
|
let editor_test = GridEditorTest::new_table().await;
|
|
Self {
|
|
inner: editor_test,
|
|
current_snapshot: None,
|
|
current_revision: None,
|
|
}
|
|
}
|
|
|
|
pub fn grid_id(&self) -> String {
|
|
self.grid_id.clone()
|
|
}
|
|
|
|
pub async fn grid_pad(&self) -> GridRevisionPad {
|
|
let pad = self.editor.grid_pad();
|
|
let pad = (*pad.read().await).clone();
|
|
pad
|
|
}
|
|
|
|
pub async fn run_scripts(&mut self, scripts: Vec<SnapshotScript>) {
|
|
for script in scripts {
|
|
self.run_script(script).await;
|
|
}
|
|
}
|
|
|
|
pub async fn get_latest_snapshot(&self) -> Option<RevisionSnapshot> {
|
|
self.editor.rev_manager().read_snapshot(None).await.unwrap()
|
|
}
|
|
|
|
pub async fn run_script(&mut self, script: SnapshotScript) {
|
|
let rev_manager = self.editor.rev_manager();
|
|
match script {
|
|
SnapshotScript::WriteSnapshot => {
|
|
sleep(Duration::from_millis(2 * REVISION_WRITE_INTERVAL_IN_MILLIS)).await;
|
|
rev_manager.generate_snapshot().await;
|
|
self.current_snapshot = rev_manager.read_snapshot(None).await.unwrap();
|
|
}
|
|
SnapshotScript::AssertSnapshot { rev_id, expected } => {
|
|
let snapshot = rev_manager.read_snapshot(Some(rev_id)).await.unwrap();
|
|
assert_eq!(snapshot, expected);
|
|
}
|
|
SnapshotScript::AssertSnapshotContent { snapshot, expected } => {
|
|
let operations = GridOperations::from_bytes(snapshot.data).unwrap();
|
|
let pad = GridRevisionPad::from_operations(operations).unwrap();
|
|
assert_eq!(pad.json_str().unwrap(), expected);
|
|
}
|
|
SnapshotScript::CreateField { field_rev } => {
|
|
self.editor.create_new_field_rev(field_rev).await.unwrap();
|
|
let current_rev_id = rev_manager.rev_id();
|
|
self.current_revision = rev_manager.get_revision(current_rev_id).await;
|
|
}
|
|
SnapshotScript::DeleteField { field_rev } => {
|
|
self.editor.delete_field(&field_rev.id).await.unwrap();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
impl std::ops::Deref for GridSnapshotTest {
|
|
type Target = GridEditorTest;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.inner
|
|
}
|
|
}
|
|
|
|
impl std::ops::DerefMut for GridSnapshotTest {
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
&mut self.inner
|
|
}
|
|
}
|