SONAR – 使用Cobertura测量代码覆盖率

我使用声纳来衡量代码质量。 我不知道的一件事是使用Cobertura测量代码覆盖率的步骤。

我遵循http://cobertura.sourceforge.net/anttaskreference.html中的步骤,并能够生成XML文件。 我如何获得这些XML文件到SONAR?

在SONAR中使用Cobertura有更简单的方法吗?

我在不同于我的SONAR服务器的服务器上运行代码覆盖(Cobertura)。 两台服务器都在LINUX下运行。

谢谢您的帮助!

您可以configurationSonar任务以上传由您的构build逻辑的其他部分生成的unit testing和cobertura报告。

这与具有Sonar能够利用的标准构build生命周期的Maven相反。

unit testing和代码覆盖

以下逻辑运行与cobertura仪表类的unit testing。 XML覆盖报告最后由cobertura生成:

<target name="instrument-classes" depends="compile-tests"> <taskdef resource="tasks.properties" classpathref="test.path"/> <cobertura-instrument todir="${instrumented.classes.dir}" datafile="${build.dir}/cobertura.ser"> <fileset dir="${classes.dir}"/> </cobertura-instrument> </target> <target name="junit" depends="instrument-classes"> <junit printsummary="yes" haltonfailure="yes"> <classpath> <path refid="test.path"/> <pathelement path="${instrumented.classes.dir}"/> <pathelement path="${test.classes.dir}"/> </classpath> <formatter type="xml"/> <batchtest fork="yes" todir="${test.reports.dir}"> <fileset dir="${test.src.dir}"> <include name="**/*Test*.java"/> <exclude name="**/AllTests.java"/> </fileset> </batchtest> </junit> </target> <target name="test" depends="junit"> <cobertura-report format="xml" datafile="${build.dir}/cobertura.ser" destdir="${cobertura.reports.dir}"/> </target> 

调用Sonar

我通常使用一个非常简单的声纳目标:

 <target name="sonar" depends="test"> <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml" classpathref="sonar.path"/> <sonar:sonar key="${sonar.project.key}" version="${sonar.project.version}" xmlns:sonar="antlib:org.sonar.ant"/> </target> 

并使用属性文件来控制Sonar行为的所有方面:

 sonar.project.key=org.demo:demo sonar.project.version=1.0-SNAPSHOT sonar.projectName=Demo project sonar.host.url=http://myserver:9000 sonar.jdbc.url=jdbc:mysql://myserver:3306/sonar?useUnicode=true&characterEncoding=utf8 sonar.jdbc.driverClassName=com.mysql.jdbc.Driver sonar.jdbc.username=sonar sonar.jdbc.password=sonar sonar.sources=${src.dir} sonar.tests=${test.src.dir} sonar.binaries=${classes.dir} sonar.dynamicAnalysis=reuseReports sonar.surefire.reportsPath=${test.reports.dir} sonar.java.coveragePlugin=cobertura sonar.cobertura.reportsPath=${cobertura.reports.dir}/coverage.xml 

演示如何configurationSonar以获取由junit创build的unit testing报告和由cobertura生成的代码覆盖率报告。

构build不必与Sonar在同一台服务器上运行。 在这种情况下,必须提供远程Sonar URL和JDBC凭证。

您将不得不将这些属性添加到Sonar的pom.xml

 <properties> <sonar.dynamicAnalysis>false</sonar.dynamicAnalysis> <sonar.phase>generate-sources</sonar.phase> <sonar.surefire.reportsPath>target/reports/test/</sonar.surefire.reportsPath> <sonar.cobertura.reportPath>../project/target/reports/coverage/coverage.xml</sonar.cobertura.reportPath> </properties> 

(具有适合您的环境的path)

并运行:

 mvn sonar:sonar 

检查用户列表以获取更多详细信息。

如果你使用的是Maven,那么在你的POM文件中没有特别的指定。 只需运行“mvn clean sonar:sonar”,Sonar就会自动编译你的代码,用Cobertura(这是Sonar的默认覆盖引擎)运行你的testing,并将所有结果推送到DB中。

如果你正在使用Ant [1]或者简单的java runner [2]而不是Maven,那么也是一样的。

我坚持这样一个事实,即您不必手动运行Cobertura(例如Ant任务)来运行Sonar。

[1] http://docs.codehaus.org/display/SONAR/Analyzing+with+Sonar+Ant+Task

[2] http://docs.codehaus.org/display/SONAR/Analyse+with+a+simple+Java+Runner

Fabrice,SonarSource