Need help on error ---expected “testExecutions” but got “testsuite” at line 2----I am trying to show unit test count on sonar dashboard for scala and angular,node(mocha and jasmine framework used-istambul reporter is used))

Must-share information (formatted with Markdown):

  • which versions are you using (SonarQube, Scanner, Plugin, and any relevant extension)
  • what are you trying to achieve
  • what have you tried so far to achieve this
    VERSIONS-
    Enterprise EditionVersion 8.7 (build 41497
    SonarScanner 4.3.0.2102 18:50:54 INFO:
    Java 11.0.3 AdoptOpenJDK (64-bit) 18:50:54 INFO: Linux 3.10.0-1127.18.2.el7.x86_64 amd64)

package.json

 "build": "ng build && webpack",
 "test": "mocha && ng test",
 "lint": "ng lint",
 "coverage": "nyc --reporter=text --reporter=lcov npm run test",
 "test-with-coverage": "npx nyc --reporter=html mocha"
  "devDependencies": {
 "karma-coverage-istanbul-reporter": "^3.0.3",
 "karma-sonarqube-reporter": "^1.4.0",
 "jasmine-core": "~3.6.0",
  "jasmine-spec-reporter": "~5.0.0",
  "karma": "~6.1.0",
  "karma-chrome-launcher": "~3.1.0",
  "karma-coverage": "~2.0.3",
  "karma-jasmine": "~4.0.0",
  "karma-jasmine-html-reporter": "^1.5.0",
  "karma-junit-reporter": "^1.2.0",
  "karma-phantomjs-launcher": "^1.0.4",
  "karma-phantomjs-shim": "^1.4.0",
  "mocha": "^8.3.2",
}}

Required deatails from karma file

