2023-12-31 07:29:40 +08:00
|
|
|
use flowy_document::parser::external::parser::ExternalDataToNestedJSONParser;
|
|
|
|
use flowy_document::parser::parser_entities::{InputType, NestedBlock};
|
2023-11-02 22:13:29 +08:00
|
|
|
|
|
|
|
macro_rules! generate_test_cases {
|
|
|
|
($($ty:ident),*) => {
|
|
|
|
[
|
|
|
|
$(
|
|
|
|
(
|
|
|
|
include_str!(concat!("../../assets/json/", stringify!($ty), ".json")),
|
|
|
|
include_str!(concat!("../../assets/html/", stringify!($ty), ".html")),
|
|
|
|
)
|
|
|
|
),*
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// test convert data to json
|
|
|
|
/// - input html: <p>Hello</p><p> World!</p>
|
|
|
|
#[tokio::test]
|
|
|
|
async fn html_to_document_test() {
|
2023-12-26 18:15:35 +08:00
|
|
|
let test_cases = generate_test_cases!(notion, google_docs, simple);
|
2023-11-02 22:13:29 +08:00
|
|
|
|
|
|
|
for (json, html) in test_cases.iter() {
|
|
|
|
let parser = ExternalDataToNestedJSONParser::new(html.to_string(), InputType::Html);
|
|
|
|
let block = parser.to_nested_block();
|
|
|
|
assert!(block.is_some());
|
|
|
|
let block = block.unwrap();
|
|
|
|
let expect_block = serde_json::from_str::<NestedBlock>(json).unwrap();
|
|
|
|
assert_eq!(block, expect_block);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// test convert data to json
|
|
|
|
/// - input plain text: Hello World!
|
|
|
|
#[tokio::test]
|
|
|
|
async fn plain_text_to_document_test() {
|
|
|
|
let plain_text = include_str!("../../assets/text/plain_text.txt");
|
|
|
|
let parser = ExternalDataToNestedJSONParser::new(plain_text.to_string(), InputType::PlainText);
|
|
|
|
let block = parser.to_nested_block();
|
|
|
|
assert!(block.is_some());
|
|
|
|
let block = block.unwrap();
|
|
|
|
let expect_json = include_str!("../../assets/json/plain_text.json");
|
|
|
|
let expect_block = serde_json::from_str::<NestedBlock>(expect_json).unwrap();
|
|
|
|
assert_eq!(block, expect_block);
|
|
|
|
}
|