10

我正在使用 Ant、Jacoco 和 Sonar。当我运行我的构建时,Sonar 告诉我“没有关于每次测试覆盖率的信息”。和声纳仪表板有我的覆盖结果,但我无法深入了解它们以查看代码。但是,Jacoco 生成的 HTML 报告确实包含深入代码。这是我的报道任务:

    <jacoco:coverage destfile="${coverage.output.file}" >
        <junit printsummary="on" 
            errorProperty="test.failed" 
            failureProperty="test.failed" 
            haltonfailure="yes" 
            fork="true">
            <formatter type="brief" usefile="false" />
            <formatter type="xml" />
            <classpath>
                <path refid="test.build.class.path"/>
                <pathelement location="${test.bin.dir}"/>       
            </classpath>
            <batchtest todir="${results.dir}">
                <fileset dir="${test.bin.dir}">
                    <include name = "**/**/*Test.class"/>
                </fileset>
            </batchtest>
        </junit>
    </jacoco:coverage>  

    <jacoco:report>
        <executiondata>
            <file file="${coverage.output.file}"/>
        </executiondata>
        <structure name="${ant.project.name}">
            <classfiles>
                <fileset dir="${bin.dir}"/>
            </classfiles>
            <sourcefiles encoding="UTF-8">
                <fileset dir="${src.dir}"/>
            </sourcefiles>
        </structure>
        <html destdir="${coverage.results.dir}"/>
    </jacoco:report>
</target>

我的声纳目标看起来像这样:

<target name="sonar" depends = "run">
    <property name="sonar.jdbc.url" value="..." />
    <property name="sonar.jdbc.username" value="...r" />
    <property name="sonar.jdbc.password" value="..." />

    <property name="sonar.projectKey" value="org.codehaus.sonar:example-java-ant" />
    <property name="sonar.projectName" value="${ant.project.name} (ant)" />
    <property name="sonar.projectVersion" value="1.0" />
    <property name="sonar.language" value="java" />
    <property name="sonar.sources" value="${src.dir}" />
    <property name="sonar.binaries" value="${bin.dir},${test.bin.dir}" />
    <property name="sonar.libraries" value="${lib.dir}/*.jar" />    

    <property name="sonar.dynamicAnalysis" value="reuseReports" />
    <property name="sonar.surefire.reportsPath" value="${results.dir}" />
    <property name="sonar.java.coveragePlugin" value="jacoco" />
    <property name="sonar.jacoco.reportPath" value="${coverage.output.file}" />

    <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml">
         <classpath>         
            <fileset dir="${lib.dir}" includes="sonar-ant-task-2.0.jar"/>
         </classpath>
    </taskdef>   

    <sonar:sonar />     
</target>

有谁知道我错过了什么?

4

2 回答 2

2

看起来您还没有设置“sonar.tests”属性来告诉 Sonar 在哪里可以找到单元测试的源代码。请参阅http://docs.sonarqube.org/display/SONAR/Analysis+Parameters

大卫·拉科顿 | 声纳源

于 2013-05-20T08:04:39.057 回答
1

sonar.test属性应设置为测试类。我们的 maven pom 中有以下内容。对于 ANT,你做了类似的事情:

    <profile>
        <id>sonarprofile</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <properties>
            <sonar.host.url>....our host..../sonar.host.url>
            <sonar.projectKey>....our key....</sonar.projectKey>
            <sonar.projectName>${project.artifactId}</sonar.projectName>
            <sonar.projectVersion>${project.version}</sonar.projectVersion>
            <sonar.language>java</sonar.language>
            <sonar.sources>src/main/java</sonar.sources>
            <!-- sonar.tests>target/test-classes</sonar.tests -->
            <!-- that is the default location for Maven projects and -->
            <!-- this parameter can't actually be set in that case -->
            <sonar.scm.provider>git</sonar.scm.provider>
            <sonar.login>${SONAR_LOGIN}</sonar.login>
            <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
            <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
            <sonar.jacoco.reportPath>${basedir}/target/coverage-reports/jacoco-unit.exec</sonar.jacoco.reportPath>
        </properties>
    </profile>

顺便说一句,这里还使用了一些其他属性:

  • 我通过我的声纳用户生成了一个 SONAR 令牌,而不是使用登录名和密码
  • JaCoCo 覆盖是使用jacoco-maven-pluginsonar.jacoco.reportPath是该插件中使用的属性单独生成的。

David Racodon 的回答(https://stackoverflow.com/a/16645108/1019307)曾经是正确的,但在 2014 年年中,SonarQube 停止执行测试作为声纳执行的一部分(http://www.sonarqube.org/unit-声纳库中的测试执行/)。因此,为什么指向测试源不再有效。

于 2016-06-17T21:33:23.457 回答