module.exports = function (config) {
  config.set({
    basePath: '',
    frameworks: ['jasmine', '@angular-devkit/build-angular'],
    plugins: [
      require('karma-jasmine'),
      require('karma-mocha-reporter')
      require('karma-chrome-launcher'),
      require('karma-jasmine-html-reporter'),
      require('karma-sonarqube-reporter'),
      require('karma-junit-reporter'),
      require('karma-coverage-istanbul-reporter'),
      require('@angular-devkit/build-angular/plugins/karma')
    ],
  ],
    coverageIstanbulReporter: {
      dir: require('path').join(__dirname, './coverage'),
      reports: ['html', 'lcovonly'],
      fixWebpackSourcePaths: true
junitReporter: {
      outputDir: require("path").join(__dirname, "coverage"), // results will be saved as $outputDir/$browserName.xml
      outputFile: "junit-test.xml", // if included, results will be saved as $outputDir/$browserName/$outputFile
      useBrowserName: false, // add browser name to report and classes names
      nameFormatter: undefined, // function (browser, result) to customize the name attribute in xml testcase element
      classNameFormatter: undefined, // function (browser, result) to customize the classname attribute in xml testcase element
      properties: {}, // key value pair of properties to add to the <properties> section of the report
      xmlVersion: 1, // use '1' if reporting to be per SonarQube 6.2 XML format
      testexecution: 'unit'
    } ,
reporters: ['progress', 'kjhtml', 'junit','mocha', 'sonarqube'],

format of sonar o/p —

<testsuite name="Chrome Headless 90.0.4430.212 (Linux x86_64)" package="" timestamp="2021-06-18T11:09:55" id="0" hostname="*" tests="" errors="*" failures="*" time="*">
  <properties>
    <property name="browser.fullName" value="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/90.0.4430.212 Safari/537.36"/>
  </properties>
  <testcase name="HeaderComponent should test darkThemeClicked" time="0.241" classname="HeaderComponent"/>
  <testcase name="HeaderComponent should create the app" time="0.633" classname="HeaderComponent"/>
  <testcase name="HeaderComponent Should test ngOnInit" time="0.645" classname="HeaderComponent"/>
  <testcase name="HeaderComponent Should test signOut" time="0.618" classname="HeaderComponent"/>
  <testcase name="HeaderComponent should test lightThemeClicked" time="0.106" classname="HeaderComponent"/>
  <testcase name="ServiceComponent should create" time="0.007" classname="ServiceComponent"/>
  ......
  <system-out>
    <![CDATA[
]]>
  </system-out>
  <system-err/>
sonar.projectKey=
sonar.sources=
sonar.exclusions=**/*spec.ts,**/*guard.ts,**/*module.ts,**/*.html,**/*.scss,**/*intercept.ts,**/*config.ts,**/*utils.ts,**/*pipe.ts
sonar.coverage.inclusions=**/*component.ts,**/*service.ts
sonar.coverage.exclusions=**/*spec.ts,**/guard.ts,**/*.html,**/*module.ts,**/*.scss,**/*intercept.ts,**/*config.ts,**/*utils.ts,**/*pipe.ts
sonar.projectName=
sonar.sourceEncoding=UTF-8
sonar.projectversion=1.0.0

//I tried all below properties

sonar.testExecutionReportPaths=./junit-test.xml
sonar.genericcoverage.unitTestReportPaths=
sonar.genericcoverage.unitTestReportPaths=./junit-test.xml
sonar.test.ReportPaths="./junit-test.xml"
sonar.junit.reportPaths="./junit-test.xml"
sonar.javascript.jstestdriver.reportsPaths="./junit-test.xml"
sonar.javascript.lcov.reportPaths="./lcov.info"

Parsing /Jenkinshome/workspace/*/junit-test.xml

INFO: ------------------------------------------------------------------------
INFO: EXECUTION FAILURE
INFO: ------------------------------------------------------------------------
INFO: Total time: 50.951s
INFO: Final Memory: 29M/107M
INFO: ------------------------------------------------------------------------
ERROR: Error during SonarScanner execution
ERROR: Error during parsing of generic test execution report '/Jenkinshome/workspace/*/junit-test.xml'. Look at the SonarQube documentation to know the expected XML format.
ERROR: Caused by: Unknown XML node, expected "testExecutions" but got "testsuite" at line 2
ERROR:

===========
Can somebody guide on issue.

I want to generate report in below format as per sonar doc- Generic Test Data | SonarQube Docs

<testExecutions version="1">
  <file path="testx/ClassOneTest.xoo">
    <testCase name="test1" duration="5"/>
      <skipped message="short message">other</skipped>
    </testCase>
  </file>
</testExecutions>

How can I do that?
I see coverage and other required details,except unit test count.

Hi,

It’s not clear to me what you’re doing. I guess you’re running a standard tool and expecting it to output a report in Generic Test Data format? I’m not aware of any that do that.

 
Ann

@ganncamp
Above problem is resolved for node

I am facing similar problem for scala using SBT.

I am generating unit test reports for scala -sbt project and trying to show unit test count on sonar dashboard…
Sonarqube version - 8.7 , scala version - 2.12 , SBT version - 1.4.9, sonarqube is having plugin “Scala Code Quality and Security 1.8.2.1946” (sonarscala) installed.

Those reports are in below format-

<?xml version='1.0' encoding='UTF-8'?>
<testsuite hostname="carestation_insights" name="com.ge.hc.csi.preprocessor.PreProcessorConfigTest" tests="5" errors="0" failures="0" 

As per sonarqube official documentation: Sonar supports below format-
testexecutions with filepath and testcases


Property sonar.junit.reportPaths is not supported by current sonar version
property I used for reportpath is - sonar.testExecutionReportPaths
So,I am getting below error -

ERROR: Caused by: Unknown XML node, expected "testExecutions" but got "testsuite" 

I am not getting any plugin for scala sbt which can give me report in above format.
Can anybody help to get report in above format or make sonar sense report in currently generated format

Hi,

Generally I’d tell you to start a new thread for a new question but I can give you the same response here I’ve given above:

Your testsuite XML sample doesn’t match either of the examples in the docs.

 
Ann

@Ankita1 I am facing same issue for me in NodeJs

ERROR: Caused by: Unknown XML node, expected “testExecutions” but got “testsuite” at line 1

How did you resolved it please?

Thanks
Mayank

Did u resolve this error? getting same error as u

Hi facing same issues on my environment… i am able to upload code coverage but unit test we are getting same issue…
Could you help what is the fix for this issue…

Thanks in advance…

Hi @vahithj,

Welcome to the community!

You’ve resurrected two old threads with the same question. Please don’t do either of those things.

I believe between the two threads you’ve posted in, the answer is clear. Nothing has changed.

 
Ann