7

我有 Junit 4.8.2 和 maven 3 我的应用程序中的一些测试应该在失败的情况下使构建失败,而其中一些不应该(只报告以下可选测试失败)

我怎么能用junit做到这一点,如果我不能,那么也许testng可以?

例如,我有两个测试用例:

首先不是很重要,可能会因为连接超时、服务不可用等而失败。所以如果它失败了,我不想让整个构建失败,只是让用户知道它并写入控制台

其次是非常重要的一个,如果它失败 - 构建也应该失败

我知道@Ignore - 这不是我想要的,因为我不想跳过任何测试。

我知道@Category,所以如果你知道如何配置surefire插件说:如果com.me.Required类别 - 构建应该在失败的情况下失败,如果类别com.me.Optional - 构建不应该失败

4

2 回答 2

3

考虑对允许失败的测试使用故障安全插件,并将testFailureIgnore标志设置为 true。

使用故障安全插件,您必须将插件添加到您的 pom

<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>foo.bar</groupId>
    <artifactId>test</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.12.4</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

默认情况下,surefire 插件将执行名为Test 的测试。默认情况下,故障安全插件将执行名为IT的测试。

鉴于测试

import static org.junit.Assert.*;

import org.junit.Test;

public class SurefireTest {

    @Test
    public void test() {
        assertTrue(true);
    }

}

import static org.junit.Assert.*;

import org.junit.Test;

public class FailsafeIT {

    @Test
    public void test() {
        assertTrue(false);
    }

}

运行mvn install现在将导致

[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building test 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
.
.
.
-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running SurefireTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.062 sec

Results :

Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
.
.
.
-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running FailsafeIT
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0.072 sec <<< FA
ILURE!
...
Results :

Failed tests:   test(FailsafeIT)

Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
.
.
.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.174s
[INFO] Finished at: Sat Sep 29 08:19:38 CEST 2012
[INFO] Final Memory: 9M/245M
[INFO] ------------------------------------------------------------------------
于 2012-09-25T15:21:36.570 回答
1
  1. 您可以使用@Ignore,请参阅Is there a way to skip only a single test in maven?

  2. 你可以跳过某个包中的测试有没有办法告诉surefire跳过某个包中的测试?http://maven.apache.org/plugins/maven-failsafe-plugin/examples/inclusion-exclusion.html

  3. 您可以使用 JUnit 4.8 类别 JUnit 类别http://maven.apache.org/plugins/maven-failsafe-plugin/examples/junit.html

  4. 您可以使用skipITs http://maven.apache.org/plugins/maven-failsafe-plugin/verify-mojo.html#skipITs

我认为 JUnit 4.8 类别实际上是您要寻找的。

于 2012-09-24T12:55:56.553 回答