mod test_utils; use markdown::{ mdast::{MdxFlowExpression, Node, Root}, to_html_with_options, to_mdast, unist::Position, Constructs, Options, ParseOptions, }; use pretty_assertions::assert_eq; use test_utils::swc::{parse_esm, parse_expression}; #[test] fn mdx_expression_flow_agnostic() -> Result<(), String> { let mdx = Options { parse: ParseOptions::mdx(), ..Default::default() }; assert_eq!( to_html_with_options("{a}", &mdx)?, "", "should support an expression" ); assert_eq!( to_html_with_options("{}", &mdx)?, "", "should support an empty expression" ); // Note: in MDX, indented code is turned off: assert_eq!( to_html_with_options( " {}", &Options { parse: ParseOptions { constructs: Constructs { mdx_expression_flow: true, ..Default::default() }, ..Default::default() }, ..Default::default() } )?, "
{}\n
",
"should prefer indented code over expressions if it’s enabled"
);
assert_eq!(
to_html_with_options(
" {}",
&Options {
parse: ParseOptions {
constructs: Constructs {
mdx_expression_flow: true,
..Default::default()
},
..Default::default()
},
..Default::default()
}
)?,
"",
"should support indented expressions if indented code is enabled"
);
assert_eq!(
to_html_with_options("{a", &mdx).err().unwrap(),
"1:3: Unexpected end of file in expression, expected a corresponding closing brace for `{`",
"should crash if no closing brace is found (1)"
);
assert_eq!(
to_html_with_options("{b { c }", &mdx).err().unwrap(),
"1:9: Unexpected end of file in expression, expected a corresponding closing brace for `{`",
"should crash if no closing brace is found (2)"
);
assert_eq!(
to_html_with_options("{\n}\na", &mdx)?,
"a
", "should support a line ending in an expression" ); assert_eq!( to_html_with_options("{ a } \t\nb", &mdx)?, "b
", "should support expressions followed by spaces" ); assert_eq!( to_html_with_options(" { a }\nb", &mdx)?, "b
", "should support expressions preceded by spaces" ); assert_eq!( to_html_with_options("a\n\n* b", &mdx)?, "a
\n\n\n", "should not support lazyness (2)" ); assert_eq!( to_html_with_options("> {a}\nb", &mdx)?, "a
\n
\n\n
b
", "should not support lazyness (3)" ); assert_eq!( to_html_with_options("> {\n> a\nb}", &mdx) .err() .unwrap(), "3:1: Unexpected lazy line in expression in container, expected line to be prefixed with `>` when in a block quote, whitespace when in a list, etc", "should not support lazyness (4)" ); assert_eq!( to_mdast("{alpha +\nbravo}", &mdx.parse)?, Node::Root(Root { children: vec![Node::MdxFlowExpression(MdxFlowExpression { value: "alpha +\nbravo".into(), position: Some(Position::new(1, 1, 0, 2, 7, 15)), stops: vec![(0, 1), (7, 8), (8, 9)] })], position: Some(Position::new(1, 1, 0, 2, 7, 15)) }), "should support mdx expressions (flow) as `MdxFlowExpression`s in mdast" ); Ok(()) } #[test] fn mdx_expression_flow_gnostic() -> Result<(), String> { let swc = Options { parse: ParseOptions { constructs: Constructs::mdx(), mdx_esm_parse: Some(Box::new(parse_esm)), mdx_expression_parse: Some(Box::new(parse_expression)), ..Default::default() }, ..Default::default() }; assert_eq!( to_html_with_options("{a}", &swc)?, "", "should support an expression" ); assert_eq!( to_html_with_options("{}", &swc)?, "", "should support an empty expression" ); assert_eq!( to_html_with_options("{a", &swc).err().unwrap(), "1:3: Unexpected end of file in expression, expected a corresponding closing brace for `{`", "should crash if no closing brace is found (1)" ); assert_eq!( to_html_with_options("{b { c }", &swc).err().unwrap(), "1:9: Could not parse expression with swc: Unexpected content after expression", "should crash if no closing brace is found (2)" ); assert_eq!( to_html_with_options("{\n}\na", &swc)?, "a
", "should support a line ending in an expression" ); assert_eq!( to_html_with_options("{ a } \t\nb", &swc)?, "b
", "should support expressions followed by spaces" ); assert_eq!( to_html_with_options(" { a }\nb", &swc)?, "b
", "should support expressions preceded by spaces" ); assert_eq!( to_html_with_options(" {`\n a\n `}", &swc)?, "", "should support indented expressions" ); assert_eq!( to_html_with_options("a{(b)}c", &swc)?, "ac
", "should support expressions padded w/ parens" ); assert_eq!( to_html_with_options("a{/* b */ ( (c) /* d */ + (e) )}f", &swc)?, "af
", "should support expressions padded w/ parens and comments" ); Ok(()) } #[test] fn mdx_expression_spread() -> Result<(), String> { let swc = Options { parse: ParseOptions { constructs: Constructs::mdx(), mdx_esm_parse: Some(Box::new(parse_esm)), mdx_expression_parse: Some(Box::new(parse_expression)), ..Default::default() }, ..Default::default() }; assert_eq!( to_html_with_options("", &swc)?, "", "should support spreads for attribute expression" ); assert_eq!( to_html_with_options("", &swc).err().unwrap(), "1:5: Unexpected prop in spread (such as `{x}`): only a spread is supported (such as `{...x}`)", "should crash if not a spread" ); assert_eq!( to_html_with_options("", &swc).err().unwrap(), "1:13: Could not parse expression with swc: Expression expected", "should crash on an incorrect spread" ); assert_eq!( to_html_with_options("", &swc).err().unwrap(), "1:5: Unexpected extra content in spread (such as `{...x,y}`): only a single spread is supported (such as `{...x}`)", "should crash if a spread and other things" ); assert_eq!( to_html_with_options("", &swc).err().unwrap(), "1:9: Unexpected prop in spread (such as `{x}`): only a spread is supported (such as `{...x}`)", "should crash on an empty spread" ); assert_eq!( to_html_with_options("", &swc).err().unwrap(), "1:12: Could not parse expression with swc: assignment property is invalid syntax", "should crash if not an identifier" ); assert_eq!( to_html_with_options("", &swc).err().unwrap(), "1:5: Unexpected prop in spread (such as `{x}`): only a spread is supported (such as `{...x}`)", "should crash on a comment spread" ); Ok(()) }