aboutsummaryrefslogblamecommitdiffstats
path: root/tests/misc_default_line_ending.rs
blob: f839e2cb36e3b45acd95df29d7e57b3136e9a6a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                       
                                                                                        
                                 

       
                                                




                                                
 




                                                  
 




                                                  
 




                                                        
 



                               



                                                                    
                                    
             
           


                                                
 



                               



                                                                    
                                    
             
           




                                                                                             

          
 
extern crate micromark;
use micromark::{micromark, micromark_with_options, CompileOptions, LineEnding, Options};
use pretty_assertions::assert_eq;

#[test]
fn default_line_ending() -> Result<(), String> {
    assert_eq!(
        micromark("> a"),
        "<blockquote>\n<p>a</p>\n</blockquote>",
        "should use `\\n` default"
    );

    assert_eq!(
        micromark("> a\n"),
        "<blockquote>\n<p>a</p>\n</blockquote>\n",
        "should infer the first line ending (1)"
    );

    assert_eq!(
        micromark("> a\r"),
        "<blockquote>\r<p>a</p>\r</blockquote>\r",
        "should infer the first line ending (2)"
    );

    assert_eq!(
        micromark("> a\r\n"),
        "<blockquote>\r\n<p>a</p>\r\n</blockquote>\r\n",
        "should infer the first line ending (3)"
    );

    assert_eq!(
        micromark_with_options(
            "> a",
            &Options {
                compile: CompileOptions {
                    default_line_ending: LineEnding::CarriageReturn,
                    ..CompileOptions::default()
                },
                ..Options::default()
            }
        )?,
        "<blockquote>\r<p>a</p>\r</blockquote>",
        "should support the given line ending"
    );

    assert_eq!(
        micromark_with_options(
            "> a\n",
            &Options {
                compile: CompileOptions {
                    default_line_ending: LineEnding::CarriageReturn,
                    ..CompileOptions::default()
                },
                ..Options::default()
            }
        )?,
        // To do: is this a bug in `micromark.js` that it uses `\r` for earlier line endings?
        // "<blockquote>\r<p>a</p>\r</blockquote>\n",
        "<blockquote>\n<p>a</p>\n</blockquote>\n",
        "should support the given line ending, even if line endings exist"
    );

    Ok(())
}