Some tests added
This commit is contained in:
parent
6eeaebecf4
commit
8b4103a8f5
7 changed files with 127 additions and 4 deletions
|
@ -10,7 +10,7 @@ import org.apache.commons.io.FileUtils;
|
|||
import org.junit.jupiter.api.DisplayName;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TestExample {
|
||||
public class PageBreaksBeforeHeading {
|
||||
|
||||
@Test
|
||||
@DisplayName("Heading with page break before")
|
||||
|
@ -23,11 +23,8 @@ public class TestExample {
|
|||
arguments.add("./testdocuments/input/heading_with_page_break_before.odt");
|
||||
arguments.add("./testdocuments/output/heading_with_page_break_before.html");
|
||||
w2phtml.Application.main(arguments.toArray(new String[0]));
|
||||
// System.out.println("Working Directory = " + System.getProperty("user.dir"));
|
||||
File result = new File("./testdocuments/output/heading_with_page_break_before.html");
|
||||
File model = new File("./testdocuments/model/heading_with_page_break_before.html");
|
||||
// System.out.println(result.exists());
|
||||
// System.out.println(model.exists());
|
||||
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 PageSectionStyles {
|
||||
@Test
|
||||
@DisplayName("Page styles and sections")
|
||||
void testExample() throws Exception{
|
||||
String testName = "image_after_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!");
|
||||
}
|
||||
}
|
29
src/r_tests/java/w2phtml/regressionTests/html5/Sections.java
Normal file
29
src/r_tests/java/w2phtml/regressionTests/html5/Sections.java
Normal file
|
@ -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 Sections {
|
||||
@Test
|
||||
@DisplayName("Heading with sections")
|
||||
void testExample() throws Exception{
|
||||
String testName = "heading_with_sections";
|
||||
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/heading_with_sections.odt
Normal file
BIN
testdocuments/input/heading_with_sections.odt
Normal file
Binary file not shown.
BIN
testdocuments/input/image_after_section.odt
Normal file
BIN
testdocuments/input/image_after_section.odt
Normal file
Binary file not shown.
41
testdocuments/model/heading_with_sections.html
Normal file
41
testdocuments/model/heading_with_sections.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!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="1">
|
||||
<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;">BEFORE HEADING</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pageNum" page="1">
|
||||
<div class="pageContainer" style="column-count: 1;"></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;">PAGE 1</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;">
|
||||
<h1 id="toc0" style="margin-left:0;border:none;padding:0;font-weight:bold;clear:left;font-size:1.5166668rem;margin-top:0.9992126rem;font-family:'IPH Astra Serif',serif;page-break-before:always;margin-bottom:0.5007874rem;margin-right:0;text-align:center;">Heading 1</h1>
|
||||
<p class="Textbody" style="margin-left:0;border:none;padding:0;text-indent:2.1259842rem;font-size:8.0rem;margin-top:0;font-family:'IPH Astra Serif',serif;margin-bottom:0.58346456rem;margin-right:0;">Tex</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pageNum" page="2">
|
||||
<div class="pageContainer" style="column-count: 1;">
|
||||
<h1 id="toc1" style="margin-left:0;border:none;padding:0;font-weight:bold;clear:left;font-size:1.5166668rem;margin-top:0.9992126rem;font-family:'IPH Astra Serif',serif;margin-bottom:0.5007874rem;margin-right:0;text-align:center;">Heading 1</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pageNum" page="2">
|
||||
<div class="pageContainer" style="column-count: 1;"></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;">PAGE 2</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
27
testdocuments/model/image_after_section.html
Normal file
27
testdocuments/model/image_after_section.html
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue