Start work on regression tests

This commit is contained in:
Georgy Litvinov 2021-02-24 16:39:18 +01:00
parent 642500a4ba
commit 80441c4ad9
2 changed files with 27 additions and 1 deletions

View file

@ -16,6 +16,8 @@ configurations{
bundledLibs
}
dependencies{
testImplementation 'junit:junit:4.13'
bundledLibs 'org.libreoffice:jurt:5.3.2'
bundledLibs 'org.libreoffice:juh:5.3.2'
bundledLibs 'org.libreoffice:ridl:5.3.2'
@ -23,7 +25,7 @@ dependencies{
bundledLibs 'org.json:json:20190722'
bundledLibs group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
bundledLibs group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
compile 'junit:junit:4.12'
compile 'junit:junit:4.13'
bundledLibs group: 'com.miglayout', name: 'miglayout-swing', version: '5.2'
bundledLibs group: 'org.apache.jena', name: 'jena-core', version: '3.15.0'
bundledLibs group: 'org.apache.jena', name: 'jena-arq', version: '3.15.0'
@ -200,6 +202,10 @@ task oxtNew(type: Zip){
include '*'
}
task regressionTests(type: Test){
}
task setVersion(){
ant.taskdef(name: 'xmltask', classpath: 'buildPlugins/xmltask.jar', classname: 'com.oopsconsultancy.xmltask.ant.XmlTask')
ant.xmltask(source: 'src/main/oxt2/description.xml', dest: 'src/main/tmp/description.xml', report:'true') {

View file

@ -0,0 +1,20 @@
package w2phtml.regressionTests;
import java.util.ArrayList;
import java.util.List;
public class TestExample {
public static void main(String[] args) throws Exception {
//long start = System.nanoTime();
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("/home/litvinovg/tmp/w2p-bug/test_5.odt");
w2phtml.Application.main(arguments.toArray(new String[0]));
//long end = System.nanoTime();
//long elapsedTime = end - start;
//System.out.println(elapsedTime/1000000);
}
}