-
Notifications
You must be signed in to change notification settings - Fork 644
/
test.ps1
115 lines (94 loc) · 3.78 KB
/
test.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
[CmdletBinding(DefaultParameterSetName = 'RegularBuild')]
param (
[ValidateSet("debug", "release")]
[string]$Configuration = 'debug',
[int]$BuildNumber,
[switch]$SkipCommon,
[switch]$SkipGallery,
[switch]$SkipJobs
)
trap {
Write-Host "BUILD FAILED: $_" -ForegroundColor Red
Write-Host "ERROR DETAILS:" -ForegroundColor Red
Write-Host $_.Exception -ForegroundColor Red
Write-Host ("`r`n" * 3)
exit 1
}
. "$PSScriptRoot\build\common.ps1"
Write-Host ("`r`n" * 3)
Trace-Log ('=' * 60)
$startTime = [DateTime]::UtcNow
if (-not $BuildNumber) {
$BuildNumber = Get-BuildNumber
}
Trace-Log "Build #$BuildNumber started at $startTime"
$TestErrors = @()
$CommonSolution = Join-Path $PSScriptRoot "NuGet.Server.Common.sln"
$CommonProjects = Get-SolutionProjects $CommonSolution
$GallerySolution = Join-Path $PSScriptRoot "NuGetGallery.sln"
$GalleryProjects = Get-SolutionProjects $GallerySolution
$JobsSolution = Join-Path $PSScriptRoot "NuGet.Jobs.sln"
$JobsProjects = Get-SolutionProjects $JobsSolution
Invoke-BuildStep 'Cleaning test results' { Clear-Tests } `
-ev +TestErrors
Invoke-BuildStep 'Running common tests' {
$CommonTestProjects = $CommonProjects | Where-Object { $_.IsTest }
$TestCount = 0
$CommonTestProjects | ForEach-Object {
$TestResultFile = Join-Path $PSScriptRoot "Results.Common.$TestCount.xml"
Trace-Log "Testing $($_.Path)"
dotnet test $_.Path --no-restore --no-build --configuration $Configuration "-l:trx;LogFileName=$TestResultFile"
if (-not (Test-Path $TestResultFile)) {
Write-Error "The test run failed to produce a result file";
exit 1;
}
$TestCount++
}
} `
-skip:$SkipCommon `
-ev +TestErrors
Invoke-BuildStep 'Running gallery tests' {
$GalleryTestProjects = $GalleryProjects | Where-Object { $_.IsTest }
$TestCount = 0
$GalleryTestProjects | ForEach-Object {
$TestResultFile = Join-Path $PSScriptRoot "Results.Gallery.$TestCount.xml"
Trace-Log "Testing $($_.Path)"
dotnet test $_.Path --no-restore --no-build --configuration $Configuration "-l:trx;LogFileName=$TestResultFile"
if (-not (Test-Path $TestResultFile)) {
Write-Error "The test run failed to produce a result file";
exit 1;
}
$TestCount++
}
Write-Host "Ensuring the EntityFramework version can be discovered."
. (Join-Path $PSScriptRoot "tools\Update-Databases.ps1") -MigrationTargets @("FakeMigrationTarget")
} `
-skip:$SkipGallery `
-ev +TestErrors
Invoke-BuildStep 'Running jobs tests' {
$JobsTestProjects = $JobsProjects | Where-Object { $_.IsTest }
$TestCount = 0
$JobsTestProjects | ForEach-Object {
$TestResultFile = Join-Path $PSScriptRoot "Results.Jobs.$TestCount.xml"
Trace-Log "Testing $($_.Path)"
dotnet test $_.Path --no-restore --no-build --configuration $Configuration "-l:trx;LogFileName=$TestResultFile"
if (-not (Test-Path $TestResultFile)) {
Write-Error "The test run failed to produce a result file";
exit 1;
}
$TestCount++
}
} `
-skip:$SkipJobs `
-ev +TestErrors
Trace-Log ('-' * 60)
## Calculating Build time
$endTime = [DateTime]::UtcNow
Trace-Log "Build #$BuildNumber ended at $endTime"
Trace-Log "Time elapsed $(Format-ElapsedTime ($endTime - $startTime))"
Trace-Log ('=' * 60)
if ($TestErrors) {
$ErrorLines = $TestErrors | ForEach-Object { ">>> $($_.Exception.Message)" }
Error-Log "Tests completed with $($TestErrors.Count) error(s):`r`n$($ErrorLines -join "`r`n")" -Fatal
}
Write-Host ("`r`n" * 3)