java - 无法读取单元测试成功率,可以读取jacoco生成的单元测试覆盖率

标签 java ant testng sonarqube jacoco

我希望使用sonar,jacoco,testng,ant来展示单元测试的成功率和单元测试的覆盖率。我可以通过 jacoco 生成覆盖率报告并在 Sonar 中显示。但Sonar无法显示单元测试的成功率。 “单元测试成功”始终等于 0,如下所示。 enter image description here

事实上,testng可以生成测试报告(包括总测试用例数、失败测试用例数和成功测试用例数)。

Sonar 如何读取这些报告并在 Sonar 仪表板中向我们展示?

我的 build.xml 如下所示:

<!-- ========= Define the main properties of this project ========= -->
<property name="src.dir" value="${basedir}/src" />
<property name="test.dir" value="${basedir}/test" />
<property name="lib.dir" value="${basedir}/lib" />
<property name="build.dir" value="${basedir}/build" />
<property name="classes.dir" value="${build.dir}/classes" />
<property name="dist.dir" value="${build.dir}/dist" />
<property name="resource" value="${basedir}/resource" />
<property name="jar-file" value="${dist.dir}/Calculate-1.0.jar" />
<property name="reports.dir" value="${build.dir}/reports" />
<property name="reports.jacoco.dir" value="${build.dir}/reports/jacoco" />

<path id="classpath">
    <fileset dir="${basedir}">
        <include name="lib/*.jar"/>
    </fileset>
    <fileset dir="${build.dir}">
        <include name="dist/*.jar" />
    </fileset>
</path> 

<!-- ========= Define "regular" targets: clean, compile, ... ========= -->
<target name="clean">
    <delete dir="${build.dir}" />
</target>

<target name="init">
    <mkdir dir="${build.dir}" />
    <mkdir dir="${dist.dir}" />
    <mkdir dir="${classes.dir}" />
    <mkdir dir="${reports.dir}" />
    <mkdir dir="${reports.jacoco.dir}" />
</target>

<target name="compile" depends="init">
    <javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" fork="true" debug="true" includeAntRuntime="true" />
    <javac srcdir="${test.dir}" destdir="${classes.dir}" classpathref="classpath" fork="true" debug="true" includeAntRuntime="true" />
</target>

<target name="jar" depends="compile">
    <jar destfile="${jar-file}" basedir="${classes.dir}"/>
</target>

<target name="test" depends="jar">
    <taskdef name="testng" classname="com.beust.testng.TestNGAntTask">
            <classpath path="${lib.dir}/testng-6.8.5.jar"/>
    </taskdef> 
    <taskdef uri="antlib:org.jacoco.ant" resource="resource/antlib.xml"> 
        <classpath path="${lib.dir}/jacoco-ant-task-core-agent.jar" />
    </taskdef>
    <jacoco:coverage destfile="${reports.jacoco.dir}/jacoco.exec" xmlns:jacoco="antlib:org.jacoco.ant">
        <testng classpath="${lib.dir}/testng-6.8.5.jar" classpathref="classpath" outputDir="${reports.dir}" haltOnFailure="false" >
            <xmlfileset dir="${basedir}" includes="testng.xml" />
            <sysproperty key="testdata" value="${test.dir}" />
            <jvmarg value="-Dtest.resources.dir=${test.dir}" />
        </testng>
    </jacoco:coverage>
</target>
-->
<!-- ========= Define Sonar target ========= -->
<property name="sonar.projectKey" value="org.codehaus.sonar:example-java-ant" />
<property name="sonar.projectName" value="Simple Java Project analyzed with the Sonar Ant Task" />
<property name="sonar.projectVersion" value="1.0" />
<property name="sonar.language" value="java" />
<property name="sonar.sources" value="${src.dir}" />
<property name="sonar.tests" value="${test.dir}" />
<property name="sonar.binaries" value="${classes.dir}" />
<property name="sonar.sourceEncoding" value="UTF-8" />
<property name="sonar.dynamicAnalysis" value="reuseReports" />
<property name="sonar.java.coveragePlugin" value="jacoco" />
<property name="sonar.jacoco.reportPath" value="${reports.jacoco.dir}/jacoco.exec" />
<property name="sonar.host.url" value="http://localhost:9000" />
<property name="sonar.jdbc.url" value="jdbc:h2:tcp://localhost:9092/sonar" />
<!--<property name="sonar.surefire.reportsPath" value="${reports.dir}" />-->
<!--
  <property name="sonar.jdbc.username" value="..." />
  <property name="sonar.jdbc.password" value="..." />
-->
<target name="sonar" depends="compile">
    <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml">
        <!-- Update the following line, or put the "sonar-ant-task-*.jar" file in your "$HOME/.ant/lib" folder -->
        <classpath path="${lib.dir}/sonar-ant-task-2.1.jar" />
    </taskdef>      
    <!-- Execute Sonar -->
    <sonar:sonar />
</target>
<target name="all" depends="clean,init,compile,jar,test,sonar" />

最佳答案

感谢珍妮的回答。我现在解决了。正如Jeanne所说,sonar不支持TestNG,它支持JUnit。所以我使用ReportNG生成xml格式的测试报告。报告文件将命名为 com.abc.classTest1.xml。为了成功地在 Sonar 中显示单元测试成功,我们应该将其名称更改为 TEST-com.abc.classTest1.xml。下面是我的 build.xml 的最终版本。

