orgize/tests/html.rs

68 lines
1.5 KiB
Rust
Raw Normal View History

2019-04-07 18:40:52 +01:00
extern crate orgize;
use orgize::export::HtmlRender;
use std::io::Cursor;
2019-04-24 14:54:51 +01:00
macro_rules! html_test {
($name:ident, $content:expr, $expected:expr) => {
#[test]
fn $name() {
let mut cursor = Cursor::new(Vec::new());
let mut render = HtmlRender::default(&mut cursor, $content);
render.render().expect("render error");
let s = String::from_utf8(cursor.into_inner()).expect("invalid utf-8");
assert_eq!(s, $expected);
}
};
2019-04-07 18:40:52 +01:00
}
2019-04-24 14:54:51 +01:00
html_test!(
emphasis,
"*bold*, /italic/,_underlined_, =verbatim= and ~code~",
"<section><p><b>bold</b>, <i>italic</i>,<u>underlined</u>, <code>verbatim</code> and <code>code</code></p></section>"
);
html_test!(
section_and_headline,
2019-04-24 14:54:51 +01:00
r#"* Title 1
2019-04-07 18:40:52 +01:00
*Section 1*
** Title 2
_Section 2_
* Title 3
/Section 3/
* Title 4
=Section 4="#,
"<h1>Title 1</h1>\
<section><p><b>Section 1</b></p></section>\
<h2>Title 2</h2>\
<section><p><u>Section 2</u></p></section>\
<h1>Title 3</h1>\
<section><p><i>Section 3</i></p></section>\
<h1>Title 4</h1>\
<section><p><code>Section 4</code></p></section>"
2019-04-24 14:54:51 +01:00
);
2019-04-08 12:35:38 +01:00
2019-04-24 14:54:51 +01:00
html_test!(
list,
r#"+ 1
2019-04-08 12:35:38 +01:00
+ 2
- 3
- 4
+ 5"#,
2019-04-24 14:54:51 +01:00
"<section><ul>\
<li><p>1</p></li>\
<li><p>2</p><ul><li><p>3</p></li><li><p>4</p></li></ul></li>\
<li><p>5</p></li>\
</ul></section>"
);
html_test!(
snippet,
"@@html:<del>@@delete this@@html:</del>@@",
"<section><p><del>delete this</del></p></section>"
);