gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-11-01 03:22:05 24 4
gpt4 key购买 nike

我们正在开发一个大项目,其中有许多交互模块和团队正在处理这些模块。我们已经使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com