<!-- ========= Define the main properties of this project ========= -->
<property name="src.dir" value="${basedir}/src" />
<property name="test.dir" value="${basedir}/test" />
<property name="lib.dir" value="${basedir}/lib" />
<property name="build.dir" value="${basedir}/build" />
<property name="classes.dir" value="${build.dir}/classes" />
<property name="dist.dir" value="${build.dir}/dist" />
<property name="resource" value="${basedir}/resource" />
<property name="jar-file" value="${dist.dir}/Calculate-1.0.jar" />
<property name="reports.dir" value="${build.dir}/reports" />
<property name="reports.jacoco.dir" value="${build.dir}/reports/jacoco" />
<property name="junitreport.dir" value="junitreport" />

<path id="classpath">
    <fileset dir="${basedir}">
        <include name="lib/*.jar"/>
    </fileset>
    <fileset dir="${build.dir}">
        <include name="dist/*.jar" />
    </fileset>
</path> 

<!-- ========= Define "regular" targets: clean, compile, ... ========= -->
<target name="clean">
    <delete dir=".sonar" />
    <delete dir="${build.dir}" />
    <delete dir="${junitreport.dir}" />
</target>

<target name="init">
    <mkdir dir="${build.dir}" />
    <mkdir dir="${dist.dir}" />
    <mkdir dir="${classes.dir}" />
    <mkdir dir="${reports.dir}" />
    <mkdir dir="${reports.jacoco.dir}" />
    <mkdir dir="${junitreport.dir}" />
</target>

<target name="compile" depends="init">
    <javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" fork="true" debug="true" includeAntRuntime="true" />
    <javac srcdir="${test.dir}" destdir="${classes.dir}" classpathref="classpath" fork="true" debug="true" includeAntRuntime="true" />
</target>

<target name="jar" depends="compile">
    <jar destfile="${jar-file}" basedir="${classes.dir}"/>
</target>

<target name="test" depends="jar">
<!--    <taskdef name="junit" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask">
        <classpath>
            <path refid="classpath"/>
        </classpath>
    </taskdef>  -->
    <taskdef name="testng" classname="com.beust.testng.TestNGAntTask">
            <classpath path="${lib.dir}/testng-6.8.5.jar"/>
    </taskdef> 
    <taskdef uri="antlib:org.jacoco.ant" resource="resource/antlib.xml"> 
        <classpath path="${lib.dir}/jacoco-ant-task-core-agent.jar" />
    </taskdef>
    <jacoco:coverage destfile="${reports.jacoco.dir}/jacoco.exec" xmlns:jacoco="antlib:org.jacoco.ant">
        <testng classpath="${lib.dir}/testng-6.8.5.jar" classpathref="classpath" outputDir="${reports.dir}" 
        haltOnFailure="false" useDefaultListeners="false" listeners="org.uncommons.reportng.JUnitXMLReporter">
            <xmlfileset dir="${basedir}" includes="testng.xml" />
            <sysproperty key="testdata" value="${test.dir}" />
            <sysproperty key="org.uncommons.reportng.title" value="My Sonar Test Report" />
        </testng>
<!--        <junit fork="yes" dir="" failureProperty="test.failed">
            <classpath location="${classes.dir}" />
            <classpath refid="classpath" />

            <formatter type="xml" />
            <batchtest todir="${junitreport.dir}">
                <fileset dir="${test.dir}">
                    <include name="com/cisco/sonar/CalculateTestJunit.java" />
                </fileset>
            </batchtest>
        </junit>    -->
    </jacoco:coverage>
</target>   

<!-- ========= Define Sonar target ========= -->
<property name="sonar.projectKey" value="org.codehaus.sonar:example-java-ant" />
<property name="sonar.projectName" value="Simple Java Project analyzed with the Sonar Ant Task" />
<property name="sonar.projectVersion" value="1.0" />
<property name="sonar.language" value="java" />
<property name="sonar.sources" value="${src.dir}" />
<property name="sonar.tests" value="${test.dir}" />
<property name="sonar.binaries" value="${classes.dir}" />
<property name="sonar.sourceEncoding" value="UTF-8" />
<property name="sonar.dynamicAnalysis" value="reuseReports" />
<property name="sonar.java.coveragePlugin" value="jacoco" />
<property name="sonar.jacoco.reportPath" value="${reports.jacoco.dir}/jacoco.exec" />
<property name="sonar.host.url" value="http://1.2.3.4:9000" />
<property name="sonar.jdbc.url" value="jdbc:h2:tcp://1.2.3.4:9092/sonar" />
<property name="sonar.surefire.reportsPath" value="${reports.dir}/xml" />
<!--
  <property name="sonar.jdbc.username" value="..." />
  <property name="sonar.jdbc.password" value="..." />
-->
<target name="sonar">
    <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml">
        <!-- Update the following line, or put the "sonar-ant-task-*.jar" file in your "$HOME/.ant/lib" folder -->
        <classpath path="${lib.dir}/sonar-ant-task-2.1.jar" />
    </taskdef>      
    <!-- Execute Sonar -->
    <sonar:sonar />
</target>
<target name="all" depends="clean,init,compile,jar,test,sonar" />

关于java - 无法读取单元测试成功率,可以读取jacoco生成的单元测试覆盖率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18299586/

相关文章:

java - 有没有一种有效的方法来检查字符串是否代表日期?

java - 为什么 SingleThreaded Executor 服务使用 4 个核心?

java - 存在多个 @Singleton OpenEJB bean 实例

java - 您能更好地解释一下 TestNG 的 @BeforeTest 注解的语义吗?

apache - javalangClassFormatError : Invalid Constant Pool entry Type 18

testng - TestNG 中的 invokeCount 和 IRetryAnalyzer 方法到底有什么区别?

java - protected void paintComponent(图形 g)

java - 这个 Singleton 是线程安全的吗?

java - 在 ANT 中编译失败的类列表

ant - 对于 Ant 大师 : how do I copy and concat at the same time or in the same manner?