| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 | use flowy_sync::client_document::{ClientDocument, EmptyDocument};use lib_ot::text_delta::DeltaTextOperation;use lib_ot::{    core::*,    text_delta::{BuildInTextAttribute, DeltaTextOperations},};#[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);}#[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);}#[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);}#[test]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);}#[test]fn delta_serialize_multi_attribute_test() {    let mut delta = DeltaOperations::default();    let attributes = AttributeBuilder::new()        .insert_entry(BuildInTextAttribute::Bold(true))        .insert_entry(BuildInTextAttribute::Italic(true))        .build();    let retain = DeltaOperation::insert_with_attributes("123", attributes);    delta.add(retain);    delta.add(DeltaOperation::Retain(5.into()));    delta.add(DeltaOperation::Delete(3));    let json = serde_json::to_string(&delta).unwrap();    eprintln!("{}", json);    let delta_from_json = DeltaOperations::from_json(&json).unwrap();    assert_eq!(delta_from_json, delta);}#[test]fn delta_deserialize_test() {    let json = r#"[        {"retain":2,"attributes":{"italic":true}},        {"retain":2,"attributes":{"italic":123}},        {"retain":2,"attributes":{"italic":true,"bold":true}},        {"retain":2,"attributes":{"italic":true,"bold":true}}     ]"#;    let delta = DeltaTextOperations::from_json(json).unwrap();    eprintln!("{}", delta);}#[test]fn delta_deserialize_null_test() {    let json = r#"[        {"retain":7,"attributes":{"bold":null}}     ]"#;    let delta1 = DeltaTextOperations::from_json(json).unwrap();    let mut attribute = BuildInTextAttribute::Bold(true);    attribute.clear();    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);}#[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()    );}
 |