Smart powershell script for VisualStudio to generate code coverage report using OpenCore and ReportGenerator (and optionally publish them with Coveralls ). Configured with project files path globing (e.g *.Test.csproj).
Works with Classic and Core frameworks (MSTest, NUnit and xUnit Test projects). Windows only (not Linux).
HOW TO START
-
Install OpenCover and ReportGenerator as NUGET packages to one of your test projects (we need them to appear in 'packages' folder).
-
Put script to the solution's root folder.
-
Configure those variables at the start
$TestProjectsGlobbing = @(,'*.Test.csproj')
$mstestPath = 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\MSTest.exe'
$dotnetPath = 'C:\Program Files\dotnet\dotnet.exe'
$netcoreapp = 'netcoreapp2.0' # used in [dotnet test -f $netcoreapp] command and therefore as output folder name
$NamespaceInclusiveFilters = @(,'*') # inlude all namespaces (which pdb found)
- Run as PS script. You should find the report in the TestsResults\report\index.html
There are some hidden assumptions about VS test projects:
a) you can catch them and only them just using path globing, e.g. with pattern '*.Test.csproj'
(but you can use several patterns)
b) test projects are already COMPILED and theirs binaries are in project's output folder.
c) all xUnit projects from your solution use the same core framework (configured with $netcoreapp
default 'netcoreapp2.0') and output folders are configured with the same path:
$classicProjectOutput = "bin\Debug"
$coreProjectOutput = "bin\Debug\$netcoreapp"
d) to have a nice report we should exclude test's code from the report - to build an exclusive filter; so test's code (unit test classes) should use specific namespace (e.g. MyApp.Test
) - the script will try to 'guess' them. If you want to escape building exclusive filters then set $BuildNamespaceExclusiveFilters = $false
(also do it for the script's debugging). There is how the script guess the namespaces to be excluded: for NUnit tests, this script collect namespaces of types that belongs to test assembly using reflections when for Core projects exclusive filter will be setuped with xUnit project's "Defaut Namespace" (it is impossible to reflect .NET Core assemblies in powershell).
e) you should configure ALL of your Core projects to use full PDB format (Project Propertes>Build>Advanced) instead of default portable. Opencover doesn't understand portable PDB.
KNOWN PROBLEMS
MSTest attribute Microsoft.VisualStudio.TestTools.UnitTesting.DeploymentItemAttribute
doesn't work properly. In scenarios like
[TestClass]
public class StandardConfigurationUnitTest
{
[TestMethod]
[DeploymentItem("appsettings.json")]
public void JsonConfigurationTest(){
// ...
}
}
this will not move appsettings.json
to the MSTest.exe
execution folder, therefore appsettings.json
will be unaccessible for test code.
Note: In case of /nointegration
option MSTest.exe working folder is the MSTest.exe location (like C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\
); otherwise the working folder is MSTest.exe output folder e.g. $SolutionFolder\TestResults\mstest\roman_DESKTOP-RLA3VAF 2017-04-04 04_22_07
but in any case those folders will not contain appsettings.json
file so it can't be found. Changing OpenCover's working folder doesn't impact on MSTest working folder.
Workouround: recreate config files from resources in the unit test constructor (that what I'm using).
[TestClass]
public class StandardConfigurationUnitTest
{
public StandardConfigurationUnitTest()
{
string fileName = "appsettings.json";
using (var reader = new StreamReader(Assembly.GetExecutingAssembly()
.GetManifestResourceStream(this.GetType().Namespace+"."+fileName)))
using (var fileStream = new FileStream(fileName, FileMode.Create))
reader.BaseStream.CopyTo(fileStream);
}
}
Other possible solution is to generate .testsettings file with "DeploymentItem" move action and point it as mstest configuration parameter (never tried).
<?xml version="1.0" encoding="UTF-8"?>
<TestSettings name="TestSettings1" id="1feaf251-3827-4529-8111-02e4aab1e4aa" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
<Description>These are default test settings for a local test run.</Description>
<Deployment>
<DeploymentItem filename="Tests\Routines.Configuration.NETStandard.Test\bin\Debug\appsettings.json" />
</Deployment>
<Execution>
<TestTypeSpecific>
<UnitTestRunConfig testTypeId="13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b">
<AssemblyResolution>
<TestDirectory useLoadContext="true" />
</AssemblyResolution>
</UnitTestRunConfig>
</TestTypeSpecific>
<AgentRule name="LocalMachineDefaultRole"></AgentRule>
</Execution>
<Properties />
</TestSettings>