119 lines
3.4 KiB
Rust
Raw Normal View History

2023-01-30 11:11:19 +08:00
use flowy_client_sync::client_document::{ClientDocument, EmptyDocument};
2022-10-22 21:57:44 +08:00
use lib_ot::text_delta::DeltaTextOperation;
2021-12-07 19:59:08 +08:00
use lib_ot::{
core::*,
text_delta::{BuildInTextAttribute, DeltaTextOperations},
2021-12-07 19:59:08 +08:00
};
2021-08-01 14:39:30 +08:00
#[test]
fn operation_insert_serialize_test() {
let attributes = AttributeBuilder::new()
.insert("bold", true)
.insert("italic", true)
.build();
let operation = DeltaOperation::insert_with_attributes("123", attributes);
let json = serde_json::to_string(&operation).unwrap();
eprintln!("{}", json);
let insert_op: DeltaTextOperation = serde_json::from_str(&json).unwrap();
assert_eq!(insert_op, operation);
2021-08-01 14:39:30 +08:00
}
#[test]
fn operation_retain_serialize_test() {
let operation = DeltaOperation::Retain(12.into());
let json = serde_json::to_string(&operation).unwrap();
eprintln!("{}", json);
let insert_op: DeltaTextOperation = serde_json::from_str(&json).unwrap();
assert_eq!(insert_op, operation);
2021-08-01 14:39:30 +08:00
}
#[test]
fn operation_delete_serialize_test() {
let operation = DeltaTextOperation::Delete(2);
let json = serde_json::to_string(&operation).unwrap();
let insert_op: DeltaTextOperation = serde_json::from_str(&json).unwrap();
assert_eq!(insert_op, operation);
2021-08-01 14:39:30 +08:00
}
#[test]
2021-09-15 15:01:24 +08:00
fn attributes_serialize_test() {
let attributes = AttributeBuilder::new()
.insert_entry(BuildInTextAttribute::Bold(true))
.insert_entry(BuildInTextAttribute::Italic(true))
.build();
let retain = DeltaOperation::insert_with_attributes("123", attributes);
let json = serde_json::to_string(&retain).unwrap();
eprintln!("{}", json);
2021-09-15 15:01:24 +08:00
}
#[test]
fn delta_serialize_multi_attribute_test() {
let mut delta = DeltaOperations::default();
2021-08-01 14:39:30 +08:00
let attributes = AttributeBuilder::new()
.insert_entry(BuildInTextAttribute::Bold(true))
.insert_entry(BuildInTextAttribute::Italic(true))
.build();
let retain = DeltaOperation::insert_with_attributes("123", attributes);
2021-08-01 14:39:30 +08:00
delta.add(retain);
delta.add(DeltaOperation::Retain(5.into()));
delta.add(DeltaOperation::Delete(3));
2021-08-01 14:39:30 +08:00
let json = serde_json::to_string(&delta).unwrap();
eprintln!("{}", json);
2021-08-01 14:39:30 +08:00
let delta_from_json = DeltaOperations::from_json(&json).unwrap();
assert_eq!(delta_from_json, delta);
2021-08-01 14:39:30 +08:00
}
2021-09-12 22:19:59 +08:00
2021-09-15 15:01:24 +08:00
#[test]
fn delta_deserialize_test() {
let json = r#"[
2021-09-15 15:01:24 +08:00
{"retain":2,"attributes":{"italic":true}},
{"retain":2,"attributes":{"italic":123}},
2022-09-13 11:38:19 +08:00
{"retain":2,"attributes":{"italic":true,"bold":true}},
2021-09-15 15:01:24 +08:00
{"retain":2,"attributes":{"italic":true,"bold":true}}
]"#;
let delta = DeltaTextOperations::from_json(json).unwrap();
eprintln!("{}", delta);
2021-09-15 15:01:24 +08:00
}
#[test]
fn delta_deserialize_null_test() {
let json = r#"[
2021-09-15 16:35:40 +08:00
{"retain":7,"attributes":{"bold":null}}
2021-09-15 15:01:24 +08:00
]"#;
let delta1 = DeltaTextOperations::from_json(json).unwrap();
let mut attribute = BuildInTextAttribute::Bold(true);
attribute.clear();
2022-09-13 11:38:19 +08:00
let delta2 = DeltaOperationBuilder::new()
.retain_with_attributes(7, attribute.into())
.build();
assert_eq!(
delta2.json_str(),
r#"[{"retain":7,"attributes":{"bold":null}}]"#
);
assert_eq!(delta1, delta2);
}
2021-09-12 22:19:59 +08:00
#[test]
fn document_insert_serde_test() {
let mut document = ClientDocument::new::<EmptyDocument>();
document.insert(0, "\n").unwrap();
document.insert(0, "123").unwrap();
let json = document.get_operations_json();
assert_eq!(r#"[{"insert":"123\n"}]"#, json);
assert_eq!(
r#"[{"insert":"123\n"}]"#,
ClientDocument::from_json(&json)
.unwrap()
.get_operations_json()
);
2021-09-12 22:19:59 +08:00
}