Search in sources :

Example 26 with Node

use of com.vladsch.flexmark.ast.Node in project flexmark-java by vsch.

the class ComboFlexmarkHtmlAttributesParserTest method assertRendering.

// reverse source and html
@Override
protected void assertRendering(String source, String expectedHtml, String optionsSet) {
    DataHolder options = optionsSet == null ? null : getOptions(example(), optionsSet);
    String parseSource = expectedHtml;
    if (options != null && options.get(NO_FILE_EOL)) {
        parseSource = DumpSpecReader.trimTrailingEOL(parseSource);
    }
    Node node = parser().withOptions(options).parse(parseSource);
    String renderedResult = renderer().withOptions(options).render(node);
    String expectedResult = source;
    actualSource(renderedResult, optionsSet);
    boolean useActualHtml = useActualHtml();
    // include source for better assertion errors
    String expected;
    String actual;
    if (example() != null && example().getSection() != null) {
        StringBuilder outExpected = new StringBuilder();
        DumpSpecReader.addSpecExample(outExpected, expectedResult, expectedHtml, "", optionsSet, true, example().getSection(), example().getExampleNumber());
        expected = outExpected.toString();
        StringBuilder outActual = new StringBuilder();
        DumpSpecReader.addSpecExample(outActual, useActualHtml ? renderedResult : expectedResult, expectedHtml, "", optionsSet, true, example().getSection(), example().getExampleNumber());
        actual = outActual.toString();
    } else {
        expected = DumpSpecReader.addSpecExample(expectedResult, expectedHtml, "", optionsSet);
        actual = DumpSpecReader.addSpecExample(useActualHtml ? renderedResult : expectedResult, expectedHtml, "", optionsSet);
    }
    specExample(expected, actual, optionsSet);
    if (options != null && options.get(FAIL)) {
        thrown.expect(ComparisonFailure.class);
    }
    assertEquals(expected, actual);
}
Also used : DataHolder(com.vladsch.flexmark.util.options.DataHolder) Node(com.vladsch.flexmark.ast.Node)

Example 27 with Node

use of com.vladsch.flexmark.ast.Node in project flexmark-java by vsch.

the class ComboFlexmarkHtmlParserTest method assertRendering.

// reverse source and html
@Override
protected void assertRendering(String source, String expectedHtml, String optionsSet) {
    DataHolder options = optionsSet == null ? null : getOptions(example(), optionsSet);
    String parseSource = expectedHtml;
    if (options != null && options.get(NO_FILE_EOL)) {
        parseSource = DumpSpecReader.trimTrailingEOL(parseSource);
    }
    Node node = parser().withOptions(options).parse(parseSource);
    String renderedResult = renderer().withOptions(options).render(node);
    String expectedResult = source;
    actualSource(renderedResult, optionsSet);
    boolean useActualHtml = useActualHtml();
    // include source for better assertion errors
    String expected;
    String actual;
    if (example() != null && example().getSection() != null) {
        StringBuilder outExpected = new StringBuilder();
        DumpSpecReader.addSpecExample(outExpected, expectedResult, expectedHtml, "", optionsSet, true, example().getSection(), example().getExampleNumber());
        expected = outExpected.toString();
        StringBuilder outActual = new StringBuilder();
        DumpSpecReader.addSpecExample(outActual, useActualHtml ? renderedResult : expectedResult, expectedHtml, "", optionsSet, true, example().getSection(), example().getExampleNumber());
        actual = outActual.toString();
    } else {
        expected = DumpSpecReader.addSpecExample(expectedResult, expectedHtml, "", optionsSet);
        actual = DumpSpecReader.addSpecExample(useActualHtml ? renderedResult : expectedResult, expectedHtml, "", optionsSet);
    }
    specExample(expected, actual, optionsSet);
    if (options != null && options.get(FAIL)) {
        thrown.expect(ComparisonFailure.class);
    }
    assertEquals(expected, actual);
}
Also used : DataHolder(com.vladsch.flexmark.util.options.DataHolder) Node(com.vladsch.flexmark.ast.Node)

Example 28 with Node

