使用 cobertura 插件跳过*测试*

Skip a *test* with cobertura plugin

我们正在开发一个大项目,其中有许多交互模块和团队正在处理这些模块。我们已经用 jenkins 实现了 CI,它会定期和按提交构建运行 junit 测试、fitnesse 测试和 cobertura 覆盖。

由于我们与如此多的组件交互,对于一些特定的项目,我们实施了集成测试,这会产生 Spring 上下文,并运行许多模拟应用程序流程重要部分的测试用例。这些作为 simplicity/convenience 的 Junit 实现,放置在 src/test 文件夹中,但 不是 单元测试。

我们的问题是一些组件构建需要很长时间才能运行,并且已识别的问题之一是长时间运行的集成测试运行两次,一次在测试阶段,一次在 cobertura 阶段(作为 cobertura对类进行检测,然后再次运行测试)。这就引出了一个问题:是否可以从 cobertura 执行中排除 test

在 pom cobertura 配置中使用排除或忽略仅适用于 src/java 类,不适用于测试类。我在 cobertura 插件文档中找不到任何内容。我正在尝试通过配置找到一种方法来执行此操作。我认为可以完成的唯一其他方法是将这些测试移动到另一个没有启用 cobertura 插件的 Maven 模块,并让该模块成为集成测试的所在地。这样父 pom 的构建将触发集成测试,但它不会属于 cobertura 的范围。但是如果可以通过配置来完成,那就简单多了:)

提前致谢, JG

====更新和解决====

在 kkamilpl 的回答基础上做了一些改进(再次感谢!)我能够包含和排除所需的测试,而无需更改目录结构中的任何内容。仅使用 java 样式表达式,一旦您意识到 surefire 插件设置中的覆盖,您就可以像这样运行 "all but a package"/"only that given package":

<profiles>
    <profile>
        <id>unit-tests</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <properties>
            <testcase.include>**/*.class</testcase.include>
            <testcase.exclude>**/integration/*.class</testcase.exclude>
        </properties>
    </profile>
    <profile>
        <id>integration-tests</id>
        <properties>
            <testcase.include>**/integration/*.class</testcase.include>
            <testcase.exclude>**/dummyStringThatWontMatch/*.class</testcase.exclude>
        </properties>
    </profile>
</profiles>

我能够使用 test 目标和默认配置文件运行所有单元测试(即,除了 integration 测试文件夹的内容之外的所有内容),然后调用目标 test 使用 integration-tests 配置文件来运行集成测试。然后是将调用添加到 jenkins 中的新配置文件作为新的顶级目标调用(它针对父 pom),以便 jenkins 构建将运行集成测试,但只运行一次,而不是让它们重新运行由 cobertura 在使用测试目标时使用。

您始终可以使用 maven 配置文件:http://maven.apache.org/guides/introduction/introduction-to-profiles.html

将测试分开到不同的目录,例如:

testsType1
    SomeTest1.java
    SomeTest2.java
testsType2
    OtherTest1.java
    OtherTest2.java

接下来在 pom 中为每个测试类型定义适当的配置文件,例如:

    <profile>
        <id>testsType1</id>
        <properties>
            <testcase.include>%regex[.*/testsType1/.*[.]class]</testcase.include>
            <testcase.exclude>%regex[.*/testsType2/.*[.]class]</testcase.exclude>
        </properties>
    </profile>

定义默认配置文件:

        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>

最后定义 surefire 插件:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>>
            <configuration>
                <includes>
                    <include>${testcase.include}</include>
                </includes>
                <excludes>
                    <exclude>${testcase.exclude}</exclude>
                </excludes>
            </configuration>
        </plugin>

要使用它调用

 mvn test #to use default profile
 mvn test -P profileName #to use defined profileName