test: Added test for fo:breakAfter=page

This commit is contained in:
Georgy Litvinov 2021-07-30 19:38:04 +02:00
parent a43e8803cb
commit 5f1b0bd3d8
3 changed files with 74 additions and 0 deletions

View file

@ -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 BreakAfterTest {
@Test
@DisplayName("Break after test with nested nodes")
void testExample() throws Exception {
String name = "fo_break_after_page";
File input = new File("./testdocuments/input/" + name + ".odt");
assertTrue(input.exists());
List<String> arguments = new ArrayList<String>();
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!");
}
}

Binary file not shown.

View file

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="ru-RU" xml:lang="ru-RU" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta charset="UTF-8" />
<style media="all" type="text/css">
body {margin-left:auto;max-width:800px;font-size:1.0rem;font-family:'IPH Lib Serif';margin-right:auto;}
a:link {text-decoration:none;font-family:'IPH Astra Serif',serif;}
a:visited {text-decoration:none;font-family:'IPH Astra Serif',serif;}
</style>
</head>
<body dir="ltr">
<div class="pageNum" page="1">
<div class="pageContainer" style="column-count: 1;">
<p class="Standard" style="margin-left:0;border:none;padding:0;font-weight:normal;font-size:0.8333334rem;margin-top:0;font-family:&apos;IPH Astra Serif&apos;,serif;margin-bottom:0.23858269rem;text-align:center;margin-right:0;"> </p>
<table id="2table" style="margin-left:auto;border-spacing:0;table-layout:fixed;width:100%;page-break-after:always;margin-top:0;margin-bottom:0;border-collapse:separate;margin-right:auto;">
<colgroup>
<col style="width:100.0%" />
</colgroup>
<tbody>
<tr>
<td style="border-top:0.004166667rem solid #000000;background-color:transparent;padding-top:0.5905512rem;border-right:none;border-left:none;padding-left:0;vertical-align:top;padding-bottom:0;border-bottom:none;padding-right:0;">
<p class="qwerty" style="border:none;padding:0;font-weight:normal;text-decoration:none;font-size:0.6666667rem;font-style:normal;margin-right:1.1787401rem;margin-left:0;background-color:transparent;text-shadow:none;text-indent:0;margin-top:0;font-family:&apos;IPH Lib Serif&apos;,serif;margin-bottom:0.196063rem;text-align:justify;"> </p>
</td>
</tr>
</tbody>
</table>
</div>
<footer style="margin-top:0; height:auto; width:auto;">
<p class="Footer" style="margin-left:0;border:none;padding:0;font-size:0.75rem;font-family:&apos;IPH Astra Serif&apos;,serif;margin-top:0;margin-bottom:0;text-align:right;margin-right:0;"> </p>
</footer>
</div>
<div class="pageBreak" style="height:3em;margin-top:1em;margin-bottom:1em;background-color:red;"> </div>
<div class="pageNum" page="2">
<div class="pageContainer" style="column-count: 1;">
<p class="ContentsHeading" style="border:none;padding:0;font-weight:bold;letter-spacing:0.16771653rem;font-size:1.3333334rem;margin-right:0;margin-left:0;text-transform:uppercase;text-indent:0;margin-top:0.9992126rem;font-family:&apos;IPH Astra Serif&apos;,serif;margin-bottom:0.5007874rem;text-align:left;">PAGE 2</p>
</div>
<footer style="margin-top:0; height:auto; width:auto;">
<p class="Footer" style="margin-left:0;border:none;padding:0;font-size:0.75rem;margin-top:0;font-family:&apos;IPH Astra Serif&apos;,serif;margin-bottom:0;text-align:right;margin-right:0;"> </p>
</footer>
</div>
</body>
</html>