A question about generic test execution

Must-share information (formatted with Markdown):

  • which versions are you using (SonarQube, Scanner, Plugin, and any relevant extension)
    Sonarqube 7.6

  • what are you trying to achieve
    Integrate GoogleTest result into sonarqube and the unit test cases can be drilled down.
    For example, when some unit test failed, developers can easily find which one.

  • what have you tried so far to achieve this
    I followed the schema of generic test execution, converted the XML report of google test and update sonar properties (add sonar.testExecutionReportPaths=uts_report.xml). Inside of the XML, I prepared some failure cases with some messages.

Sonar-scanner ran successfully but when I looked into the analysis. Sonarqube only shows the count of failure cases, without any details.

Where to find the details of the failure?

Attached the screenshot and the uts_report.xml.

2019-02-16_16-26-06

Thanks very much!

Add the uts_report.xml

uts_report.xml

Nowhere. SonarSource dropped the UI that used to show the test details. In SonarQube 7.6 you won’t be able to see that information anywhere.

1 Like

Thanks for the reply, @Scott.
Do you know which version of Sonarqube supports this function? And is it possible to write some plugins to let Sonarqube show this info?

The last version that supported it was SonarQube 7.4. We could open the test file, go to “Show measures” and see the test details:

image

I don’t think it’s possible to write a plugin to show this info. This doesn’t exist in SonarQube 7.5 and newer.

1 Like

Many thanks, @Scott.
I will have a try on SonarQube 7.4.

And I personally don’t understand why SonarSource dropped such important feature. Every engineer wants to know where the failure/error is.

Hi @Scott,

Thanks for your information. I’ve implemented kind of converter to generate the generic test report and it works well.

Hi @yqli1983. Could you please share the converter as I am stuck with the same problem

No problem. Let me do some clean up first. Super busy recently.

@yqli1983 Thanks … is it possible to send across the converter in next couple of days. Much appreciated

Should be ready by weekend.

Kool . Thanks a lot mate

Hi @yqli1983. Any update on the translator

Check this github link.

In the google test report, there is no information about where the test comes from. So to link them, you need to provide the source files of test cases.

I only did some testings with sample projects. Not yet use it in any real production. You can file me issue on github. :grinning:

Will this feature every be added back to newer sonarqube?
I agree with @yqli1983

Would it be wise to go back to sonarqube 7.4?

I tried something familiar from trx to generic but whenever my analysis start it shows me

14:05:33.645 INFO: Sensor Generic Test Executions Report
14:05:33.646 INFO: Parsing C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\TestResults\UI_TP.xml
14:05:33.663 INFO: Imported test execution data for 0 files
14:05:33.663 INFO: Test execution data ignored for 9 unknown files, including:
tests/UnitTest1.cs

where is the file = attribute looking from?

This I created a static file.

<testExecutions version="1">
  <file path="tests/UnitTest1.cs">
    <testCase name="TestMethod1" duration="5"/>
    <testCase name="TestMethod2" duration="500">
      <skipped message="short message">other</skipped>
    </testCase>
  </file>  
</testExecutions>

The path of the workspace is

C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\TestResults

Where my test are

C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests
Like UnitTest1.cs
[TestClass]
    public class UnitTest1
    {
        [TestMethod]
        public void TestMethod1()
        {
            Assert.IsTrue(true);
        }
        [TestMethod]
        public void TestMethod2()
        {
            Assert.IsTrue(false);
        }
    }

I always get this in sonarqube:

