我认为JaCoCo Maven插件check
目标不支持多模块项目中的集成测试(集成测试与测试中的代码位于不同的模块中)。
我有一个具有以下结构的项目:
service
├── webapp
├── lib1
├── lib2
└── integration-test
webapp
依赖于lib1
和lib2
并构建为WAR,integration-test
使用内存容器来运行webapp
并对其执行测试。
我的配置是这样的,JaCoCo在{jacoco.exec
,jacoco-it.exec
中为单元测试成功生成合并数据文件(service/target/
和webapp
lib1
) ,lib2
} AND测试的集成测试覆盖率在integration-test
中运行。
在添加check
的配置时,我从插件中获取此输出。
[INFO] --- jacoco-maven-plugin:0.7.8:check (default-check) @ integration-test ---
[INFO] Skipping JaCoCo execution due to missing classes directory:/home/mark/workspace/service/integration-test/target/classes
错误是准确的,因为integration-test
模块只有测试源,因此没有target/classes
目录。添加源目录没有帮助,check
失败,表示0%的覆盖率,因为target/classes
目录中没有适用的类文件。
从这里开始(并查看check Mojo source),check
目标似乎需要其正在检测的所有模块的classes
目录(webapp
,lib1
,lib2
)。
check
中没有这样的配置允许我指定classes
目录的位置,也不支持查看源的这种功能。
Root / parent pom.xml
<properties>
<sonar.jacoco.itReportPath>${project.basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath>
<sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
</properties>
<-- Note, I am using build/plugins/plugin - not build/pluginManagement/plugin
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.8</version>
<executions>
<execution>
<id>agent-for-ut</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<append>true</append>
<destFile>${sonar.jacoco.reportPath}</destFile>
</configuration>
</execution>
<execution>
<id>agent-for-it</id>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
<configuration>
<append>true</append>
<destFile>${sonar.jacoco.itReportPath}</destFile>
</configuration>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
<configuration>
<dataFile>${sonar.jacoco.itReportPath}</dataFile>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.9800</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
integration-test pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.19.1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<skipTests>${skipTests}</skipTests>
<argLine>${argLine} -Duser.timezone=UTC -Xms256m -Xmx256m</argLine>
<reuseForks>false</reuseForks>
</configuration>
</execution>
</executions>
</plugin>