如果我有一个使用库(jar文件)的java项目,是否可以获取此jar中类的代码覆盖率?
这背后的想法是我想找出项目所依赖的外部库的比例(假设是spring,hibernate,或者它可能是scala jar,如果它是scala项目,为什么不呢)是实际使用过。我甚至想象我可以尝试列出它们并在一个包含仅必需的.class文件(例如apache felix之类的插件)的jar中重新绑定它们以获得尽可能小的jar。我不确定我是否真的想要这样做,我知道这可能是一个坏主意,原因有很多,但我认为这是一个实验。
我找不到怎么做,jacoco直接在我的项目中报告类文件的覆盖范围。也许我做错了什么,我正在使用像这样的maven插件:
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.5.6.201201232323</version>
<configuration>
<destfile>${basedir}/target/coverage-reports/jacoco-unit.exec</destfile>
<datafile>${basedir}/target/coverage-reports/jacoco-unit.exec</datafile>
<includes>
<include>**</include>
</includes>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
我已经尝试更改include标记,但唯一的效果是限制默认值,其中只包含项目中的类文件。
提前致谢!
在回答后编辑:
我发现如何使用ant和antrun-plugin做到这一点,虽然它非常复杂,但我对antrun插件版本有很多麻烦(无法使最新版本工作,即使是基本任务)我也是真的很想坚持Maven。 如果有人知道如何使用je jacoco maven插件代替蚂蚁,我很感兴趣!
使用ant的部分解决方案:实际上jacoco.exec文件已经包含对外部jar类的引用;因此,报告任务应该被告知考虑到这些jar,而不是我想的运行时阶段。这是我使用的maven配置(我在http://intellectualcramps.wordpress.com/2012/03/22/jacoco-tycho-and-coverage-reports/上找到了帮助):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<!--<version>1.7</version>-->
<dependencies>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.ant</artifactId>
<version>0.5.6.201201232323</version>
</dependency>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>20020829</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>jacoco-report</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<taskdef name="jacoco-report"
classname="org.jacoco.ant.ReportTask"
classpathref="maven.plugin.classpath" />
<taskdef classpathref="maven.runtime.classpath"
resource="net/sf/antcontrib/antcontrib.properties" />
<available
file="${project.basedir}/target/jacoco.exec"
property="jacoco.exec.file.exists" />
<echo message="${project.basedir}/target/jacoco.exec" />
<if>
<equals arg1="${jacoco.exec.file.exists}"
arg2="true" />
<then>
<echo message="Executing jacoco report" />
<trycatch>
<try>
<jacoco-report>
<executiondata>
<file
file="${project.basedir}/target/jacoco.exec" />
</executiondata>
<structure name="Minerva">
<classfiles>
<fileset
dir="target/classes" />
<fileset dir="C:/Data/dev/m2Repository/com/groupama/framework/crypt/fwk-cryptage/1.0/">
<include name="**/*.jar"/>
</fileset>
</classfiles>
<sourcefiles
encoding="UTF-8">
<fileset
dir="src/main/java" />
</sourcefiles>
</structure>
<html destdir="${project.basedir}/target/jacoco/report" />
<xml destfile="${project.basedir}/target/jacoco/report/jacoco.xml"/>
</jacoco-report>
</try>
<catch>
<echo>skipping</echo>
</catch>
</trycatch>
</then>
<else>
<echo message="No jacoco.exec file found." />
</else>
</if>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
答案 0 :(得分:1)
您需要为报告目标指定要分析的库的类。不幸的是,我找不到相关文档。 The official docu is ... hm ... sparse
如果您可以执行ant,我建议您查看report task。
<jacoco:report>
<executiondata>
<file file="jacoco.exec"/>
</executiondata>
<structure name="Example Project">
<classfiles>
<fileset dir="classes"/> <!-- HERE THE CLASSES FROM YOUR LIB -->
</classfiles>
<sourcefiles encoding="UTF-8">
<fileset dir="src"/> <!-- HERE THE SORUCESFROM YOUR LIB -->
</sourcefiles>
</structure>
<html destdir="report"/>
</jacoco:report>
答案 1 :(得分:0)
即使这个问题很老,但它似乎仍然相关。如果外部库是Maven项目,您可以转到库源目录并请求之前使用您的testsuite获取的JaCoCo报告:
mvn org.jacoco:jacoco-maven-plugin:0.7.8:report -Djacoco.dataFile=/path/to/jacoco.exec
您可以在$ {project} / target / site / jacoco目录中获取报告。