ERROR: Caused by: Line 5 of report refers to a file with an unknown language (TypeScript file)

Version

sonarqube-scanner: “^2.8.1”,

Native SonarScanner: “4.5.0.2216”

Error

ERROR: Error during SonarScanner execution
ERROR: Error during parsing of generic test execution report '/Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/coverage/test-reporter.xml'. 
Look at the SonarQube documentation to know the expected XML format.
ERROR: Caused by: Line 5 of report refers to a file with an unknown language:
 /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/src/components/FibonacciTest/utils/__tests__/dp_function.test.ts
ERROR: 

Hello, have someone know this,
No error when i change dp_function.test.ts to dp_function.test.js

it haunted me for a long time😂lol

INFO: Load metrics repository
INFO: Load metrics repository (done) | time=69ms
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by net.sf.cglib.core.ReflectUtils$1 (file:/Users/shenyukang1/.sonar/cache/866bb1adbf016ea515620f1aaa15ec53/sonar-javascript-plugin.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of net.sf.cglib.core.ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
INFO: Sensor SonarCSS Metrics [cssfamily]
INFO: Sensor SonarCSS Metrics [cssfamily] (done) | time=71ms
INFO: Sensor SonarCSS Rules [cssfamily]
INFO: Sensor SonarCSS Rules [cssfamily] (done) | time=2768ms
INFO: Sensor JavaXmlSensor [java]
INFO: Sensor JavaXmlSensor [java] (done) | time=2ms
INFO: Sensor HTML [web]
INFO: Sensor HTML [web] (done) | time=13ms
INFO: Sensor JaCoCo XML Report Importer [jacoco]
INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=3ms
INFO: Sensor SonarJS [javascript]
INFO: 3 source files to be analyzed
INFO: Sensor SonarJS [javascript] (done) | time=210ms
INFO: Sensor ESLint-based SonarJS [javascript]
INFO: 3/3 source files have been analyzed
INFO: 3 source files to be analyzed
INFO: Sensor ESLint-based SonarJS [javascript] (done) | time=3264ms
INFO: 3/3 source files have been analyzed
INFO: Sensor SonarJS Coverage [javascript]
INFO: Analysing [/Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/./coverage/lcov.info]
INFO: Sensor SonarJS Coverage [javascript] (done) | time=15ms
INFO: Sensor Generic Test Executions Report
INFO: Parsing /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/coverage/test-reporter.xml
INFO: ------------------------------------------------------------------------
INFO: EXECUTION FAILURE
INFO: ------------------------------------------------------------------------
INFO: Total time: 16.904s
INFO: Final Memory: 13M/57M
INFO: ------------------------------------------------------------------------
ERROR: Error during SonarScanner execution
ERROR: Error during parsing of generic test execution report '/Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/coverage/test-reporter.xml'. Look at the SonarQube documentation to know the expected XML format.
ERROR: Caused by: Line 5 of report refers to a file with an unknown language: /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/src/components/FibonacciTest/utils/__tests__/dp_function.test.ts
ERROR:

Is it because SonarJS is used here!? Maybe SonarJS doesn’t support scanning typescript?
If so how do I set up SonarTS to scan?

// sonar-scanner.js

const scanner = require('sonarqube-scanner');

scanner(
    {
        serverUrl: 'http://sonarqube.test.lan',
        token: 'xxxxxx',
        options: {
            'sonar.login': 'xxxxxx',
            'sonar.host.url': 'http://sonarqube.test.lan',
            'sonar.projectName': 'umi4-web-demo',
            'sonar.projectKey': 'umi4-web-demo',
            'sonar.sources': '.',
            'sonar.projectBaseDir': '.',
            'sonar.javascript.lcov.reportPaths': './coverage/lcov.info',
            'sonar.testExecutionReportPaths': './coverage/test-reporter.xml',
            'sonar.sourceEncoding': 'UTF-8',
            'sonar.eslint.reportPath': './report.json',
            'sonar.tests.inclusions': '**/*.test.tsx,**/*.test.ts',
            'sonar.exclusions': '**/*.test.tsx',
        },
    },
    () => process.exit(),
);

Hi,

What version of SonarQube are you using? Could you provide the full analysis log?

 
Ann

SonarQube server version: 7.9.3

The full analysis log

> sonar-jest-coverage

> node sonar_analyse.js

[09:44:42] Starting analysis...

[09:44:42] Getting info from "package.json" file

[09:44:42] Checking if executable exists: /Users/shenyukang1/.sonar/native-sonar-scanner/sonar-scanner-4.5.0.2216-macosx/bin/sonar-scanner

[09:44:42] Platform binaries for SonarScanner found. Using it.

INFO: Scanner configuration file: /Users/shenyukang1/.sonar/native-sonar-scanner/sonar-scanner-4.5.0.2216-macosx/conf/sonar-scanner.properties

INFO: Project root configuration file: NONE

INFO: SonarScanner 4.5.0.2216

INFO: Java 11.0.3 AdoptOpenJDK (64-bit)

INFO: Mac OS X 10.16 x86_64

INFO: User cache: /Users/shenyukang1/.sonar/cache

INFO: Scanner configuration file: /Users/shenyukang1/.sonar/native-sonar-scanner/sonar-scanner-4.5.0.2216-macosx/conf/sonar-scanner.properties

INFO: Project root configuration file: NONE

INFO: Analyzing on SonarQube server 7.9.3

INFO: Default locale: "en_CN", source code encoding: "UTF-8"

INFO: Load global settings

INFO: Load global settings (done) | time=158ms

INFO: Server id: 86E1FA4D-AXI2CqnuMClnDv8S8kTi

INFO: User cache: /Users/shenyukang1/.sonar/cache

INFO: Load/download plugins

INFO: Load plugins index

INFO: Load plugins index (done) | time=94ms

INFO: Plugin [l10nzh] defines 'l10nen' as base plugin. This metadata can be removed from manifest of l10n plugins since version 5.2.

INFO: Load/download plugins (done) | time=193ms

INFO: Process project properties

INFO: Execute project builders

INFO: Execute project builders (done) | time=3ms

INFO: Project key: umi4-web-demo

INFO: Base dir: /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo

INFO: Working dir: /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/.scannerwork

INFO: Load project settings for component key: 'umi4-web-demo'

INFO: Load project settings for component key: 'umi4-web-demo' (done) | time=55ms

INFO: Load quality profiles

INFO: Load quality profiles (done) | time=84ms

INFO: Load active rules

INFO: Load active rules (done) | time=1015ms

INFO: Indexing files...

INFO: Project configuration:

INFO: Excluded sources: **/*.test.tsx

INFO: Load project repositories

INFO: Load project repositories (done) | time=53ms

INFO: 47 files indexed

INFO: 0 files ignored because of inclusion/exclusion patterns

INFO: 0 files ignored because of scm ignore settings

INFO: Quality profile for css: Sonar way

INFO: Quality profile for js: Sonar way

INFO: ------------- Run sensors on module umi4-web-demo

INFO: Load metrics repository

INFO: Load metrics repository (done) | time=58ms

WARNING: An illegal reflective access operation has occurred

WARNING: Illegal reflective access by net.sf.cglib.core.ReflectUtils$1 (file:/Users/shenyukang1/.sonar/cache/866bb1adbf016ea515620f1aaa15ec53/sonar-javascript-plugin.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)

WARNING: Please consider reporting this to the maintainers of net.sf.cglib.core.ReflectUtils$1

WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations

WARNING: All illegal access operations will be denied in a future release

INFO: Sensor SonarCSS Metrics [cssfamily]

INFO: Sensor SonarCSS Metrics [cssfamily] (done) | time=70ms

INFO: Sensor SonarCSS Rules [cssfamily]

INFO: Sensor SonarCSS Rules [cssfamily] (done) | time=3251ms

INFO: Sensor JavaXmlSensor [java]

INFO: Sensor JavaXmlSensor [java] (done) | time=2ms

INFO: Sensor HTML [web]

INFO: Sensor HTML [web] (done) | time=15ms

INFO: Sensor JaCoCo XML Report Importer [jacoco]

INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=2ms

INFO: Sensor SonarJS [javascript]

INFO: 2 source files to be analyzed

INFO: Sensor SonarJS [javascript] (done) | time=177ms

INFO: 2/2 source files have been analyzed

INFO: Sensor ESLint-based SonarJS [javascript]

INFO: 2 source files to be analyzed

INFO: 2/2 source files have been analyzed

INFO: Sensor ESLint-based SonarJS [javascript] (done) | time=3518ms

INFO: Sensor SonarJS Coverage [javascript]

INFO: Analysing [/Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/./coverage/lcov.info]

INFO: Sensor SonarJS Coverage [javascript] (done) | time=18ms

INFO: Sensor Generic Test Executions Report

INFO: Parsing /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/coverage/test-reporter.xml

INFO: ------------------------------------------------------------------------

INFO: EXECUTION FAILURE

INFO: ------------------------------------------------------------------------

INFO: Total time: 17.706s

INFO: Final Memory: 13M/47M

INFO: ------------------------------------------------------------------------

ERROR: Error during SonarScanner execution

ERROR: Error during parsing of generic test execution report '/Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/coverage/test-reporter.xml'. Look at the SonarQube documentation to know the expected XML format.

ERROR: Caused by: Line 5 of report refers to a file with an unknown language: /Users/shenyukang1/Myprogram/tool-make/umi4-web-demo/src/components/FibonacciTest/utils/__tests__/dp_function.test.ts

ERROR

Hi,

SonarQube 7.9.3 is well past EOL. You should upgrade to either the latest version or the current LTS at your earliest convenience. Your upgrade path is:

7.9.3 → 8.9.9 → 9.5 (last step optional)

You may find the Upgrade Guide and the LTS-to-LTS Upgrade Notes helpful. If you have questions about upgrading, feel free to open a new thread for that here.

If your error persists after upgrade, please come back to us.

 
Ann