15:01:26.062 INFO: Parsing C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\TestResults\UI_TP.xml
15:01:26.068 INFO: Imported test execution data for 0 files
15:01:26.068 INFO: Test execution data ignored for 12 unknown files, including:
tests/UnitTest1.cs
tests/UnitTest1
../tests/UnitTest1
../UnitTest1
SonarScanner for MSBuild 4.8
Using the .NET Core version of the Scanner for MSBuild
Post-processing started.
16:57:05.124  16:57:05.123  sonar.verbose=true was specified - setting the log verbosity to 'Debug'
16:57:05.124  Loading the SonarQube analysis config from C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\conf\SonarQubeAnalysisConfig.xml
16:57:05.125  Not running under TeamBuild
16:57:05.125  Analysis base directory: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube
Build directory: 
Bin directory: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\bin
Config directory: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\conf
Output directory: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out
Config file: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\conf\SonarQubeAnalysisConfig.xml
Generating SonarQube project properties file to C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\sonar-project.properties
Setting analysis property: sonar.visualstudio.enable=false
The supplied Code Analysis ErrorLog file is a valid json file and does not need to be fixed: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\bin\Debug\netcoreapp3.1\SMT_CORE_UI_TESTS.dll.RoslynCA.json
The supplied Code Analysis ErrorLog file is a valid json file and does not need to be fixed: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\bin\Debug\netcoreapp3.1\SMT_CORE_UI_TESTS.dll.RoslynCA.json
The supplied Code Analysis ErrorLog file is a valid json file and does not need to be fixed: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\bin\Debug\netcoreapp3.1\SMT_CORE_UI_TESTS.dll.RoslynCA.json
The supplied Code Analysis ErrorLog file is a valid json file and does not need to be fixed: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\bin\Debug\netcoreapp3.1\SMT_CORE_UI_TESTS.dll.RoslynCA.json
Using longest common projects root path as project base directory: 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS'.
WARNING: File 'C:\Windows\system32\config\systemprofile\.nuget\packages\microsoft.net.test.sdk\16.2.0\build\netcoreapp1.0\Microsoft.NET.Test.Sdk.Program.cs' is not located under the root directory 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS' and will not be analyzed.
File was referenced by the following projects: 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\SMT_CORE_UI_TESTS.csproj'.
WARNING: File 'C:\Windows\system32\config\systemprofile\.nuget\packages\mstest.testadapter\2.0.0\build\_common\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll' is not located under the root directory 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS' and will not be analyzed.
File was referenced by the following projects: 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\SMT_CORE_UI_TESTS.csproj'.
WARNING: File 'C:\Windows\system32\config\systemprofile\.nuget\packages\mstest.testadapter\2.0.0\build\_common\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll' is not located under the root directory 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS' and will not be analyzed.
File was referenced by the following projects: 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\SMT_CORE_UI_TESTS.csproj'.
WARNING: File 'C:\Windows\system32\config\systemprofile\.nuget\packages\mstest.testadapter\2.0.0\build\netcoreapp1.0\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll' is not located under the root directory 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS' and will not be analyzed.
File was referenced by the following projects: 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\SMT_CORE_UI_TESTS.csproj'.
Dumping content of sonar-project.properties
------------------------------------------------------------------------
sonar.projectKey=SMT_UI_TESTING
sonar.working.directory=C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\.sonarqube\\out\\.sonar
sonar.projectBaseDir=C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS

0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.projectKey=SMT_UI_TESTING:0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.projectName=SMT_CORE_UI_TESTS
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.projectBaseDir=C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.sourceEncoding=utf-8
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.sources=\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\Resources.Designer.cs",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\source\\UI_Test_Steps.cs",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\tests\\UnitTest1.cs",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\tests\\UnitTest2.cs",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\tests\\UnitTest_Smt_Load.cs",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\tests\\UnitTest_Smt_Login.cs",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\Resources.resx",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\ClickOncePathFindHelper.dll",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\ClickOnceUninstallerHelper.dll",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\DeviceControlHelper.dll",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\DownloadFileHelper.dll",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\TestResults\\UITEST_RESULTS.trx",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\TestResults\\UITEST_RESULTS.xml",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\TestResults\\UI_TP.xml"

