提交 744441ba authored 作者: Farid Zakaria's avatar Farid Zakaria

Moved to JUnit/Surefire and Added missing resources

- Downloaded H2.jar (off maven) and unziped data.zip and verified we are including all the same resources
- Removed the use of maven-exec-plugin as it was wonky and wrote a bridge class to call TestAll via Junit with "fats" arg.
上级 467d95cb
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
<!-- END COMPILE DEPENDENCIES !--> <!-- END COMPILE DEPENDENCIES !-->
<!-- START BENCHMARK DEPENDENCIES !--> <!-- START TEST DEPENDENCIES !-->
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId> <artifactId>slf4j-simple</artifactId>
...@@ -118,7 +118,13 @@ ...@@ -118,7 +118,13 @@
<version>5.1.6</version> <version>5.1.6</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- END BENCHMARK DEPENDENCIES !--> <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- END TEST DEPENDENCIES !-->
<!-- JDK dependencies --> <!-- JDK dependencies -->
<dependency> <dependency>
...@@ -166,7 +172,14 @@ ...@@ -166,7 +172,14 @@
<directory>src/main</directory> <directory>src/main</directory>
<includes> <includes>
<include>**/*.prop</include> <include>**/*.prop</include>
<include>**/*.png</include>
<include>**/*.jsp</include>
<include>**/*.ico</include>
<include>**/*.gif</include>
<include>**/*.css</include>
<include>org/h2/res/help.csv</include> <include>org/h2/res/help.csv</include>
<include>org/h2/res/javadoc.properties</include>
<include>org/h2/server/pg/pg_catalog.sql</include>
</includes> </includes>
</resource> </resource>
</resources> </resources>
...@@ -240,46 +253,16 @@ ...@@ -240,46 +253,16 @@
</signature> </signature>
</configuration> </configuration>
</plugin> </plugin>
<!-- Run our custom test suite.
This needed to be done with exec:exec as that forks a JVM otherwise there were difficulties
getting the ProxyCodeGenerator to work (maven uses a different ClassLoader) -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<id>default-test</id>
<phase>test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<classpathScope>test</classpathScope>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<!-- automatically creates the classpath using all project dependencies,
also adding the project build directory -->
<classpath/>
<argument>org.h2.test.TestAll</argument>
<argument>fast</argument>
</arguments>
</configuration>
</plugin>
<!-- Disable surefire since we don't use Junit --> <!-- Disable surefire since we don't use Junit -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version> <version>2.19.1</version>
<executions> <configuration>
<execution> <includes>
<id>default-test</id> <include>TestAllJunit.java</include>
<phase>none</phase> </includes>
</execution> </configuration>
</executions>
</plugin> </plugin>
</plugins> </plugins>
......
/*
* Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.h2.test;
import org.junit.Test;
/**
* This class is a bridge between JUnit and the custom test framework
* used by H2.
*/
public class TestAllJunit {
@Test
public void testFast() throws Exception {
TestAll.main("fast");
}
}
...@@ -238,6 +238,7 @@ public class Build extends BuildBase { ...@@ -238,6 +238,7 @@ public class Build extends BuildBase {
if (!clientOnly) { if (!clientOnly) {
files = files("src/test"); files = files("src/test");
files.addAll(files("src/tools")); files.addAll(files("src/tools"));
files = files.exclude("src/test/org/h2/test/TestAllJunit.java"); //we don't use Junit for this test framework
args = args("-Xlint:unchecked", "-Xlint:deprecation", args = args("-Xlint:unchecked", "-Xlint:deprecation",
"-d", "temp", "-sourcepath", "src/test" + File.pathSeparator + "src/tools", "-d", "temp", "-sourcepath", "src/test" + File.pathSeparator + "src/tools",
"-classpath", classpath); "-classpath", classpath);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论