【问题标题】:Skip a *test* with cobertura plugin使用 cobertura 插件跳过*测试*
【发布时间】:2015-03-03 03:21:23
【问题描述】:

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

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

我们的问题是,一些组件构建需要很长时间才能运行,并且已确定的问题之一是长时间运行的集成测试运行了两次,一次在测试阶段,一次在 cobertura 阶段(因为 cobertura 仪器类,然后再次运行测试)。这导致了一个问题:是否可以从 cobertura 执行中排除 测试

在 pom cobertura 配置中使用 exclude 或 ignore 仅适用于 src/java 类,不适用于测试类。我在 cobertura 插件文档中找不到任何内容。我正在尝试通过配置找到一种方法。我认为可以完成的唯一另一种方法是将这些测试移动到另一个没有启用 cobertura 插件的 maven 模块,并让该模块成为集成测试的主页。这样父 pom 的构建将触发集成测试,但它不属于 cobertura 的范围。但是如果可以通过配置来完成,那就容易多了:)

提前致谢, 杰哥

==== 更新和解决方案 ====

在对 kkamilpl 的回答进行了一些构建之后(再次感谢!),我能够在不更改目录结构中的任何内容的情况下包含和排除所需的测试。仅使用 java 样式表达式,一旦您意识到在 surefire 插件设置中覆盖,您就可以像这样设法运行“除了一个包之外的所有”/“仅那个给定的包”:

<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 测试文件夹的内容之外的所有内容),然后使用integration-tests 配置文件调用目标test 以只需运行集成测试。然后将调用添加到 jenkins 中的新配置文件作为新的顶级目标调用(它针对父 pom),以便 jenkins 构建将运行集成测试,但只运行一次,而不是让它们重新运行cobertura 在使用测试目标时。

【问题讨论】:

  • 你在 Jenkins 中使用什么 Maven 命令来运行构建?
  • Maven 目标是“干净”和“部署”。还有另一个只运行 Fitnesse 套件的目标步骤。

标签: java maven jenkins cobertura


【解决方案1】:

您始终可以使用 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

【讨论】:

  • 谢谢,我会试试这个,如果问题解决了就接受答案。
猜你喜欢
  • 2011-01-12
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2014-10-14
相关资源
最近更新 更多