diff --git a/src/r_tests/java/w2phtml/regressionTests/html5/HardPageBreaksInLists.java b/src/r_tests/java/w2phtml/regressionTests/html5/HardPageBreaksInLists.java new file mode 100644 index 0000000..d51b66a --- /dev/null +++ b/src/r_tests/java/w2phtml/regressionTests/html5/HardPageBreaksInLists.java @@ -0,0 +1,31 @@ +package w2phtml.regressionTests.html5; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +import java.io.File; +import java.util.ArrayList; +import java.util.List; + +import org.apache.commons.io.FileUtils; +import org.junit.jupiter.api.DisplayName; +import org.junit.jupiter.api.Test; + +public class HardPageBreaksInLists { + @Test + @DisplayName("Hard page breaks inside list") + void testExample() throws Exception { + String name = "list_hpb"; + File input = new File("./testdocuments/input/" + name + ".odt"); + assertTrue(input.exists()); + List arguments = new ArrayList(); + arguments.add("-page_break_style"); + arguments.add("height:3em;margin-top:1em;margin-bottom:1em;background-color:red;"); + arguments.add("-html5"); + arguments.add("./testdocuments/input/" + name + ".odt"); + arguments.add("./testdocuments/output/" + name + ".html"); + w2phtml.Application.main(arguments.toArray(new String[0])); + File result = new File("./testdocuments/output/" + name + ".html"); + File model = new File("./testdocuments/model/" + name + ".html"); + assertTrue(FileUtils.contentEquals(result, model), "The files differ!"); + } +} diff --git a/testdocuments/input/list_hpb.odt b/testdocuments/input/list_hpb.odt new file mode 100644 index 0000000..72b7172 Binary files /dev/null and b/testdocuments/input/list_hpb.odt differ diff --git a/testdocuments/model/list_hpb.html b/testdocuments/model/list_hpb.html new file mode 100644 index 0000000..33a89f1 --- /dev/null +++ b/testdocuments/model/list_hpb.html @@ -0,0 +1,71 @@ + + + + Default + + + + +
+
+
    +
  • +

    text 1

    +
  • +
+
+
+
+
+
+
    +
  • +

    text 2

    +
  • +
+
+
+
+
+
+
    +
  • +

    text 3

    +
  • +
+
+
+
+
+
+
    +
  1. +

    Text1

    +
  2. +
+
+
+
+
+
+
    +
  1. +

    Text2

    +
  2. +
+
+
+
+
+
+
    +
  1. +

    Text3

    +
  2. +
+
+
+ +