我希望我的Maven构建可以运行大多数单元测试。但是,在一个项目中有一些单元测试比较慢,因此我希望将它们排除在外。并偶尔将它们打开。
问题:我该怎么做?
我知道-Dmaven.test.skip=true
,但这会关闭所有单元测试。
我也知道跳的集成测试,描述在这里。但是我没有集成测试,只有单元测试,也没有对maven-surefire-plugin的任何明确调用。(我将Maven 2与Eclipse-Maven插件一起使用)。
Answers:
只跳过该模块中的测试呢?
在此模块的pom.xml中:
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>
最终,您可以创建一个配置文件来禁用测试(仍然是模块的pom.xml):
<project>
[...]
<profiles>
<profile>
<id>noTest</id>
<activation>
<property>
<name>noTest</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
[...]
</project>
对于后一种解决方案,如果运行mvn clean package
,它将运行所有测试。如果运行mvn clean package -DnoTest=true
,它将不会运行此模块的测试。
noTest
这里的用途吗?
我认为这比较容易,并且还有进行非安全测试的好处(在我的情况下为FlexUnitTests)
<profile>
<id>noTest</id>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
如果您有一个大型的多模块项目,并且只想跳过某些模块中的测试,而无需pom.xml
使用自定义配置和配置文件来更改每个模块文件,则可以将以下内容添加到父pom.xml
文件中:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
<executions>
<execution>
<id>regex-property</id>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>maven.test.skip</name>
<value>${project.artifactId}</value>
<regex>(module1)|(module3)</regex>
<replacement>true</replacement>
<failIfNoMatch>false</failIfNoMatch>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
</modules>
多亏了build-helper-maven-plugin
您,您实际上可以在构建期间通过project.artifactId
属性(指向artifactId
构建期间指向每个模块)动态检查您是否在某个模块中,因此regex会寻找匹配某些值(您为其指定模块名称)的方法要跳过测试)并相应地填充maven.test.skip
属性(将其设置为true
)。
在这种情况下,测试将被跳过,module1
并且module3
在为正确运行时module2
,即由正则表达式表示。
这种方法的优点是使它动态且集中(在父级中pom.xml
),从而更好地进行维护:您可以随时通过更改上述简单的正则表达式随时添加或删除模块。
显然,如果这不是构建的默认行为(建议的情况),则始终可以将上面的代码段包装在maven配置文件中。
您还可以根据自己的输入更进一步,并具有动态行为:
<properties>
<test.regex>none</test.regex>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.12</version>
<executions>
<execution>
<id>regex-property</id>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>maven.test.skip</name>
<value>${project.artifactId}</value>
<regex>${test.regex}</regex>
<replacement>true</replacement>
<failIfNoMatch>false</failIfNoMatch>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
在这里,我们实际上是将regex值替换为属性,test.regex
并将其默认值设置为none
(或任何不匹配任何模块名称的值,或者也将是所需的默认跳过匹配项)。
然后从命令行我们可以
mvn clean test -Dtest.regex="(module1)" > will skip tests only for module1
mvn clean test -Dtest.regex="(module1)|(module2)" > will skip tests on module1 and module2
mvn clean test -Dtest.regex="(module1)|(module2)|(module3)" > will skip the three module tests
mvn clean test -Dtest.regex=".+" > will skip all module tests
mvn clean test > would not skip anything (or fall back on default behavior)
也就是说,在运行时,您无需更改pom.xml
文件或激活任何配置文件就可以决定。
我对此问题的需求略有不同,可能会有所帮助。我想从命令行中排除来自不同程序包的一些不同测试,所以一个通配符就不会这样做。
我在排除的Maven Failsafe文档规则中发现,您可以指定以逗号分隔的正则表达式或通配符排除列表:https : //maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion。 html
所以我的pomfile看起来像这样:
<excludes>
<exclude>${exclude.slow.tests}</exclude>
</excludes>
我的命令行包括:
mvn install "-Dexclude.slow.tests=**/SlowTest1.java, **/package/ofslowtests/*.java, **/OtherSlowTest.java"
对我来说,关键因素是在一个排除语句中对一个Maven属性进行大量测试。
使用Surefire插件2.19,您可以使用正则表达式简单地排除不需要的测试:
mvn '-Dtest=!%regex[.*excludedString.*]' test
上面的命令将排除所有包含excludeString的测试。
NB1如果使用双引号(“)而不是撇号('),则命令将无法正确解释,并且会产生意外结果。(使用bash 3.2.57测试)
NB2应该特别注意其中使用多个版本的surefire插件的项目。低于2.19的surefire版本将不执行任何测试,因为它们不支持正则表达式。
版本管理(将其添加到父pom文件中可能是一个好主意):
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
跳过测试的构建命令示例:https : //artbcode.wordpress.com/2016/11/28/how-to-skip-a-subset-of-the-unit-tests/
-Dtests
似乎与surefire搭配不好。以下原因导致我的所有测试都无法通过:mvn '-Dtest=!%regex[.*DeviceLogServiceTest.*]' --quiet install -Dsurefire.useFile=false -Dsurefire.printSummary=false -Dmaven.test.skip=false