有没有一种方法可以只跳过Maven中的单个测试?


Answers:


23

对于junit 4,我想添加@Ignore注释。这将对您有用,除非您只希望有时忽略测试,或者仅在从Maven运行构建时才忽略它。如果是这样,那么我会问“为什么?”

测试应该是一致的,它们应该是可移植的,并且应该始终通过。如果特定测试有问题,我会考虑重新编写,将其完全删除或将其移至其他测试套件或项目。


7
用例是我的团队中的某人当前正在修复测试,而我想启动所有其他测试,但是要再次启动它,然后再启动。所以您是对的,我应该通过代码临时禁用它。
paulgreg,2009年

3
有点不同意所有测试都应该是可移植的,等等。单元测试,是的,但是有充分的理由编写集成测试以确保您可以在开发时连接数据源,而不是等到部署时才能这样做。这些测试不应在构建中运行,而只能在开发过程中测试配置。
dardo

12
我不同意史蒂夫·里德(Steve Reed)的观点。我有一个在我的环境中失败的测试,该测试与我的工作无关,我不想将@Ignore放入代码中,因为我还有其他更改。所以我想在Maven构建“ mvn clean install”期间跳过它。我不想花时间分析或修复它,因为我清楚地知道这不是我的专长,因此我可以更好地利用自己的时间从事其他工作。因此,对这个问题的一个好的答案很有道理。
yalkris

6
所以讲道... @忽略并不总是理想的。考虑其他人进行的测试,是的,这很不好(如果运行太频繁则失败,但最初通过),但是没有,您没有时间来修复它,也没有时间说服某人将其取出或自己修复,而您不想意外地忽略它,因为它实际上在大多数情况下确实测试了一些有价值的东西...对实际回答该问题的其他人+1。
古斯

3
当它不回答问题时,如何被接受?
亚历克斯·莱曼

59

您可以-Dtest通过在选项前面加上一个!(感叹号)来指定排除模式。例如,

mvn -Dtest=\!FlakyTest* install

这里找到它,并验证可以正常工作。例如,通过使用以下命令,我可以跳过这种不稳定的Jenkins测试:

mvn -Dtest=\!CronTabTest* package

2
该功能已在2.19中实现,请参阅文档
rdvdijk

有没有一种组合包含和排除的方法?例如,除了CronFlakyTest外,我可能想运行Cron * Test。我尝试过,mvn -Dtest="\!CronFlakyTest,Cron*Test" install但仍能进行片状测试
Sridhar Sarnobat '16

警告:虽然有用,但是这可能会破坏您的排除规则-例如导致在单元测试期间运行黄瓜集成测试。
gameweld

1
您也可以使用以下语法按名称跳过多个测试:mvn test -Dtest=\!FirstTestClass,\!SecondTestClass
Cuga

12

通常需要排除集成测试,但需要包括单元测试。为此,我建议使用后缀IntegrationTest(例如AbcIntegrationTest.java)命名所有集成测试。

然后在您的Maven构建中放入以下内容:

  <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <excludes>
                    <exclude>**/*IntegrationTest.java</exclude>
                </excludes>
            </configuration>
        </plugin>

当您以此构建时,将排除所有集成测试,但将运行所有其他测试(例如,单元测试)。完美的:-)

有关在测试运行过程中排除和包括测试的更多信息,请阅读

http://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html

PS要排除一个测试,您只需要在排除列表中显式命名它即可。简单。


7

如果要使用CLI排除一个测试,则应使用-Dtest-Dit.test标志。

小心重设默认设置。使用该!表示法时,所有默认值都将被删除,应将它们放回原处。对于由执行的常规测试,surefire应添加*Test, Test*, *Tests, *TestCase,而对于由执行的集成测试,则应添加failsafe您您应该添加IT*, *IT, *ITCase

您可以在这里找到更多信息https://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html(正常测试)

在这里https://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html(集成测试)

-Dit.test='!ITsometestIT, IT*, *IT, *ITCase'

一个完整的mvn命令可能是以下命令:

mvn -e -B -Dtest='!unitTestABC, *Test, Test*, *Tests, *TestCase' -Dit.test='!ITintegrationTestABCIT, IT*, *IT, *ITCase' -DfailIfNoTests=false clean install

请记住使用'和NOT "。使用双引号时,其中的任何!内容都将通过bash

还请记住,时不运行集成测试mvn test。与mvn verify只集成测试将运行,而不是单元测试


7

使用注解来看看这个解决方案@Category

public class AccountTest {

    @Test
    @Category(IntegrationTests.class)
    public void thisTestWillTakeSomeTime() {
        ...
    }

    @Test
    @Category(IntegrationTests.class)
    public void thisTestWillTakeEvenLonger() {
        ...
    }

    @Test
    public void thisOneIsRealFast() {
        ...
    }
}

然后使用测试套件运行:

@RunWith(Categories.class)
@IncludeCategory(SlowTests.class)
@SuiteClasses( { AccountTest.class, ClientTest.class })
public class LongRunningTestSuite {}

您还可以将(groups)/排除(excludedGroups)这些测试与maven一起使用,例如:

mvn -DexcludedGroups=com.mycompany.tests.IntegrationTests test

1
是否可以在Maven命令行上指定类别/无需触摸代码?
Karl Richter

4

我认为如果使用以下命令,这应该工作:

mvn archetype:create -DgroupId=test -DartifactId=test

(对于测试,将pom.xml和test-class更改为以下内容并使用mvn install)

pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>test</name>
<url>http://maven.apache.org</url>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
                <excludes>
                    <exclude>
                        test/AppTest.java
              </exclude>
                </excludes>
            </configuration>
        </plugin>
    </plugins>
</build>
<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.5</version>
        <scope>test</scope>
    </dependency>
</dependencies>

测试类别:

package test;
import org.junit.Test;
import static org.junit.Assert.fail;
public class AppTest 
{
    @Test
    public void test_it() {
        fail("not implemented");
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.