java - 使用 cobertura 插件跳过*测试*

标签 java maven jenkins cobertura

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

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

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

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

提前致谢, JG

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

在基于 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 测试文件夹的内容之外的所有内容),然后调用目标testintegration-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

关于java - 使用 cobertura 插件跳过*测试*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27782054/

相关文章:

jenkins jnlp从属代理拒绝监听端口

json - 从 package.json 版本值设置 Jenkins 构建名称

java - 在 java.util.List 中查找符合特定条件的对象的最简洁方法?

postgresql - liquibase:dropAll 还应该删除触发函数

java - 按数组元素排序

eclipse - 在 Eclipse 中运行 JUnit 单元测试时出现 ClassNotFoundException(使用 Maven)

maven - jersey-server-1.12 与 jetty-maven-plugin 不能一起工作

node.js - npm install 命令作为 root 用户工作正常,但如果命令作为 jenkins 用户执行则抛出错误

java - 如何告诉 Eclipse 在启动并执行干净构建时自动生成或保留 stub ?

java - 是否可以更改 Android 通知中显示的应用程序名称的文本颜色