Added tests
This commit is contained in:
parent
6aeeed4b54
commit
22ba9e1077
5 changed files with 81 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
||||||
|
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 PageStartWith10 {
|
||||||
|
@Test
|
||||||
|
@DisplayName("start page from 10 in section")
|
||||||
|
void testExample() throws Exception {
|
||||||
|
String testName = "start_page_from_10_in_section";
|
||||||
|
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/" + testName + ".odt");
|
||||||
|
arguments.add("./testdocuments/output/" + testName + ".html");
|
||||||
|
w2phtml.Application.main(arguments.toArray(new String[0]));
|
||||||
|
File result = new File("./testdocuments/output/" + testName + ".html");
|
||||||
|
File model = new File("./testdocuments/model/" + testName + ".html");
|
||||||
|
assertTrue(FileUtils.contentEquals(result, model), "The files differ!");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
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 PageStartWith10InSection {
|
||||||
|
@Test
|
||||||
|
@DisplayName("start page from 10")
|
||||||
|
void testExample() throws Exception {
|
||||||
|
String testName = "start_page_from_10";
|
||||||
|
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/" + testName + ".odt");
|
||||||
|
arguments.add("./testdocuments/output/" + testName + ".html");
|
||||||
|
w2phtml.Application.main(arguments.toArray(new String[0]));
|
||||||
|
File result = new File("./testdocuments/output/" + testName + ".html");
|
||||||
|
File model = new File("./testdocuments/model/" + testName + ".html");
|
||||||
|
assertTrue(FileUtils.contentEquals(result, model), "The files differ!");
|
||||||
|
}
|
||||||
|
}
|
BIN
testdocuments/input/start_page_from_10.odt
Normal file
BIN
testdocuments/input/start_page_from_10.odt
Normal file
Binary file not shown.
BIN
testdocuments/input/start_page_from_10_in_section.odt
Normal file
BIN
testdocuments/input/start_page_from_10_in_section.odt
Normal file
Binary file not shown.
23
testdocuments/model/start_page_from_10.html
Normal file
23
testdocuments/model/start_page_from_10.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="ru-RU" xml:lang="ru-RU" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>Default</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;}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body dir="ltr">
|
||||||
|
<div class="pageNum" page="10">
|
||||||
|
<header>
|
||||||
|
<p class="Header" style="margin-left:0;border:none;padding:0;font-size:1.0rem;margin-top:0;font-family:'IPH Astra Serif',serif;margin-bottom:0;margin-right:0;">10 Header</p>
|
||||||
|
</header>
|
||||||
|
<div class="pageContainer" style="column-count: 1;">
|
||||||
|
<p class="Textbody" style="margin-left:0;border:none;padding:0;text-indent:2.1259842rem;font-size:1.0rem;margin-top:0;font-family:'IPH Astra Serif',serif;margin-bottom:0.58346456rem;margin-right:0;">Text</p>
|
||||||
|
</div>
|
||||||
|
<footer style="margin-top:1.1787401rem; height:auto; width:auto;">
|
||||||
|
<p class="Footer" style="margin-left:0;border:none;padding:0;font-size:1.0rem;margin-top:0;font-family:'IPH Astra Serif',serif;margin-bottom:0;margin-right:0;">10 Footer</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Add table
Reference in a new issue