通过Maven使用Junit类别运行Cucumber测试

时间:2017-01-23 21:38:37

标签: java junit cucumber maven-surefire-plugin

我有一个包含多个模块和一个公共父模块的maven项目。在这个项目中,有一些单元测试与Junit以及surefire一起运行,以及BDD Cucumber集成测试。我想运行两个单独的作业,一个用于运行所有单元测试,另一个用于运行BDD / Integration测试。为了做到这一点,我使用Junit类注释注释了我的BDD运行器类,如下所示:

@RunWith(Cucumber.class)
@CucumberOptions(
                tags = { "@ATagToBeRun", "~@ATagNotToBeRun","~@ToBeImplemented" },
                dryRun = false, strict = true, 
                features = "src/test/resources/cucumber/testing",
                glue = { "com.some.company.test",
                        "com.some.company.another.test"})
@Category(value = IntegrationTest.class)
public class FlowExecutionPojoTest {
}

我在父pom中创建了一个Maven配置文件,该配置文件使用maven-surefire-plugin功能来过滤基于组的测试。这是我的maven配置:

     <dependencies>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-java</artifactId>
            <version>1.2.4</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-junit</artifactId>
            <version>1.2.4</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-spring</artifactId>
            <version>1.2.4</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-jvm-deps</artifactId>
            <version>1.0.5</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <profile>
        <id>testJewels</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <modules>
            <module>../my-module</module>
        </modules>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.19.1</version>
                    <configuration>
                        <groups>com.some.company.IntegrationTest</groups>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

我的预期是,当我运行mvn test -PtestJewels时,应该执行使用<groups>标记中包含的类别注释的类。实际上,没有任何带注释的类被执行。

值得注意的一点是,当我使用maven-surefire-plugin版本2.18时,这有效,但是从版本2.18.1开始,它没有。根据页面底部的documentation,版本2.18.1中有关于继承类别的更改,但在我的情况下,它们位于

1 个答案:

答案 0 :(得分:3)

我发现platform.ready().then(() => {...}存储库中实际上有一个pull request来修复此特定问题。问题是由于当Junit根据cucumber-jvm注释过滤测试运行器类时,它也会检查所有子类。在运行@Category文件的黄瓜测试的情况下,也会检查代表.feature文件的所有类(黄瓜转换{{1}的实例中的每个.feature文件})。由于注释在.feature类中不存在,因此测试将被过滤掉而不会运行。 (在版本2.18.1之前,FeatureRunner没有检查子类的注释,因此这不是问题。

适用于我在上面描述的特定设置(其中所有BDD测试都在特定模块中运行)的解决方法是覆盖子模块中的FeatureRunner配置,如下所示:

maven-surefire-plugin

这显然不适用于不同的设置,因此非常不幸的是,黄瓜团队尚未合并我上面提到的公关。