aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_zero.rs
blob: ed9f1bcb8009b1ebd56060b0bf9677c56e275fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use markdown::{
    mdast::{Node, Root},
    to_html, to_mdast,
    unist::Position,
};
use pretty_assertions::assert_eq;

#[test]
fn zero() -> Result<(), String> {
    assert_eq!(to_html(""), "", "should support no markdown");

    assert_eq!(
        to_html("asd\0asd"),
        "<p>asd�asd</p>",
        "should replace `\\0` w/ a replacement characters (`�`)"
    );

    assert_eq!(
        to_html("&#0;"),
        "<p>�</p>",
        "should replace NUL in a character reference"
    );

    // This doesn’t make sense in markdown, as character escapes only work on
    // ascii punctuation, but it’s good to demonstrate the behavior.
    assert_eq!(
        to_html("\\0"),
        "<p>\\0</p>",
        "should not support NUL in a character escape"
    );

    assert_eq!(
        to_mdast("", &Default::default())?,
        Node::Root(Root {
            children: vec![],
            position: Some(Position::new(1, 1, 0, 1, 1, 0))
        }),
        "should support no markdown (ast)"
    );

    Ok(())
}