0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.cs.roslyn.reportFilePath=C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\bin\\Debug\\netcoreapp3.1\\SMT_CORE_UI_TESTS.dll.RoslynCA.json
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.cs.analyzer.projectOutPath=C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\.sonarqube\\out\\0
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.cs.analyzer.projectOutPaths=\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\.sonarqube\\out\\0",\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\.sonarqube\\out\\1"
0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.cs.roslyn.reportFilePaths=\
"C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\SMT_CORE_UI_TESTS\\bin\\Debug\\netcoreapp3.1\\SMT_CORE_UI_TESTS.dll.RoslynCA.json"

0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C.sonar.working.directory=C:\\Jenkins\\workspace\\SMT_UI\\trunk@3\\.sonarqube\\out\\.sonar\\mod0
sonar.host.url=http://10.10.20.211:9001
sonar.host.login=df638457172afcd05e9fe33bf2f8a29dcce83d79
sonar.branch.target=trunk
sonar.branch.name=trunk
sonar.scm.exclusions.disabled=true
sonar.import_unknown_files=true
sonar.language=cs
sonar.cs.vstest.reportsPaths=**/TestResults/UITEST_RESULTS.trx
sonar.testExecutionReportPaths=C:/Jenkins/workspace/SMT_UI/trunk@3/SMT_CORE_UI_TESTS/TestResults/UI_TP.xml
sonar.visualstudio.enable=false
sonar.modules=0B9495B9-18F6-45A5-B14B-B7AA7CBF0A8C
------------------------------------------------------------------------
Writing processing summary to C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\ProjectInfo.log
Calling the SonarQube Scanner...
Executing file C:\Users\Ralphdegroot\.dotnet\tools\.store\dotnet-sonarscanner\4.8.0\dotnet-sonarscanner\4.8.0\tools\netcoreapp3.0\any\sonar-scanner-4.2.0.1873\bin\sonar-scanner.bat
  Args: -Dsonar.scanAllFiles=true -Dproject.settings=C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\sonar-project.properties --embedded --debug <sensitive data removed>
  Working directory: C:\Jenkins\workspace\SMT_UI\trunk@3
  Timeout (ms):-1
  Process id: 5888
