2022-09-09 09:08:20 +00:00
|
|
|
use lib_ot::core::{DocumentTree, NodeAttributes, NodeSubTree, Path, TransactionBuilder};
|
2022-09-09 07:05:41 +00:00
|
|
|
|
|
|
|
pub enum NodeScript {
|
|
|
|
InsertNode { path: Path, node: NodeSubTree },
|
|
|
|
InsertAttributes { path: Path, attributes: NodeAttributes },
|
|
|
|
DeleteNode { path: Path },
|
|
|
|
AssertNumberOfChildrenAtPath { path: Option<Path>, len: usize },
|
|
|
|
AssertNode { path: Path, expected: Option<NodeSubTree> },
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct NodeTest {
|
|
|
|
node_tree: DocumentTree,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NodeTest {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
node_tree: DocumentTree::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run_scripts(&mut self, scripts: Vec<NodeScript>) {
|
|
|
|
for script in scripts {
|
|
|
|
self.run_script(script);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run_script(&mut self, script: NodeScript) {
|
|
|
|
match script {
|
|
|
|
NodeScript::InsertNode { path, node } => {
|
|
|
|
let transaction = TransactionBuilder::new(&self.node_tree)
|
|
|
|
.insert_node_at_path(path, node)
|
|
|
|
.finalize();
|
|
|
|
|
|
|
|
self.node_tree.apply(transaction).unwrap();
|
|
|
|
}
|
|
|
|
NodeScript::InsertAttributes { path, attributes } => {
|
|
|
|
let transaction = TransactionBuilder::new(&self.node_tree)
|
|
|
|
.update_attributes_at_path(&path, attributes.to_inner())
|
|
|
|
.finalize();
|
|
|
|
self.node_tree.apply(transaction).unwrap();
|
|
|
|
}
|
|
|
|
NodeScript::DeleteNode { path } => {
|
|
|
|
let transaction = TransactionBuilder::new(&self.node_tree)
|
|
|
|
.delete_node_at_path(&path)
|
|
|
|
.finalize();
|
|
|
|
self.node_tree.apply(transaction).unwrap();
|
|
|
|
}
|
|
|
|
NodeScript::AssertNode { path, expected } => {
|
|
|
|
let node_id = self.node_tree.node_at_path(path);
|
|
|
|
|
|
|
|
match node_id {
|
|
|
|
None => assert!(node_id.is_none()),
|
|
|
|
Some(node_id) => {
|
|
|
|
let node_data = self.node_tree.get_node_data(node_id).cloned();
|
|
|
|
assert_eq!(node_data, expected.and_then(|e| Some(e.to_node_data())));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NodeScript::AssertNumberOfChildrenAtPath {
|
|
|
|
path,
|
|
|
|
len: expected_len,
|
|
|
|
} => match path {
|
|
|
|
None => {
|
|
|
|
let len = self.node_tree.number_of_children(None);
|
|
|
|
assert_eq!(len, expected_len)
|
|
|
|
}
|
|
|
|
Some(path) => {
|
|
|
|
let node_id = self.node_tree.node_at_path(path).unwrap();
|
|
|
|
let len = self.node_tree.number_of_children(Some(node_id));
|
|
|
|
assert_eq!(len, expected_len)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|