use of com.vladsch.flexmark.ast.Node in project flexmark-java by vsch.

the class YamlFrontMatterTest method simpleValue.

@Test
public void simpleValue() {
    final String input = "---" + "\nhello: world" + "\n..." + "\n" + "\ngreat";
    final String rendered = "<p>great</p>\n";
    AbstractYamlFrontMatterVisitor visitor = new AbstractYamlFrontMatterVisitor();
    Node document = PARSER.parse(input);
    visitor.visit(document);
    Map<String, List<String>> data = visitor.getData();
    assertEquals(1, data.size());
    assertEquals("hello", data.keySet().iterator().next());
    assertEquals(1, data.get("hello").size());
    assertEquals("world", data.get("hello").get(0));
    assertRendering(input, rendered);
}
Also used : Node(com.vladsch.flexmark.ast.Node) List(java.util.List) Test(org.junit.Test)

Example 29 with Node

use of com.vladsch.flexmark.ast.Node in project flexmark-java by vsch.

the class YamlFrontMatterTest method yamlInParagraph.

@Test
public void yamlInParagraph() {
    final String input = "# hello\n" + "\nhello markdown world!" + "\n---" + "\nhello: world" + "\n---";
    final String rendered = "<h1>hello</h1>\n<h2>hello markdown world!</h2>\n<h2>hello: world</h2>\n";
    AbstractYamlFrontMatterVisitor visitor = new AbstractYamlFrontMatterVisitor();
    Node document = PARSER.parse(input);
    visitor.visit(document);
    Map<String, List<String>> data = visitor.getData();
    assertTrue(data.isEmpty());
    assertRendering(input, rendered);
}
Also used : Node(com.vladsch.flexmark.ast.Node) List(java.util.List) Test(org.junit.Test)

Example 30 with Node

use of com.vladsch.flexmark.ast.Node in project flexmark-java by vsch.

the class YamlFrontMatterTest method emptyValue.

@Test
public void emptyValue() {
    final String input = "---" + "\nkey:" + "\n---" + "\n" + "\ngreat";
    final String rendered = "<p>great</p>\n";
    AbstractYamlFrontMatterVisitor visitor = new AbstractYamlFrontMatterVisitor();
    Node document = PARSER.parse(input);
    visitor.visit(document);
    Map<String, List<String>> data = visitor.getData();
    assertEquals(1, data.size());
    assertEquals("key", data.keySet().iterator().next());
    assertEquals(0, data.get("key").size());
    assertRendering(input, rendered);
}
Also used : Node(com.vladsch.flexmark.ast.Node) List(java.util.List) Test(org.junit.Test)

Aggregations

Node (com.vladsch.flexmark.ast.Node)87 Parser (com.vladsch.flexmark.parser.Parser)29 HtmlRenderer (com.vladsch.flexmark.html.HtmlRenderer)21 Test (org.junit.Test)19 MutableDataSet (com.vladsch.flexmark.util.options.MutableDataSet)14 DataHolder (com.vladsch.flexmark.util.options.DataHolder)11 List (java.util.List)8 BasedSequence (com.vladsch.flexmark.util.sequence.BasedSequence)6 MutableDataHolder (com.vladsch.flexmark.util.options.MutableDataHolder)5 Text (com.vladsch.flexmark.ast.Text)3 TextCollectingVisitor (com.vladsch.flexmark.ast.util.TextCollectingVisitor)3 Extension (com.vladsch.flexmark.Extension)2 Block (com.vladsch.flexmark.ast.Block)2 CustomNode (com.vladsch.flexmark.ast.CustomNode)2 Document (com.vladsch.flexmark.ast.Document)2 Heading (com.vladsch.flexmark.ast.Heading)2 DocxRenderer (com.vladsch.flexmark.docx.converter.internal.DocxRenderer)2 MacroClose (com.vladsch.flexmark.ext.xwiki.macros.MacroClose)2 AstCollectingVisitor (com.vladsch.flexmark.test.AstCollectingVisitor)2 Attributes (com.vladsch.flexmark.util.html.Attributes)2