9
9
[switch ]$testnobuild ,
10
10
[ValidateSet (" x86" , " x64" , " arm" , " arm64" )][string []][Alias (' a' )]$arch = @ ([System.Runtime.InteropServices.RuntimeInformation ]::ProcessArchitecture.ToString().ToLowerInvariant()),
11
11
12
+ # Run tests with code coverage
13
+ [Parameter (ParameterSetName = ' CommandLine' )]
14
+ [switch ] $testCoverage ,
15
+
12
16
[Parameter (ValueFromRemainingArguments = $true )][String []]$properties
13
17
)
14
18
@@ -39,6 +43,7 @@ function Get-Help() {
39
43
Write-Host " -sign Sign build outputs."
40
44
Write-Host " -test (-t) Incrementally builds and runs tests."
41
45
Write-Host " Use in conjunction with -testnobuild to only run tests."
46
+ Write-Host " -testCoverage Run unit tests and capture code coverage information."
42
47
Write-Host " "
43
48
44
49
Write-Host " Libraries settings:"
@@ -77,7 +82,7 @@ if ($vs) {
77
82
}
78
83
79
84
# Check if an action is passed in
80
- $actions = " b" , " build" , " r" , " restore" , " rebuild" , " sign" , " testnobuild" , " publish" , " clean" , " t " , " test "
85
+ $actions = " b" , " build" , " r" , " restore" , " rebuild" , " sign" , " testnobuild" , " publish" , " clean"
81
86
$actionPassedIn = @ (Compare-Object - ReferenceObject @ ($PSBoundParameters.Keys ) - DifferenceObject $actions - ExcludeDifferent - IncludeEqual).Length -ne 0
82
87
if ($null -ne $properties -and $actionPassedIn -ne $true ) {
83
88
$actionPassedIn = @ (Compare-Object - ReferenceObject $properties - DifferenceObject $actions.ForEach ({ " -" + $_ }) - ExcludeDifferent - IncludeEqual).Length -ne 0
@@ -91,6 +96,7 @@ foreach ($argument in $PSBoundParameters.Keys)
91
96
{
92
97
switch ($argument )
93
98
{
99
+ " testCoverage" { <# this argument is handled in this script only #> }
94
100
" os" { $arguments += " /p:TargetOS=$ ( $PSBoundParameters [$argument ]) " }
95
101
" properties" { $arguments += " " + $properties }
96
102
" verbosity" { $arguments += " -$argument " + $ ($PSBoundParameters [$argument ]) }
@@ -106,3 +112,35 @@ if ($env:TreatWarningsAsErrors -eq 'false') {
106
112
107
113
Write-Host " & `" $PSScriptRoot /common/build.ps1`" $arguments "
108
114
Invoke-Expression " & `" $PSScriptRoot /common/build.ps1`" $arguments "
115
+
116
+
117
+ # Perform code coverage as the last operation, this enables the following scenarios:
118
+ # .\build.cmd -restore -build -c Release -testCoverage
119
+ if ($testCoverage ) {
120
+ try {
121
+ # Install required toolset
122
+ . $PSScriptRoot / common/ tools.ps1
123
+ InitializeDotNetCli - install $true | Out-Null
124
+
125
+ Push-Location $PSScriptRoot / ../
126
+
127
+ $testResultPath = " ./artifacts/TestResults/$configuration " ;
128
+
129
+ # Run tests and collect code coverage
130
+ ./ .dotnet/ dotnet dotnet- coverage collect -- settings ./ eng/ CodeCoverage.config -- output $testResultPath / local.cobertura.xml " build.cmd -test -configuration $configuration "
131
+
132
+ # Generate the code coverage report and open it in the browser
133
+ ./ .dotnet/ dotnet reportgenerator - reports:$testResultPath /* .cobertura.xml - targetdir:$testResultPath / CoverageResultsHtml - reporttypes:HtmlInline_AzurePipelines
134
+ Start-Process $testResultPath / CoverageResultsHtml/ index.html
135
+ }
136
+ catch {
137
+ Write-Host $_.Exception.Message - Foreground " Red"
138
+ Write-Host $_.ScriptStackTrace - Foreground " DarkGray"
139
+ exit $global :LASTEXITCODE ;
140
+ }
141
+ finally {
142
+ Pop-Location
143
+ }
144
+ }
145
+
146
+ exit 0
0 commit comments