extern crate micromark; use micromark::{ mdast::{Definition, Image, ImageReference, Node, Paragraph, ReferenceKind, Root, Text}, micromark, micromark_to_mdast, micromark_with_options, unist::Position, Constructs, Options, }; use pretty_assertions::assert_eq; #[test] fn image() -> Result<(), String> { assert_eq!( micromark("[link](/uri \"title\")"), "
", "should support links" ); assert_eq!( micromark("![foo](/url \"title\")"), "", "should support image w/ resource" ); assert_eq!( micromark("[foo *bar*]: train.jpg \"train & tracks\"\n\n![foo *bar*]"), "", "should support image as shortcut reference" ); assert_eq!( micromark("![foo ![bar](/url)](/url2)"), "", "should “support” images in images" ); assert_eq!( micromark("![foo [bar](/url)](/url2)"), "", "should “support” links in images" ); assert_eq!( micromark("[foo *bar*]: train.jpg \"train & tracks\"\n\n![foo *bar*][]"), "", "should support “content” in images" ); assert_eq!( micromark("[FOOBAR]: train.jpg \"train & tracks\"\n\n![foo *bar*][foobar]"), "", "should support “content” in images" ); assert_eq!( micromark("![foo](train.jpg)"), "", "should support images w/o title" ); assert_eq!( micromark("My ![foo bar](/path/to/train.jpg \"title\" )"), "My
", "should support images w/ lots of whitespace" ); assert_eq!( micromark("![foo](\n[]
", "should not support whitespace between sets of brackets" ); assert_eq!( micromark("[foo]: /url \"title\"\n\n![foo]"), "", "should support shortcut references (1)" ); assert_eq!( micromark("[*foo* bar]: /url \"title\"\n\n![*foo* bar]"), "", "should support shortcut references (2)" ); assert_eq!( micromark("[[foo]]: /url \"title\"\n\n![[foo]]"), "[[foo]]: /url "title"
\n![[foo]]
", "should not support link labels w/ unescaped brackets" ); assert_eq!( micromark("[foo]: /url \"title\"\n\n![Foo]"), "", "should support case-insensitive label matching" ); assert_eq!( micromark("[foo]: /url \"title\"\n\n!\\[foo]"), "![foo]
", "should “support” an escaped bracket instead of an image" ); assert_eq!( micromark("[foo]: /url \"title\"\n\n\\![foo]"), "!foo
", "should support an escaped bang instead of an image, but still have a link" ); // Extra assert_eq!( micromark("![foo]()"), "", "should support images w/o destination" ); assert_eq!( micromark("![foo](<>)"), "", "should support images w/ explicit empty destination" ); assert_eq!( micromark("![](example.png)"), "", "should support images w/o alt" ); assert_eq!( micromark("![alpha](bravo.png \"\")"), "", "should support images w/ empty title (1)" ); assert_eq!( micromark("![alpha](bravo.png '')"), "", "should support images w/ empty title (2)" ); assert_eq!( micromark("![alpha](bravo.png ())"), "", "should support images w/ empty title (3)" ); assert_eq!( micromark("![&©&](example.com/&©& \"&©&\")"), "", "should support character references in images" ); // Extra // See:!x
", "should support turning off label start (image)" ); assert_eq!( micromark("![](javascript:alert(1))"), "", "should ignore non-http protocols by default" ); assert_eq!( micromark_with_options( "![](javascript:alert(1))", &Options { allow_dangerous_protocol: true, ..Options::default() } )?, "", "should allow non-http protocols w/ `allowDangerousProtocol`" ); assert_eq!( micromark_to_mdast( "a ![alpha]() b ![bravo](charlie 'delta') c.", &Options::default() )?, Node::Root(Root { children: vec![Node::Paragraph(Paragraph { children: vec![ Node::Text(Text { value: "a ".to_string(), position: Some(Position::new(1, 1, 0, 1, 3, 2)) }), Node::Image(Image { alt: "alpha".to_string(), url: String::new(), title: None, position: Some(Position::new(1, 3, 2, 1, 13, 12)) }), Node::Text(Text { value: " b ".to_string(), position: Some(Position::new(1, 13, 12, 1, 16, 15)) }), Node::Image(Image { alt: "bravo".to_string(), url: "charlie".to_string(), title: Some("delta".to_string()), position: Some(Position::new(1, 16, 15, 1, 41, 40)) }), Node::Text(Text { value: " c.".to_string(), position: Some(Position::new(1, 41, 40, 1, 44, 43)) }) ], position: Some(Position::new(1, 1, 0, 1, 44, 43)) })], position: Some(Position::new(1, 1, 0, 1, 44, 43)) }), "should support image (resource) as `Image`s in mdast" ); assert_eq!( micromark_to_mdast( "[x]: y\n\na ![x] b ![x][] c ![d][x] e.", &Options::default() )?, Node::Root(Root { children: vec![ Node::Definition(Definition { identifier: "x".to_string(), label: Some("x".to_string()), url: "y".to_string(), title: None, position: Some(Position::new(1, 1, 0, 1, 7, 6)) }), Node::Paragraph(Paragraph { children: vec![ Node::Text(Text { value: "a ".to_string(), position: Some(Position::new(3, 1, 8, 3, 3, 10)) }), Node::ImageReference(ImageReference { reference_kind: ReferenceKind::Shortcut, identifier: "x".to_string(), label: Some("x".to_string()), alt: "x".to_string(), position: Some(Position::new(3, 3, 10, 3, 7, 14)) }), Node::Text(Text { value: " b ".to_string(), position: Some(Position::new(3, 7, 14, 3, 10, 17)) }), Node::ImageReference(ImageReference { reference_kind: ReferenceKind::Collapsed, identifier: "x".to_string(), label: Some("x".to_string()), alt: "x".to_string(), position: Some(Position::new(3, 10, 17, 3, 16, 23)) }), Node::Text(Text { value: " c ".to_string(), position: Some(Position::new(3, 16, 23, 3, 19, 26)) }), Node::ImageReference(ImageReference { reference_kind: ReferenceKind::Full, identifier: "x".to_string(), label: Some("x".to_string()), alt: "d".to_string(), position: Some(Position::new(3, 19, 26, 3, 26, 33)) }), Node::Text(Text { value: " e.".to_string(), position: Some(Position::new(3, 26, 33, 3, 29, 36)) }), ], position: Some(Position::new(3, 1, 8, 3, 29, 36)) }), ], position: Some(Position::new(1, 1, 0, 3, 29, 36)) }), "should support image (reference) as `ImageReference`s in mdast" ); Ok(()) }