非常に基本的なC++プロジェクトでSonarQubeを使用しようとしています。私はCppUnitを使ってテストを行い、これはXMLレポートを生成します。
SonarQube C++コミュニティプラグインを使用していますが、SonarQubeでテスト結果を表示できませんでした。Sonarqubeが私のcppunitレポートを見ることができません
Here IS my sonar-project.properties file
# Required metadata
sonar.projectKey=test
sonar.projectName=C++ Project Test
sonar.projectVersion=1.0
# Comma-separated paths to directories with sources (required)
sonar.sources=./
# Language
sonar.language=c++
# Encoding of the source files
sonar.sourceEncoding=UTF-8
# Path to the directory containing the CPPUnit reports
sonar.cxx.xunit.xsltURL=report/cppunit/cppunit-1.x-to-junit-1.0.xsl
sonar.cxx.xunit.reportPath=report/cppunit/cppunit-report.xml
I found out上internet that a xslt conversion was needed用SonarQubeへBE ableへread CppUnit reports。
プロジェクトフォルダにsonar-runner -Xを実行して解析を開始します。
- xslt変換せずに使用しようとするとエラーはありませんが、SonarQube Webインターフェイスのテストについては何も言及されていません(実行されなかったようです)。
- 私はこのエラーを持っているXSLT変換を使用する場合:
Transforming the report using xslt 'report/cppunit/cppunit-1.x-to-junit-1.0.xsl'
10:21:36.793 DEBUG - Transforming: try to access external XSLT via URL
10:21:36.794 ERROR - Cannot feed the data into SonarQube, details: 'java.net.MalformedURLException: no protocol: report/cppunit/cppunit-1.x-to-junit-1.0.xsl'
INFO: ------------------------------------------------------------------------
INFO: EXECUTION FAILURE
INFO: ------------------------------------------------------------------------
Total time: 7.589s
Final Memory: 21M/292M
INFO: ------------------------------------------------------------------------
ERROR: Error during Sonar runner execution
org.sonar.runner.impl.RunnerException: Unable to execute Sonar
at org.sonar.runner.impl.BatchLauncher$1.delegateExecution(BatchLauncher.java:91)
at org.sonar.runner.impl.BatchLauncher$1.run(BatchLauncher.java:75)
at java.security.AccessController.doPrivileged(Native Method)
at org.sonar.runner.impl.BatchLauncher.doExecute(BatchLauncher.java:69)
at org.sonar.runner.impl.BatchLauncher.execute(BatchLauncher.java:50)
at org.sonar.runner.api.EmbeddedRunner.doExecute(EmbeddedRunner.java:102)
at org.sonar.runner.api.Runner.execute(Runner.java:100)
at org.sonar.runner.Main.executeTask(Main.java:70)
at org.sonar.runner.Main.execute(Main.java:59)
at org.sonar.runner.Main.main(Main.java:53)
Caused by: java.lang.IllegalStateException: Cannot feed the data into SonarQube, details: 'java.net.MalformedURLException: no protocol: report/cppunit/cppunit-1.x-to-junit-1.0.xsl'
at org.sonar.plugins.cxx.tests.xunit.CxxXunitSensor.analyse(CxxXunitSensor.java:159)
at org.sonar.batch.phases.SensorsExecutor.executeSensor(SensorsExecutor.java:58)
at org.sonar.batch.phases.SensorsExecutor.execute(SensorsExecutor.java:50)
at org.sonar.batch.phases.AbstractPhaseExecutor.execute(AbstractPhaseExecutor.java:83)
at org.sonar.batch.scan.ModuleScanContainer.doAfterStart(ModuleScanContainer.java:192)
at org.sonar.core.platform.ComponentContainer.startComponents(ComponentContainer.java:142)
at org.sonar.core.platform.ComponentContainer.execute(ComponentContainer.java:127)
at org.sonar.batch.scan.ProjectScanContainer.scan(ProjectScanContainer.java:241)
at org.sonar.batch.scan.ProjectScanContainer.scanRecursively(ProjectScanContainer.java:236)
at org.sonar.batch.scan.ProjectScanContainer.doAfterStart(ProjectScanContainer.java:226)
at org.sonar.core.platform.ComponentContainer.startComponents(ComponentContainer.java:142)
at org.sonar.core.platform.ComponentContainer.execute(ComponentContainer.java:127)
at org.sonar.batch.task.ScanTask.execute(ScanTask.java:47)
at org.sonar.batch.task.TaskContainer.doAfterStart(TaskContainer.java:86)
at org.sonar.core.platform.ComponentContainer.startComponents(ComponentContainer.java:142)
at org.sonar.core.platform.ComponentContainer.execute(ComponentContainer.java:127)
at org.sonar.batch.bootstrap.GlobalContainer.executeTask(GlobalContainer.java:106)
at org.sonar.batch.bootstrapper.Batch.executeTask(Batch.java:119)
at org.sonar.batch.bootstrapper.Batch.execute(Batch.java:79)
at org.sonar.runner.batch.IsolatedLauncher.execute(IsolatedLauncher.java:48)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.sonar.runner.impl.BatchLauncher$1.delegateExecution(BatchLauncher.java:87)
... 9 more
Caused by: java.net.MalformedURLException: no protocol: report/cppunit/cppunit-1.x-to-junit-1.0.xsl
at java.net.URL.<init>(URL.java:593)
at java.net.URL.<init>(URL.java:490)
at java.net.URL.<init>(URL.java:439)
at org.sonar.plugins.cxx.tests.xunit.CxxXunitSensor.transformReport(CxxXunitSensor.java:265)
at org.sonar.plugins.cxx.tests.xunit.CxxXunitSensor.analyse(CxxXunitSensor.java:135)
... 33 more
を誰もがこの問題を解決する方法についてのアイデアを持って?または、SonarQubeでCppUnitレポートを使用する方法を示すチュートリアルなどがありますか?私は数時間捜しましたが、それを修正するための何も見つかりませんでした。