-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
asciidoctorj-core/src/test/java/org/asciidoctor/jruby/ast/impl/SectionImplTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package org.asciidoctor.jruby.ast.impl; | ||
|
||
import org.asciidoctor.Asciidoctor; | ||
import org.asciidoctor.Attributes; | ||
import org.asciidoctor.Options; | ||
import org.asciidoctor.ast.Document; | ||
import org.asciidoctor.ast.Section; | ||
import org.junit.Test; | ||
|
||
import java.util.Collections; | ||
|
||
import static java.lang.Boolean.FALSE; | ||
import static java.lang.Boolean.TRUE; | ||
import static org.hamcrest.CoreMatchers.is; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
|
||
public class SectionImplTest { | ||
|
||
private Asciidoctor asciidoctor = Asciidoctor.Factory.create(); | ||
|
||
|
||
@Test | ||
public void should_return_valid_sectnum_when_sectionNumbers_are_enabled() { | ||
final String source = sectionsSample(); | ||
|
||
Document document = loadDocument(source, true); | ||
|
||
Section node1 = findSectionNode(document, 1); | ||
assertThat(node1.getSectnum(), is("1.")); | ||
assertThat(node1.isNumbered(), is(TRUE)); | ||
|
||
Section node2 = findSectionNode(document, 2); | ||
assertThat(node2.getSectnum(), is("1.1.")); | ||
assertThat(node2.isNumbered(), is(TRUE)); | ||
} | ||
|
||
@Test | ||
public void should_return_invalid_sectnum_when_sectionNumbers_are_not_enabled() { | ||
final String source = sectionsSample(); | ||
|
||
Document document = loadDocument(source, false); | ||
|
||
Section node1 = findSectionNode(document, 1); | ||
assertThat(node1.getSectnum(), is(".")); | ||
assertThat(node1.isNumbered(), is(FALSE)); | ||
|
||
Section node2 = findSectionNode(document, 2); | ||
assertThat(node2.getSectnum(), is("..")); | ||
assertThat(node2.isNumbered(), is(FALSE)); | ||
} | ||
|
||
@Test | ||
public void should_return_sectnum_with_custom_delimiter_when_sectionNumbers_are_enabled() { | ||
final String source = sectionsSample(); | ||
|
||
Document document = loadDocument(source, true); | ||
|
||
Section node1 = findSectionNode(document, 1); | ||
assertThat(node1.getSectnum("_"), is("1_")); | ||
|
||
Section node2 = findSectionNode(document, 2); | ||
assertThat(node2.getSectnum("*"), is("1*1*")); | ||
} | ||
|
||
@Test | ||
public void should_return_sectnum_with_custom_delimiter_when_sectionNumbers_are_not_enabled() { | ||
final String source = sectionsSample(); | ||
|
||
Document document = loadDocument(source, false); | ||
|
||
Section node1 = findSectionNode(document, 1); | ||
assertThat(node1.getSectnum("_"), is("_")); | ||
|
||
Section node2 = findSectionNode(document, 2); | ||
assertThat(node2.getSectnum("*"), is("**")); | ||
} | ||
|
||
private Document loadDocument(String source, boolean sectionNumbers) { | ||
Attributes attributes = Attributes.builder().sectionNumbers(sectionNumbers).build(); | ||
Options options = Options.builder().attributes(attributes).build(); | ||
Document document = asciidoctor.load(source, options); | ||
return document; | ||
} | ||
|
||
private Section findSectionNode(Document document, int level) { | ||
return (Section) document.findBy(Collections.singletonMap("context", ":section")) | ||
.stream() | ||
.filter(n -> n.getLevel() == level) | ||
.findFirst() | ||
.get(); | ||
} | ||
|
||
static String sectionsSample() { | ||
return "= Document Title\n\n" + | ||
"== Section A\n\n" + | ||
"Section A paragraph.\n\n" + | ||
"=== Section A Subsection\n\n" + | ||
"Section A 'subsection' paragraph.\n\n"; | ||
} | ||
} |