JUnit5通过标签运行测试

时间:2018-07-21 13:03:33

标签: maven selenium annotations tags junit5

我有一个设置Maven + JUnit5 + Selenium,我的pom.xml https://github.com/13Dima13/G/blob/master/pom.xml

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.0</version>
            <configuration>
                <forkCount>4</forkCount>
                <reuseForks>false</reuseForks>
                <properties>
                    <includeTags>${tag}</includeTags>
                </properties>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>${junit.platform.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.junit.jupiter</groupId>
                    <artifactId>junit-jupiter-engine</artifactId>
                    <version>${junit.jupiter.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.maven.surefire</groupId>
                    <artifactId>surefire-logger-api</artifactId>
                    <version>${surefire-logger-api}</version>
                </dependency>
            </dependencies>
        </plugin>

首先,我认为@Tag可以正常工作,因为当我在类https://github.com/13Dima13/G/blob/master/src/test/java/com/example/project/TestThreads2.java上添加注释时

@Test
@Tag("smoke")
public void test1() {
    open("https://mvnrepository.com/artifact/log4j/log4j/1.2.17");
    $("#maincontent > table > tbody > tr:nth-child(1) > th").waitUntil(Condition.appears, 120000);
    $("#maincontent > table > tbody > tr:nth-child(1) > th").shouldBe(Condition.text("License"));
    assertEquals("Maven Repository: log4j » log4j » 1.2.17", title());
    out.println("test1 Passed");
}

然后从终端

运行
mvn test -Dtag=smoke

将仅执行标记为@Tag("smoke")的测试,因此在我的情况下,仅执行1个测试,这使我感到高兴。

但是 当我开始在实际项目中使用它时,我意识到有时它不起作用。

例如,如果我的Test.class测试方法未放置在父项目文件夹中(例如,在项目文件夹的子文件夹中)https://github.com/13Dima13/G/blob/master/src/test/java/com/example/project/test2/GoogleSearch.java 注释根本不起作用。

因此注释@Tag不能在整个项目中起作用,还是我错过了某些事情?

很好的例子https://ibb.co/gjbSZJ

3 个答案:

答案 0 :(得分:1)

第一个猜测:测试类的名称(test3.java)与maven的测试类默认模式不匹配,因此将被忽略。

答案 1 :(得分:0)

Maven Surefire Plugin Version 2.22.0

中包含对JUnit 5的支持。
<dependencies>
    [...]
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>5.2.0</version>
        <scope>test</scope>
    </dependency>
    [...]
</dependencies>

也许您需要像这样定义maven-surefire-plugin:

<build>
    <plugins>
        ...
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.0</version>
            <configuration>
                <excludes>
                    <exclude>some test to exclude here</exclude>
                </excludes>
            </configuration>
        </plugin>
    </plugins>
</build>

因此可以简化您的配置。

答案 2 :(得分:0)

放弃

mvn test -D groups=smoke

尝试...

或者,如果您希望很快看到结果(并且不需要重新编译代码),请寻求:

mvn surefire:test -D groups=smoke

请注意,-D之后的空格是可选的,纯粹出于装饰性原因。

  

N.B。我对java / maven世界也很陌生,但值得一提:到目前为止,我从来没有将它与-D tag一起使用。很想知道这是怎么回事(评论链接到解释吗?)