声纳管。无法显示代码覆盖率

SonarQube. Can't display code coverage

我想设置我的 Sonar(6.1 版)来显示我的项目代码覆盖率。我设置了 JaCoCo 并可以使用命令

在我的计算机上本地生成 CodeCoverage

mvn clean package

但我无法将覆盖范围上传到 Sonar。为此,我使用以下命令:

mvn -Dsonar.login=< my_login > -Dsonar.password=< my_pwd > -Dsonar.host.url=< sonar URL > -Dsonar.projectKey=< productKey > clean package sonar:sonar -Psonar -Ptomcat

这是 pom.xml

中的 JaCoco 设置
<plugin>
  <groupId>org.jacoco</groupId>
  <artifactId>jacoco-maven-plugin</artifactId>
  <version>${jacoco.plugin.version}</version>
  <configuration>
    <destFile>${basedir}/target/coverage-reports/jacoco-unit.exec</destFile>
    <dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
  </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>

我看到以下输出:

[INFO] -------------  Scan risk
[INFO] Language is forced to java
[INFO] Base dir: F:\repo\orchestrator
[INFO] Working dir: F:\repo\orchestrator\target\sonar
[INFO] Source encoding: UTF-8, default locale: ru_RU
[INFO] Quality profile for java: Sonar way
[INFO] Sensor Lines Sensor
[INFO] Sensor Lines Sensor (done) | time=0ms
[INFO] Sensor SCM Sensor
[INFO] Sensor SCM Sensor (done) | time=0ms
[INFO] Sensor Embedded CSS Analyzer Sensor
[INFO] 0 source files to be analyzed
[INFO] Sensor Embedded CSS Analyzer Sensor (done) | time=1ms
[INFO] Sensor Coverage Report Import
[INFO] Sensor Coverage Report Import (done) | time=0ms
[INFO] Sensor Coverage Report Import
[INFO] Sensor Coverage Report Import (done) | time=0ms
[INFO] Sensor Unit Test Results Import
[INFO] Sensor Unit Test Results Import (done) | time=0ms
[INFO] Sensor XmlFileSensor
[INFO] Sensor XmlFileSensor (done) | time=0ms
[INFO] Sensor Zero Coverage Sensor
[INFO] Sensor Zero Coverage Sensor (done) | time=0ms
[INFO] Sensor Code Colorizer Sensor
[INFO] Sensor Code Colorizer Sensor (done) | time=0ms
[INFO] Sensor CPD Block Indexer
[INFO] JavaCpdBlockIndexer is used for java
[INFO] 0/0 source files have been analyzed
[INFO] Sensor CPD Block Indexer (done) | time=0ms
[INFO] Calculating CPD for 592 files
[INFO] CPD calculation finished
[INFO] Analysis report generated in 20712ms, dir size=5 MB
[INFO] Analysis reports compressed in 2506ms, zip size=3 MB
[INFO] Analysis report uploaded in 2704ms
[INFO] ANALYSIS SUCCESSFUL, you can browse http://URL/dashboard/index/<ProductId>:parent
[INFO] Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
[INFO] More about the report processing at http://URL/api/ce/task?id=AV68su2eddnYVrlQ9oP-
[INFO] Task total time: 1:36.284 s

很高兴收到有关代码覆盖率发布到 Sonar 的更多信息。任何 suggestions/hints 将不胜感激。 谢谢!

这里有几处可能出错的地方。第一件看起来可疑的事情是 Sonar 报告了 0 个要分析的文件。它不会上传它没有分析的文件的覆盖率。

这可能是您错误定义的配置文件造成的。 mvn -P 选项接受逗号分隔的列表。您的第二个 -Ptomcat 可能覆盖了第一个 -Psonar。最好使用 -Psonar,tomcat.

还要确保你 运行 项目根目录中的命令(pom.xml 应该位于的位置)并且你的 Sonar 服务器安装并正确配置了 Java 和 Coverage 插件.例如,服务器上的代码覆盖率设置不得排除 java 个文件。

我也会使用 validate 而不是 package,因此您的集成测试(故障安全插件)也是 运行。


挑剔:

如果您使用 Maven,则不需要

-Dsonar.projectKey=< productKey >,除非您想覆盖 pom.xml.

中的默认项目名称