Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TeamCity dotCover report path for Sonar

I'm trying to integrate the sonar analysis into by TeamCity build process. I have a NUnit build step which runs my unit tests and then runs dotCover for the coverage.

My next step is the sonar-runner. The configuration that currently exists is; gallio.mode=dotCover, sonar.gallio.mode=reuseReport but I also need sonar.gallio.reports.path.

Does anybody know the path to the dotCover report generated in the the previous step?

like image 893
Dipesh Avatar asked Nov 01 '12 04:11

Dipesh


4 Answers

Spent some amount of time on the same issue, but with newer Sonar c# plugin (v.2.3) - Gallio support has been dropped, but the report is still required.

To answer the question directly, TeamCity puts dotcover snapshot file into a temp folder with a name like coverage_dotcover27574681205420364801.data (where digits are random). So

The procedure is:

  1. Create a PowerShell Build step in Team City after the step with test and coverage
    • you may use Command line if you prefer
  2. Get the full dotCover snapshot name in temp folder
  3. Run dotCover to produce a HTML report from a snapshot
    • Note - Sonar (c# plugin v 2.3) supports only dotCover HTML reports
  4. Pass the produced HTML report to sonar

PowerShell script:

$snapshot = Get-ChildItem "%system.teamcity.build.tempDir%" `
     -Filter coverage_dotcover*.data `
     | select -ExpandProperty FullName -First 1

%teamcity.dotCover.home%\dotCover.exe report `
    /ReportType=HTML /Source="$snapshot" `
    /Output="%sonar.coverageReport%"

Now you can specify your report in sonnar runner as sonar.cs.dotcover.reportsPaths='%sonar.coverageReport%'

Where %sonar.coverageReport% is a defined property in a TeamCity

like image 80
Oleksandr Avatar answered Nov 14 '22 03:11

Oleksandr


It seems TeamCity 2017 no longer creates coverage_dotcover*.data files. Instead it creates *.dcvr files.

There are potentially multiple files which need to be merged before you can create the report. As a result the powershell need updating.

So using the steps provided by Oleksandr, just update the script to be:

$snapshotfiles = Get-ChildItem "%system.teamcity.build.tempDir%" `
 -recurse -Filter *.dcvr `
 | select -ExpandProperty Name

$snapshots = $snapshotfiles -join ";"

%teamcity.dotCover.home%\dotCover.exe merge /Source=$snapshots 
/Output=dotcovermerge.dcvr

%teamcity.dotCover.home%\dotCover.exe report `
/ReportType=HTML /Source=dotcovermerge.dcvr `
/Output="%sonar.coverageReport%"

Then the property %sonar.coverageReport% can be passed to the sonarqube scanner. Btw, you need to create a parameter in TC for %sonar.coverageReport% e.g. "sonarcoverage.html"

like image 31
andyvan Avatar answered Nov 14 '22 02:11

andyvan


I couldn't find a way to do this using the built in NUnit runner. I managed to get it working by using a powershell build step to manually call the required commands.

First step is to run the NUnit tests via Gallio within a dotCover cover call:

& dotCover cover `
/TargetExecutable="C:\Program Files\Gallio\bin\Gallio.Echo.exe" `
/TargetArguments="/report-type:XML /report-name-format:test-report /runner:IsolatedProcess /report-directory:.\Gallio .\Path\Test.dll" `
/Filters="+:WhatToCover" `
/Output=coverage.snapshot

The Gallio test report is then available to be picked up by Sonar with reuseReport, TeamCity automatically detects the test results.

You can make TeamCity directly process the coverage snapshot by writing a service message to standard output:

Write-Host "##teamcity[importData type='dotNetCoverage' tool='dotcover' path='coverage.snapshot']"

To get the coverage info into a format usable by Sonar you need to use the dotCover report command and the undocumented report type TeamCityXML:

& dotCover report /Source=coverage.snapshot /Output=coverage-report.xml /ReportType=TeamCityXML
like image 4
Jeff Johnston Avatar answered Nov 14 '22 01:11

Jeff Johnston


We are using SonarScanner for MSBuild and needed to add the team city temporary build path to the begin step.

  1. Run the SonarScanner.MSBuild.exe begin command, specifying the temp build directory to be where the reports will be available using
   /d:sonar.cs.dotcover.reportsPaths="%system.teamcity.build.tempDir%".
  1. Build your project using MSBuild

  2. Run your test tool, instructing it to produce a report at the same location specified earlier to the MSBuild SonarQube Runner

  3. Run the SonarScanner.MSBuild.exe end command

like image 2
Doff3n Avatar answered Nov 14 '22 02:11

Doff3n