forked from NuGet/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runTests.ps1
153 lines (116 loc) · 3.72 KB
/
runTests.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<#
.SYNOPSIS
Build and run unit-tests and functional tests.
.PARAMETER Configuration
Build configuration (debug by default)
.PARAMETER ReleaseLabel
Release label to use for package and assemblies versioning (zlocal by default)
.PARAMETER BuildNumber
Build number to use for package and assemblies versioning (auto-generated if not provided)
.PARAMETER SkipCore
Skips running NuGet.Core.Tests and NuGet.Core.FuncTests
.PARAMETER SkipVS14
Skips running NuGet.Clients.Tests and NuGet.Clients.FuncTests with VS14 toolset
.PARAMETER SkipVS15
Skips running NuGet.Clients.Tests and NuGet.Clients.FuncTests with VS15 toolset
.PARAMETER CI
Indicates the build script is invoked from CI
.NOTES
Some of the functional tests including NuGet server ecosystem will fail outside of Microsoft corpnet.
.EXAMPLE
.\runTests.ps1 -Verbose
Running full test suite
.EXAMPLE
.\runTests.ps1 -sut
Running functional tests only
.EXAMPLE
.\runTests.ps1 -sft -s14 -s15
Running core unit tests only
#>
[CmdletBinding()]
param (
[ValidateSet('debug', 'release')]
[Alias('c')]
[string]$Configuration,
[ValidatePattern('^(beta|final|preview|rc|release|rtm|xprivate|zlocal)([0-9]*)$')]
[Alias('l')]
[string]$ReleaseLabel = 'zlocal',
[Alias('n')]
[int]$BuildNumber,
[Alias('sb')]
[switch]$SkipBuild,
[Alias('sc')]
[switch]$SkipCore,
[Alias('s14')]
[switch]$SkipVS14,
[Alias('s15')]
[switch]$SkipVS15,
[switch]$CI
)
. "$PSScriptRoot\build\common.ps1"
if (-not $Configuration) {
$Configuration = switch ($CI.IsPresent) {
$True { 'Release' } # CI build is Release by default
$False { 'Debug' } # Local builds are Debug by default
}
}
Write-Host ("`r`n" * 3)
Trace-Log ('=' * 60)
$startTime = [DateTime]::UtcNow
if (-not $BuildNumber) {
$BuildNumber = Get-BuildNumber
}
Invoke-BuildStep 'Installing .NET CLI for tests' {
Install-DotnetCLI -Force:$Force
} -ev +BuildErrors
Trace-Log "Test suite run #$BuildNumber started at $startTime"
Test-BuildEnvironment -CI:$CI
# Adjust version skipping if only one version installed - if VS15 is not installed, no need to specify SkipVS15
if (-not $SkipVS14 -and -not $VS14Installed) {
Warning-Log "VS14 build is requested but it appears not to be installed."
$SkipVS14 = $True
}
if (-not $SkipVS15 -and -not $VS15Installed) {
Warning-Log "VS15 build is requested but it appears not to be installed."
$SkipVS15 = $True
}
$BuildErrors = @()
Invoke-BuildStep 'Cleaning package cache' {
Clear-PackageCache
} `
-skip:(-not $CI) `
-ev +BuildErrors
Invoke-BuildStep 'Running /t:RestoreVS15' {
& $MSBuildExe build\build.proj /t:RestoreVS15 /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /v:m /m:1
if (-not $?)
{
Write-Error "Restore failed!"
exit 1
}
} `
-ev +BuildErrors
Invoke-BuildStep 'Running /t:CoreFuncTests' {
& $MSBuildExe build\build.proj /t:CoreFuncTests /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /v:m /m:1
if (-not $?)
{
Write-Error "CoreFuncTests failed!"
exit 1
}
} `
-ev +BuildErrors
Invoke-BuildStep 'Cleaning package cache' {
Clear-PackageCache
} `
-skip:(-not $CI) `
-ev +BuildErrors
Trace-Log ('-' * 60)
## Calculating Build time
$endTime = [DateTime]::UtcNow
Trace-Log "Test suite run has completed at $endTime"
Trace-Log "Time elapsed $(Format-ElapsedTime ($endTime - $startTime))"
Trace-Log ('=' * 60)
if ($BuildErrors) {
$ErrorLines = $BuildErrors | %{ ">>> $($_.Exception.Message)" }
Write-Error "Build's completed with $($BuildErrors.Count) error(s):`r`n$($ErrorLines -join "`r`n")" -ErrorAction Stop
}
Write-Host ("`r`n" * 3)