-
Notifications
You must be signed in to change notification settings - Fork 365
sonar.cxx.xunit.reportPaths
Sensor to read reports from tools creating xUnit files. xUnit is the collective name for several unit testing frameworks that derive their structure and functionality from Smalltalk's SUnit. The names of many of these frameworks are a variation on "SUnit", usually replacing the "S" with the first letter (or letters) in the name of their intended language ("JUnit" for Java, "RUnit" for R etc.). These frameworks and their common architecture are collectively known as "xUnit".
In combination with the XSL transformation almost all unit test frameworks can be integrated by the _cxx plugin.
Note: The plugin itself does not run any tools, you have to do that yourself beforehand. The sensor only reads the report generated by a tool!
xUnit is not really a standard. There are many variants, most of which differ in fine details. The reports supported by this cxx plugin look like the following (for details see xunit.rnc):
...
<testsuite name="ts" filename="some path" ... >
<!-- optional: the testsuites can be nested: -->
<testsuite name="nested ts"
filename="some path" ... >
<testcase name="tc1" filename="some path" status="run" time="0.05" classname="classA"/>
<testcase name="tc2" status="run" time="0" classname="classB">
<failure message="..." type="">
<![CDATA[test_component1.cc:17
Value of: 112
Expected: bar.foo()
Which is: 111]]>
</failure>
</testcase>
</testsuite>
...
</testsuite>
...Hints:
- the root tag
<testsuites>is ignored and the included<testsuite>tags are processed instead - the
<testsuite>tags can be nested - The
filenameattribute is optional and tool specific. Thefilenameattribute can be added to the<testsuite>or the<testcase>tag. The values of these attributes should contain a path to the corresponding source file. The path can be absolute or relative to the project base directory.
<testsuite name="ts" filename="tests/mytest.cc" ... >
... testcases ...
</testsuite>and/or
...
<testcase name="tc" filename="tests/myothertest.cc" ... />
...
In order to generate a fitting report, make sure:
- that the paths in the report matches the
sonar.sourcesandsonar.testslists insonar-project.properties - the path can be absolute or relative to the project base directory
Sample command lines:
To create xUnit compatible output with Google Test use it this way:
GoogleTestSample.exe --gtest_output=xml:report.xmlWith Boost.Test use --log_level=all or --log_level=success:
BoostTestSample.exe --log_format=XML --log_sink=report.xml --log_level=all --report_level=noThis sample creates a test case with Google Test:
#include <gtest/gtest.h>
#include <iostream>
TEST(TestSuiteName, TestName) {
std::cout << "Hello world!" << std::endl;
ASSERT_EQ(1+1, 2);
}Compile and run the Google Test binary to create XUnit compatible output:
HelloWorld.exe --gtest_output=xml:report.xmlIf the tool was executed successfully, a report like the example below should be generated:
<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="1" failures="0" disabled="0" errors="0" timestamp="2015-01-28T23:29:18" time="0" name="AllTests">
<testsuite name="TestSuiteName" tests="1" failures="0" disabled="0" errors="0" time="0">
<testcase name="TestName" status="run" time="0" classname="TestSuiteName" />
</testsuite>
</testsuites>This sample creates a test case with Boost.Test:
#define BOOST_TEST_MODULE MyModule
#include <boost/test/unit_test.hpp>
#include <iostream>
BOOST_AUTO_TEST_SUITE(TestSuiteName)
BOOST_AUTO_TEST_CASE(TestName)
{
std::cout << "Hello world!" << std::endl;
BOOST_CHECK_EQUAL(1+1, 2);
}
BOOST_AUTO_TEST_SUITE_END()Compile and run the Boost.Test binary to create a report:
HelloWorld.exe --log_format=XML --log_sink=report.xml --log_level=all --report_level=noIf the tool was executed successfully, a report like the example below should be generated:
<TestLog>
<TestSuite name="MyModule">
<TestSuite name="TestSuiteName">
<TestCase name="TestName">
<Info file="d:/sample/HelloWorld.cpp" line="8"><![CDATA[check 1+1 == 2 passed]]></Info>
<TestingTime>1</TestingTime>
</TestCase>
</TestSuite>
</TestSuite>
</TestLog>- First check if the file extensions read in by the plugin are set (sonar.cxx.file.suffixes).
- That the paths in the report matches the
sonar.sourcesandsonar.testslists insonar-project.properties. - Set the analysis parameter
sonar.cxx.xunit.reportPathsin the configuration filesonar-project.propertiesof your project. The Report Paths link describes the configuration options. - If the report needs to be adjusted, use the built-in XLS transformation, see sonar.cxx.xslt for more information.
- Execute the SonarScanner to transfer the project with the report to the SonarQube server.
Sample for sonar-project.properties:
In the simplest case, the report can be read in directly:
sonar.cxx.xunit.reportPaths=report.xmlFor formats that are not directly supported, an XSL transformation must be performed first. Here is an example with Boost.Test:
# XSL transformation 'sample.xml' => 'sample.after_xslt'
sonar.cxx.xslt.1.stylesheet=boosttest-1.x-to-junit-1.0.xsl
sonar.cxx.xslt.1.inputs=sample.xml
sonar.cxx.xslt.1.outputs=*.after_xslt
# xUnit: read XML after XSL transformation
sonar.cxx.xunit.reportPaths=sample.after_xslt- If scanning is failing, check items listed under Troubleshooting Configuration.