16:57:05.512 INFO: Scanner configuration file: C:\Users\Ralphdegroot\.dotnet\tools\.store\dotnet-sonarscanner\4.8.0\dotnet-sonarscanner\4.8.0\tools\netcoreapp3.0\any\sonar-scanner-4.2.0.1873\bin\..\conf\sonar-scanner.properties
16:57:05.518 INFO: Project root configuration file: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\sonar-project.properties
16:57:05.555 INFO: SonarQube Scanner 4.2.0.1873
16:57:05.555 INFO: Java 12.0.2 Oracle Corporation (64-bit)
16:57:05.556 INFO: Windows Server 2016 10.0 amd64
16:57:05.730 DEBUG: keyStore is : 
16:57:05.731 DEBUG: keyStore type is : pkcs12
16:57:05.731 DEBUG: keyStore provider is : 
16:57:05.731 DEBUG: init keystore
16:57:05.731 DEBUG: init keymanager of type SunX509
16:57:05.929 DEBUG: Create: C:\Windows\system32\config\systemprofile\.sonar\cache
16:57:05.930 INFO: User cache: C:\Windows\system32\config\systemprofile\.sonar\cache
16:57:05.930 DEBUG: Create: C:\Windows\system32\config\systemprofile\.sonar\cache\_tmp
16:57:05.933 DEBUG: Extract sonar-scanner-api-batch in temp...
16:57:05.939 DEBUG: Get bootstrap index...
16:57:05.939 DEBUG: Download: http://10.10.20.211:9001/batch/index
16:57:06.039 DEBUG: Get bootstrap completed
16:57:06.043 DEBUG: Create isolated classloader...
16:57:06.053 DEBUG: Start temp cleaning...
16:57:06.059 DEBUG: Temp cleaning done
16:57:06.060 DEBUG: Execution getVersion
16:57:06.074 INFO: SonarQube server 7.4.0
16:57:06.074 INFO: Default locale: "en_US", source code encoding: "windows-1252" (analysis is platform dependent)
16:57:06.075 DEBUG: Work directory: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\.sonar
16:57:06.077 DEBUG: Execution execute
16:57:06.367 INFO: Publish mode
16:57:06.528 INFO: Load global settings
16:57:06.578 DEBUG: GET 200 http://10.10.20.211:9001/api/settings/values.protobuf | time=40ms
WARNING: WARNING: An illegal reflective access operation has occurred
WARNING: WARNING: Illegal reflective access by com.google.protobuf.UnsafeUtil (file:/C:/Windows/system32/config/systemprofile/.sonar/cache/ca892554e2a573da03bc25145df14ef9/sonar-scanner-engine-shaded-7.4-all.jar) to field java.nio.Buffer.address
WARNING: WARNING: Please consider reporting this to the maintainers of com.google.protobuf.UnsafeUtil
WARNING: WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: WARNING: All illegal access operations will be denied in a future release
16:57:06.606 INFO: Load global settings (done) | time=79ms
16:57:06.614 INFO: Server id: 521BD32D-AW-Kgh8yDYTLVv3zIz8L
16:57:06.625 INFO: User cache: C:\Windows\system32\config\systemprofile\.sonar\cache
16:57:06.865 INFO: Load/download plugins
16:57:06.865 INFO: Load plugins index
16:57:06.875 DEBUG: GET 200 http://10.10.20.211:9001/api/plugins/installed | time=9ms
16:57:06.914 INFO: Load plugins index (done) | time=49ms
16:57:06.972 INFO: Load/download plugins (done) | time=107ms
16:57:07.085 DEBUG: Plugins:
16:57:07.088 DEBUG:   * SonarC# 7.7.0.7192 (csharp)
16:57:07.111 INFO: Loaded core extensions: 
16:57:07.667 INFO: Process project properties
16:57:07.677 DEBUG: Process project properties (done) | time=10ms
16:57:07.731 INFO: Load project branches
16:57:07.742 DEBUG: GET 200 http://10.10.20.211:9001/api/project_branches/list?project=SMT_UI_TESTING | time=9ms
16:57:07.753 INFO: Load project branches (done) | time=22ms
16:57:07.756 INFO: Load project pull requests
16:57:07.765 DEBUG: GET 200 http://10.10.20.211:9001/api/project_pull_requests/list?project=SMT_UI_TESTING | time=8ms
16:57:07.769 INFO: Load project pull requests (done) | time=13ms
16:57:07.770 INFO: Load branch configuration
16:57:07.773 INFO: Load branch configuration (done) | time=3ms
16:57:07.773 INFO: Load project repositories
16:57:07.787 DEBUG: GET 200 http://10.10.20.211:9001/batch/project.protobuf?key=SMT_UI_TESTING&branch=trunk | time=14ms
16:57:07.861 INFO: Load project repositories (done) | time=88ms
16:57:07.950 DEBUG: Available languages:
16:57:07.951 DEBUG:   * C# => "cs"
16:57:07.962 INFO: Load quality profiles
16:57:07.987 DEBUG: GET 200 http://10.10.20.211:9001/api/qualityprofiles/search.protobuf?projectKey=SMT_UI_TESTING | time=24ms
16:57:07.996 INFO: Load quality profiles (done) | time=34ms
16:57:08.041 INFO: Load active rules
16:57:08.058 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgovvDYTLVv3zI1Lv&p=1&ps=500 | time=17ms
16:57:08.114 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-Kgo50DYTLVv3zI1Nm&p=1&ps=500 | time=17ms
16:57:08.134 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-Kgo0HDYTLVv3zI1Mo&p=1&ps=500 | time=16ms
16:57:08.161 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpDGDYTLVv3zI1Tk&p=1&ps=500 | time=23ms
16:57:08.188 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpGkDYTLVv3zI1Vf&p=1&ps=500 | time=16ms
16:57:08.210 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpI9DYTLVv3zI1Wf&p=1&ps=500 | time=17ms
16:57:08.254 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpMeDYTLVv3zI1aX&p=1&ps=500 | time=41ms
16:57:08.339 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpTZDYTLVv3zI1jC&p=1&ps=500 | time=66ms
16:57:08.386 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpZWDYTLVv3zI1pD&p=1&ps=500 | time=21ms
16:57:08.408 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgprSDYTLVv3zI1p0&p=1&ps=500 | time=17ms
16:57:08.440 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-KgpyxDYTLVv3zI1si&p=1&ps=500 | time=32ms
16:57:08.473 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-Kgp15DYTLVv3zI1vC&p=1&ps=500 | time=28ms
16:57:08.498 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/search.protobuf?f=repo,name,severity,lang,internalKey,templateKey,params,actives,createdAt&activation=true&qprofile=AW-Kgp4tDYTLVv3zI1xB&p=1&ps=500 | time=20ms
16:57:08.520 INFO: Load active rules (done) | time=479ms
16:57:08.523 INFO: Load metrics repository
16:57:08.532 DEBUG: GET 200 http://10.10.20.211:9001/api/metrics/search?f=name,description,direction,qualitative,custom&ps=500&p=1 | time=9ms
16:57:08.541 INFO: Load metrics repository (done) | time=18ms
16:57:08.588 INFO: Project key: SMT_UI_TESTING
16:57:08.588 INFO: Project base dir: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS
16:57:08.590 INFO: Branch name: trunk, type: long living
16:57:08.590 DEBUG: Start recursive analysis of project modules
16:57:08.591 INFO: -------------  Scan SMT_CORE_UI_TESTS
16:57:08.754 INFO: Base dir: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS
16:57:08.754 INFO: Working dir: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\.sonar\mod0
16:57:08.757 INFO: Source paths: Resources.Designer.cs, source/UI_Test_Steps.cs, tests/UnitTest1.cs, tests/UnitTest2.cs, tests/UnitTest_Smt_Load.cs, tests/UnitTest_Smt_Login.cs, Resources.resx, ClickOncePathFindHelper.dll, ClickOnceUninstallerHelper.dll, DeviceControlHelper.dll, DownloadFileHelper.dll, TestResults/UITEST_RESULTS.trx, TestResults/UITEST_RESULTS.xml, TestResults/UI_TP.xml
16:57:08.758 INFO: Source encoding: UTF-8, default locale: en_US
16:57:08.763 INFO: Load server rules
16:57:08.841 DEBUG: GET 200 http://10.10.20.211:9001/api/rules/list.protobuf | time=78ms
16:57:08.875 INFO: Load server rules (done) | time=112ms
16:57:09.050 DEBUG: Declared extensions of language C# were converted to sonar.lang.patterns.cs : **/*.cs
16:57:09.052 INFO: Language is forced to cs
16:57:09.065 INFO: Index files
16:57:09.070 INFO: Included sources: 
16:57:09.070 INFO:   **/source/**
16:57:09.070 INFO: Excluded sources: 
16:57:09.070 INFO:   **/tests/**
16:57:09.070 INFO:   **/tests/**
16:57:09.071 INFO: Included tests: 
16:57:09.071 INFO:   **/tests/**
16:57:09.071 INFO: Excluded tests: 
16:57:09.071 INFO:   **/source/**
16:57:09.152 DEBUG: 'source/UI_Test_Steps.cs' generated metadata  with charset 'UTF-8'
16:57:09.171 DEBUG: 'source\UI_Test_Steps.cs' indexed with language 'cs'
16:57:09.171 INFO: 1 file indexed
16:57:09.172 INFO: 13 files ignored because of inclusion/exclusion patterns
16:57:09.172 INFO: Quality profile for cs: Sonar way
16:57:10.503 DEBUG: Sensors : Generic Test Executions Report -> JaCoCo XML Report Importer -> C# Properties -> SonarJavaXmlFileSensor
16:57:10.504 INFO: Sensor Generic Test Executions Report
16:57:10.504 INFO: Parsing C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\TestResults\UI_TP.xml
16:57:10.580 INFO: Imported test execution data for 0 files
16:57:10.580 INFO: Test execution data ignored for 1 unknown files, including:
tests/UnitTest1.cs
16:57:10.580 INFO: Sensor Generic Test Executions Report (done) | time=77ms
16:57:10.580 INFO: Sensor JaCoCo XML Report Importer [jacoco]
16:57:10.584 DEBUG: No reports found
16:57:10.584 INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=4ms
16:57:10.584 INFO: Sensor C# Properties [csharp]
16:57:10.585 DEBUG: Analyzer working directory 'C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\0\output-cs' contains 6 .pb file(s)
16:57:10.586 DEBUG: Analyzer working directory 'C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\1\output-cs' contains 6 .pb file(s)
16:57:10.586 DEBUG: Found Roslyn issues report
16:57:10.587 INFO: Sensor C# Properties [csharp] (done) | time=3ms
16:57:10.587 INFO: Sensor SonarJavaXmlFileSensor [java]
16:57:10.588 INFO: Sensor SonarJavaXmlFileSensor [java] (done) | time=1ms
16:57:10.601 INFO: -------------  Scan SMT_UI_TESTING
16:57:10.620 INFO: Base dir: C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS
16:57:10.620 INFO: Working dir: C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\.sonar
16:57:10.620 INFO: Source encoding: windows-1252, default locale: en_US
16:57:10.637 DEBUG: Declared extensions of language C# were converted to sonar.lang.patterns.cs : **/*.cs
16:57:10.637 DEBUG: Declared extensions of language Visual Basic .NET were converted to sonar.lang.patterns.vbnet : **/*.vb
16:57:10.637 INFO: Language is forced to cs
16:57:10.643 INFO: Index files
16:57:10.644 INFO: Included sources: 
16:57:10.644 INFO:   **/source/**
16:57:10.645 INFO: Excluded sources: 
16:57:10.645 INFO:   **/tests/**
16:57:10.645 INFO:   **/tests/**
16:57:10.645 INFO: Included tests: 
16:57:10.646 INFO:   **/tests/**
16:57:10.646 INFO: Excluded tests: 
16:57:10.646 INFO:   **/source/**
16:57:10.647 INFO: 0 files indexed
16:57:10.647 INFO: 0 files ignored because of inclusion/exclusion patterns
16:57:10.711 DEBUG: Sensors : Generic Test Executions Report -> JaCoCo XML Report Importer -> SonarJavaXmlFileSensor -> C# -> C# Unit Test Results Import -> Zero Coverage Sensor
16:57:10.711 INFO: Sensor Generic Test Executions Report
16:57:10.711 INFO: Parsing C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\TestResults\UI_TP.xml
16:57:10.713 INFO: Imported test execution data for 0 files
16:57:10.713 INFO: Test execution data ignored for 1 unknown files, including:
tests/UnitTest1.cs
16:57:10.713 INFO: Sensor Generic Test Executions Report (done) | time=2ms
16:57:10.713 INFO: Sensor JaCoCo XML Report Importer [jacoco]
16:57:10.713 DEBUG: No reports found
16:57:10.714 INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=0ms
16:57:10.714 INFO: Sensor SonarJavaXmlFileSensor [java]
16:57:10.714 INFO: Sensor SonarJavaXmlFileSensor [java] (done) | time=0ms
16:57:10.714 INFO: Sensor C# [csharp]
16:57:10.727 INFO: Importing results from 6 proto files in 'C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\0\output-cs'
16:57:10.758 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.759 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.760 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.761 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.786 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.788 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.789 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.790 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.801 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.802 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.802 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.802 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.832 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.834 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.835 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.836 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.836 INFO: Importing results from 6 proto files in 'C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\1\output-cs'
16:57:10.838 DEBUG: File 'source/UI_Test_Steps.cs' was already processed. Skip it
16:57:10.838 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.839 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.839 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.839 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'MetricsInfo' does not exist in the analysis context
16:57:10.850 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.851 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.852 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.852 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'TokenTypeInfo' does not exist in the analysis context
16:57:10.855 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.856 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.856 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.856 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'SymbolReferenceInfo' does not exist in the analysis context
16:57:10.866 DEBUG: File 'source/UI_Test_Steps.cs' was already processed. Skip it
16:57:10.867 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest1.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.869 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest2.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.872 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Load.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.875 WARN: File 'C:\Jenkins\workspace\SMT_UI\trunk@3\SMT_CORE_UI_TESTS\tests\UnitTest_Smt_Login.cs' referenced by the protobuf 'CopyPasteTokenInfo' does not exist in the analysis context
16:57:10.923 INFO: Importing 1 Roslyn report
16:57:11.097 INFO: Sensor C# [csharp] (done) | time=383ms
16:57:11.097 INFO: Sensor C# Unit Test Results Import [csharp]
16:57:11.135 INFO: Parsing the Visual Studio Test Results file C:\Jenkins\workspace\SMT_UI\trunk@3\.\SMT_CORE_UI_TESTS\TestResults\UITEST_RESULTS.trx
16:57:11.161 INFO: Sensor C# Unit Test Results Import [csharp] (done) | time=64ms
16:57:11.162 INFO: Sensor Zero Coverage Sensor
16:57:11.178 INFO: Sensor Zero Coverage Sensor (done) | time=16ms
16:57:11.181 INFO: Calculating CPD for 1 file
16:57:11.183 DEBUG: Detection of duplications for C:/Jenkins/workspace/SMT_UI/trunk@3/SMT_CORE_UI_TESTS/source/UI_Test_Steps.cs
16:57:11.210 INFO: CPD calculation finished
16:57:11.222 DEBUG: Getting relative path from SCM root is not supported by svn provider
16:57:11.223 DEBUG: Getting revision id is not supported by svn provider
16:57:11.418 INFO: Analysis report generated in 204ms, dir size=63 KB
16:57:11.453 INFO: Analysis reports compressed in 34ms, zip size=18 KB
16:57:11.453 INFO: Analysis report generated in C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\.sonar\scanner-report
16:57:11.453 DEBUG: Upload report
16:57:11.489 DEBUG: POST 200 http://10.10.20.211:9001/api/ce/submit?projectKey=SMT_UI_TESTING&characteristic=branch%3Dtrunk&characteristic=branchType%3DLONG | time=34ms
16:57:11.492 INFO: Analysis report uploaded in 39ms
16:57:11.494 INFO: ANALYSIS SUCCESSFUL, you can browse http://10.10.20.211:9001/dashboard?id=SMT_UI_TESTING&branch=trunk
16:57:11.494 INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
16:57:11.494 INFO: More about the report processing at http://10.10.20.211:9001/api/ce/task?id=AW-LBh25DYTLVv3zI11W
16:57:11.502 DEBUG: Report metadata written to C:\Jenkins\workspace\SMT_UI\trunk@3\.sonarqube\out\.sonar\report-task.txt
16:57:11.505 DEBUG: Post-jobs : 
16:57:11.511 INFO: Task total time: 4.399 s
16:57:11.671 INFO: ------------------------------------------------------------------------
16:57:11.671 INFO: EXECUTION SUCCESS
16:57:11.672 INFO: ------------------------------------------------------------------------
16:57:11.672 INFO: Total time: 6.187s
16:57:11.743 INFO: Final Memory: 7M/30M
16:57:11.743 INFO: ------------------------------------------------------------------------
Process returned exit code 0
The SonarQube Scanner has finished
16:57:11.834  Post-processing succeeded.