-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtest.ps1
More file actions
618 lines (522 loc) · 22.2 KB
/
test.ps1
File metadata and controls
618 lines (522 loc) · 22.2 KB
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
<#
.SYNOPSIS
Runs tests for the FieldWorks repository.
.DESCRIPTION
This script orchestrates test execution for FieldWorks. It handles:
1. Initializing the Visual Studio Developer Environment (if needed).
2. Running tests via VSTest.console.exe.
.PARAMETER Configuration
The build configuration to test (Debug or Release). Default is Debug.
.PARAMETER TestFilter
VSTest filter expression (e.g., "TestCategory!=Slow" or "FullyQualifiedName~FwUtils").
.PARAMETER TestProject
Path to a specific test project or DLL to run. If not specified, runs all tests.
.PARAMETER NoBuild
Skip building before running tests. Tests will use existing binaries.
.PARAMETER ListTests
List available tests without running them.
.PARAMETER Verbosity
Test output verbosity: q[uiet], m[inimal], n[ormal], d[etailed].
Default is 'normal'.
.PARAMETER SkipNative
Skip running native C++ tests. Run only managed tests.
.PARAMETER SkipManaged
Run only native C++ tests, skipping managed tests.
.PARAMETER StartedBy
Optional actor label written to worktree lock metadata (for example: user or agent).
Defaults to FW_BUILD_STARTED_BY if set; otherwise 'unknown'.
.PARAMETER SkipWorktreeLock
Internal switch used when test.ps1 is invoked from build.ps1 -RunTests.
Skips acquiring/releasing the same-worktree lock because the parent build already owns it.
.EXAMPLE
.\test.ps1
Runs all tests in Debug configuration (builds first if needed).
.EXAMPLE
.\test.ps1 -TestFilter "TestCategory!=Slow"
Runs all tests except those marked as Slow.
.EXAMPLE
.\test.ps1 -TestProject "Src/Common/FwUtils/FwUtilsTests"
Runs tests from the FwUtilsTests project only.
.EXAMPLE
.\test.ps1 -NoBuild -Verbosity detailed
Runs tests without building first, with detailed output.
.NOTES
FieldWorks is x64-only. Tests run in 64-bit mode.
#>
[CmdletBinding()]
param(
[string]$Configuration = "Debug",
[string]$TestFilter = "",
[string]$TestProject = "",
[switch]$NoBuild,
[switch]$ListTests,
[ValidateSet('quiet', 'minimal', 'normal', 'detailed', 'q', 'm', 'n', 'd')]
[string]$Verbosity = "normal",
[switch]$SkipNative,
[switch]$SkipManaged,
[switch]$SkipDependencyCheck,
[switch]$SkipWorktreeLock,
[ValidateSet('user', 'agent', 'unknown')]
[string]$StartedBy = 'unknown'
)
$ErrorActionPreference = 'Stop'
if (-not $PSBoundParameters.ContainsKey('StartedBy') -and -not [string]::IsNullOrWhiteSpace($env:FW_BUILD_STARTED_BY)) {
$startedByFromEnv = $env:FW_BUILD_STARTED_BY.ToLowerInvariant()
if ($startedByFromEnv -in @('user', 'agent', 'unknown')) {
$StartedBy = $startedByFromEnv
}
}
# =============================================================================
# Import Shared Module
# =============================================================================
$helpersPath = Join-Path $PSScriptRoot "Build/Agent/FwBuildHelpers.psm1"
if (-not (Test-Path $helpersPath)) {
Write-Host "[ERROR] FwBuildHelpers.psm1 not found at $helpersPath" -ForegroundColor Red
exit 1
}
Import-Module $helpersPath -Force
# =============================================================================
# Environment Setup
# =============================================================================
$worktreeLock = $null
$cleanupArgs = @{
IncludeOmniSharp = $true
RepoRoot = $PSScriptRoot
}
$testExitCode = 0
try {
if (-not $SkipWorktreeLock) {
$worktreeLock = Enter-WorktreeLock -RepoRoot $PSScriptRoot -Context "FieldWorks test run" -StartedBy $StartedBy
}
# Worktree-aware cleanup: only stop conflicting processes related to this repo root.
Stop-ConflictingProcesses -IncludeOmniSharp -RepoRoot $PSScriptRoot
Invoke-WithFileLockRetry -Context "FieldWorks test run" -IncludeOmniSharp -RepoRoot $PSScriptRoot -Action {
# Initialize VS environment
Initialize-VsDevEnvironment
Test-CvtresCompatibility
if (-not $SkipDependencyCheck) {
$verifyScript = Join-Path $PSScriptRoot "Build/Agent/Verify-FwDependencies.ps1"
if (Test-Path $verifyScript) {
Write-Host "Running dependency preflight..." -ForegroundColor Cyan
& $verifyScript -FailOnMissing
if ($LASTEXITCODE -ne 0) {
throw "Dependency preflight failed. Re-run with -SkipDependencyCheck only if you are actively debugging environment setup."
}
}
}
# Set architecture (x64-only)
$env:arch = 'x64'
# Stop conflicting processes
Stop-ConflictingProcesses @cleanupArgs
# Clean stale obj folders (only if not building, as build.ps1 does it too)
if ($NoBuild) {
Remove-StaleObjFolders -RepoRoot $PSScriptRoot
}
# =============================================================================
# Native Tests Dispatch
# =============================================================================
$script:nativeErrorMessages = @()
if (-not $SkipNative) {
$cppScript = Join-Path $PSScriptRoot "Build/scripts/Invoke-CppTest.ps1"
if (-not (Test-Path $cppScript)) {
Write-Host "[ERROR] Native test script not found at $cppScript" -ForegroundColor Red
$script:testExitCode = 1
return
}
$action = if ($NoBuild) { 'Run' } else { 'BuildAndRun' }
# Map TestProject to Invoke-CppTest expectations
$projectsToRun = @()
if ($TestProject) {
if ($TestProject -match 'TestViews') { $projectsToRun += 'TestViews' }
elseif ($TestProject -match 'TestGeneric') { $projectsToRun += 'TestGeneric' }
else {
Write-Host "[WARN] Unknown native project '$TestProject'. Defaulting to TestGeneric." -ForegroundColor Yellow
$projectsToRun += 'TestGeneric'
}
}
else {
$projectsToRun += 'TestGeneric', 'TestViews'
}
$overallExitCode = 0
foreach ($proj in $projectsToRun) {
Write-Host "Dispatching $proj to Invoke-CppTest.ps1..." -ForegroundColor Cyan
& $cppScript -Action $action -TestProject $proj -Configuration $Configuration
if ($LASTEXITCODE -ne 0) {
$overallExitCode = $LASTEXITCODE
$message = "$proj failed with exit code $LASTEXITCODE"
$script:nativeErrorMessages += $message
Write-Host "[ERROR] $message" -ForegroundColor Red
}
}
$script:testExitCode = $overallExitCode
if ($SkipManaged) {
return
}
} elseif ($SkipManaged) {
Write-Host "[EXCLAMATION] Are you sure you don't want to run any tests?'" -ForegroundColor Red
exit 1
}
# =============================================================================
# Build (unless -NoBuild)
# =============================================================================
if (-not $NoBuild) {
$normalizedTestProjectForBuild = $TestProject.Replace('\\', '/').TrimEnd('/')
if ($TestProject -and ($normalizedTestProjectForBuild -match '^Build/Src/FwBuildTasks($|/)' -or $normalizedTestProjectForBuild -match '/FwBuildTasksTests$' -or $normalizedTestProjectForBuild -match '^FwBuildTasksTests$')) {
Write-Host "Building FwBuildTasks before running tests..." -ForegroundColor Cyan
$fwBuildTasksOutputDir = Join-Path $PSScriptRoot "BuildTools/FwBuildTasks/$Configuration/"
$fwBuildTasksIntermediateDir = Join-Path $PSScriptRoot "Obj/Build/Src/FwBuildTasks/$Configuration/"
$fwBuildTasksIntermediateDirX64 = Join-Path $PSScriptRoot "Obj/Build/Src/FwBuildTasks/x64/$Configuration/"
foreach ($dirToClean in @($fwBuildTasksIntermediateDir, $fwBuildTasksIntermediateDirX64, $fwBuildTasksOutputDir)) {
if (Test-Path $dirToClean) {
try {
Remove-Item -LiteralPath $dirToClean -Recurse -Force -ErrorAction Stop
}
catch {
Write-Host "[ERROR] Failed to clean $dirToClean before rebuilding FwBuildTasks." -ForegroundColor Red
throw
}
}
}
New-Item -Path $fwBuildTasksOutputDir -ItemType Directory -Force | Out-Null
Invoke-MSBuild `
-Arguments @(
'Build/Src/FwBuildTasks/FwBuildTasks.csproj',
'/t:Restore;Clean;Build',
"/p:Configuration=$Configuration",
'/p:Platform=AnyCPU',
"/p:FwBuildTasksOutputPath=$fwBuildTasksOutputDir",
'/p:SkipFwBuildTasksAssemblyCheck=true',
'/p:SkipFwBuildTasksUsingTask=true',
'/p:SkipGenerateFwTargets=true',
'/p:SkipSetupTargets=true',
'/nr:false',
'/v:minimal',
'/nologo'
) `
-Description 'FwBuildTasks (Tests)'
Write-Host ""
}
else {
Write-Host "Building before running tests..." -ForegroundColor Cyan
# This nested call runs while test.ps1 already owns the same-worktree lock.
# Pass -SkipWorktreeLock explicitly so the build path does not depend on the
# current '&' invocation sharing the same thread and Windows mutex recursion.
& "$PSScriptRoot\build.ps1" -Configuration $Configuration -BuildTests -SkipWorktreeLock
if ($LASTEXITCODE -ne 0) {
Write-Host "[ERROR] Build failed. Fix build errors before running tests." -ForegroundColor Red
$script:testExitCode = $LASTEXITCODE
return
}
Write-Host ""
}
}
# =============================================================================
# Find Test Assemblies
# =============================================================================
# =============================================================================
# Prevent modal dialogs during tests
# =============================================================================
# FieldWorks native + managed assertion infrastructure may show modal UI unless
# explicitly disabled. Ensure the test host inherits these settings even when
# invoked outside the .runsettings flow.
$env:AssertUiEnabled = 'false'
$env:AssertExceptionEnabled = 'true'
$outputDir = Join-Path $PSScriptRoot "Output/$Configuration"
if ($TestProject) {
$normalizedTestProject = $TestProject.Replace('\\', '/').TrimEnd('/')
# Specific project/DLL requested
if ($normalizedTestProject -match '^Build/Src/FwBuildTasks($|/)' -or $normalizedTestProject -match '/FwBuildTasksTests$' -or $normalizedTestProject -match '^FwBuildTasksTests$') {
# Build tasks tests live in the FwBuildTasks project (not a separate *Tests project).
# build.ps1 bootstraps this into BuildTools/FwBuildTasks/<Configuration>/FwBuildTasks.dll.
$testDlls = @(Join-Path $PSScriptRoot "BuildTools/FwBuildTasks/$Configuration/FwBuildTasks.dll")
}
elseif ($TestProject -match '\.dll$') {
$testDlls = @(Join-Path $outputDir (Split-Path $TestProject -Leaf))
}
else {
# Assume it's a project path, find the DLL
$projectName = Split-Path $TestProject -Leaf
if ($projectName -notmatch 'Tests?$') {
$projectName = "${projectName}Tests"
}
$testDlls = @(Join-Path $outputDir "$projectName.dll")
}
}
else {
# Find all test DLLs, excluding:
# - Test framework DLLs (nunit, Microsoft.*, xunit)
# - External NuGet package tests (SIL.LCModel.*.Tests) - these test liblcm, not FieldWorks
# - SIL.WritingSystems.Tests - NuGet-delivered libpalaso test DLL compiled against
# NUnit 3.13.3; loading it causes binding-redirect failures (not a FieldWorks test)
$testDlls = Get-ChildItem -Path $outputDir -Filter "*Tests.dll" -ErrorAction SilentlyContinue |
Where-Object { $_.Name -notmatch '^nunit|^Microsoft|^xunit|^SIL\.LCModel|^SIL\.WritingSystems\.Tests' } |
Select-Object -ExpandProperty FullName
}
$missingTestDlls = @($testDlls | Where-Object { -not (Test-Path $_) })
if ($missingTestDlls.Count -gt 0) {
Write-Host "[ERROR] One or more requested test assemblies were not found:" -ForegroundColor Red
foreach ($missing in $missingTestDlls) {
Write-Host " - $missing" -ForegroundColor Red
}
Write-Host " If this is a build tasks test, run: .\\build.ps1 -Configuration $Configuration" -ForegroundColor Yellow
$script:testExitCode = 1
return
}
if (-not $testDlls -or $testDlls.Count -eq 0) {
Write-Host "[ERROR] No test assemblies found in $outputDir" -ForegroundColor Red
Write-Host " Run with -BuildTests first: .\build.ps1 -BuildTests" -ForegroundColor Yellow
$script:testExitCode = 1
return
}
Write-Host "Found $($testDlls.Count) test assembly(ies)" -ForegroundColor Cyan
# =============================================================================
# Ensure activation context manifests are present
# =============================================================================
# Many tests rely on ActivationContextHelper("FieldWorks.Tests.manifest") (and related manifests)
# being present in the working directory. When a test assembly lives outside Output/<Configuration>
# (e.g., Lib/src/*/bin), copy the manifests so reg-free COM activation works.
$manifestFiles = Get-ChildItem -Path $outputDir -Filter "*.manifest" -ErrorAction SilentlyContinue
if ($manifestFiles -and $manifestFiles.Count -gt 0) {
foreach ($testDll in $testDlls) {
$testDir = Split-Path $testDll -Parent
if ($testDir -and ($testDir.TrimEnd('\\') -ne $outputDir.TrimEnd('\\'))) {
foreach ($manifest in $manifestFiles) {
$dest = Join-Path $testDir $manifest.Name
if (-not (Test-Path -LiteralPath $dest -PathType Leaf)) {
Copy-Item -LiteralPath $manifest.FullName -Destination $dest -Force
}
}
}
}
}
# =============================================================================
# Find VSTest
# =============================================================================
$vstestPath = Get-VSTestPath
if (-not $vstestPath) {
Write-Host "[ERROR] vstest.console.exe not found" -ForegroundColor Red
Write-Host " Install Visual Studio Build Tools with test components or add vstest to PATH" -ForegroundColor Yellow
$script:testExitCode = 1
return
}
Write-Host "Found vstest.console.exe: $vstestPath" -ForegroundColor Gray
# =============================================================================
# Build VSTest Arguments
# =============================================================================
$resultsDir = Join-Path $outputDir "TestResults"
if (-not (Test-Path $resultsDir)) {
New-Item -Path $resultsDir -ItemType Directory -Force | Out-Null
}
# =============================================================================
# ICU_DATA setup (dev/test convenience)
# =============================================================================
function Test-IcuDataDir([string]$dir) {
if ([string]::IsNullOrWhiteSpace($dir)) { return $false }
# Some machines may have ICU_DATA set to a list. Prefer the first entry.
$firstDir = $dir.Split(';') | Select-Object -First 1
if (-not (Test-Path -LiteralPath $firstDir -PathType Container)) { return $false }
return (Test-Path -LiteralPath (Join-Path $firstDir 'nfc_fw.nrm') -PathType Leaf) -and
(Test-Path -LiteralPath (Join-Path $firstDir 'nfkc_fw.nrm') -PathType Leaf)
}
$icuDataNeedsConfig = -not (Test-IcuDataDir $env:ICU_DATA)
if ($icuDataNeedsConfig) {
try {
$distFiles = Join-Path $PSScriptRoot 'DistFiles'
if (Test-Path $distFiles) {
$icuDataDir = $null
$icuRoots = Get-ChildItem -Path $distFiles -Directory -Filter 'Icu*' -ErrorAction SilentlyContinue
foreach ($icuRoot in $icuRoots) {
$candidate = Get-ChildItem -Path $icuRoot.FullName -Directory -Filter 'icudt*l' -ErrorAction SilentlyContinue | Select-Object -First 1
if ($candidate) {
$icuDataDir = $candidate.FullName
break
}
}
if (-not $icuDataDir) {
$candidate = Get-ChildItem -Path $distFiles -Directory -Filter 'icudt*l' -ErrorAction SilentlyContinue | Select-Object -First 1
if ($candidate) {
$icuDataDir = $candidate.FullName
}
}
if ($icuDataDir) {
$env:FW_ICU_DATA_DIR = $icuDataDir
$env:ICU_DATA = $icuDataDir
Write-Host "Configured ICU_DATA=$icuDataDir" -ForegroundColor Gray
}
elseif ($env:ICU_DATA) {
Write-Host "ICU_DATA is set but invalid (missing nfc_fw.nrm/nfkc_fw.nrm): $($env:ICU_DATA)" -ForegroundColor Yellow
}
}
}
catch {
# Best-effort: tests may still run on machines where ICU_DATA is already configured.
}
}
$runSettingsPath = Join-Path $PSScriptRoot "Test.runsettings"
$vstestArgs = @()
$vstestArgs += $testDlls
$vstestArgs += "/Platform:x64"
$vstestArgs += "/Settings:$runSettingsPath"
$vstestArgs += "/ResultsDirectory:$resultsDir"
# Logger configuration - verbosity goes with the console logger
$verbosityMap = @{
'quiet' = 'quiet'; 'q' = 'quiet'
'minimal' = 'minimal'; 'm' = 'minimal'
'normal' = 'normal'; 'n' = 'normal'
'detailed' = 'detailed'; 'd' = 'detailed'
}
$vstestVerbosity = $verbosityMap[$Verbosity]
$vstestArgs += "/Logger:trx"
$vstestArgs += "/Logger:console;verbosity=$vstestVerbosity"
if ($TestFilter) {
$vstestArgs += "/TestCaseFilter:$TestFilter"
}
if ($ListTests) {
$vstestArgs += "/ListTests"
}
# =============================================================================
# Run Tests
# =============================================================================
Write-Host ""
Write-Host "Running tests..." -ForegroundColor Cyan
Write-Host " vstest.console.exe $($vstestArgs -join ' ')" -ForegroundColor DarkGray
Write-Host ""
$previousEap = $ErrorActionPreference
$ErrorActionPreference = 'Continue'
try {
& $vstestPath $vstestArgs 2>&1 | Tee-Object -Variable testOutput
# Don't overwrite a non-zero exit code from native tests with a zero exit code from these tests.
if ($LASTEXITCODE -ne 0) {
$script:testExitCode = $LASTEXITCODE
}
}
finally {
$ErrorActionPreference = $previousEap
}
$vstestLogPath = Join-Path $resultsDir "vstest.console.log"
try {
$testOutput | Out-File -FilePath $vstestLogPath -Encoding UTF8
Write-Host "VSTest output log: $vstestLogPath" -ForegroundColor Gray
}
catch {
Write-Host "[WARN] Failed to write VSTest output log to $vstestLogPath" -ForegroundColor Yellow
}
if ($script:testExitCode -ne 0) {
$outputText = ($testOutput | Out-String)
if ($outputText -match 'used by another process|file is locked|cannot access the file') {
throw "Detected possible file is locked during vstest execution."
}
}
# =============================================================================
# Workaround: multi-assembly VSTest may fail with exit code -1 and minimal output
# =============================================================================
if (-not $ListTests -and $testDlls.Count -gt 1 -and $script:testExitCode -eq -1) {
Write-Host "[WARN] vstest.console.exe returned exit code -1 with multiple test assemblies. Retrying per-assembly to isolate failures." -ForegroundColor Yellow
$timestamp = Get-Date -Format 'yyyyMMdd_HHmmss'
$overallExitCode = 0
foreach ($testDll in $testDlls) {
$dllName = [System.IO.Path]::GetFileNameWithoutExtension($testDll)
Write-Host ""
Write-Host "Running tests in $dllName..." -ForegroundColor Cyan
$singleArgs = @()
$singleArgs += $testDll
$singleArgs += "/Platform:x64"
$singleArgs += "/Settings:$runSettingsPath"
$singleArgs += "/ResultsDirectory:$resultsDir"
$singleArgs += "/Logger:trx;LogFileName=${dllName}_${timestamp}.trx"
$singleArgs += "/Logger:console;verbosity=$vstestVerbosity"
if ($TestFilter) {
$singleArgs += "/TestCaseFilter:$TestFilter"
}
& $vstestPath $singleArgs 2>&1 | Tee-Object -Variable singleTestOutput
$singleExitCode = $LASTEXITCODE
if ($singleExitCode -ne 0 -and $overallExitCode -eq 0) {
$overallExitCode = $singleExitCode
}
$singleLogPath = Join-Path $resultsDir "vstest.${dllName}.console.log"
try {
$singleTestOutput | Out-File -FilePath $singleLogPath -Encoding UTF8
}
catch {
Write-Host "[WARN] Failed to write VSTest output log to $singleLogPath" -ForegroundColor Yellow
}
if ($singleExitCode -ne 0) {
$singleOutputText = ($singleTestOutput | Out-String)
if ($singleOutputText -match 'used by another process|file is locked|cannot access the file') {
throw "Detected possible file is locked during vstest execution."
}
}
}
$script:testExitCode = $overallExitCode
}
}
}
finally {
Stop-ConflictingProcesses @cleanupArgs
if ($worktreeLock) {
Exit-WorktreeLock -LockHandle $worktreeLock
}
}
# =============================================================================
# Failure Summary (always print to terminal when there are failures)
# =============================================================================
$vstestLogPath = Join-Path $PSScriptRoot "Output/$Configuration/TestResults/vstest.console.log"
if ($testExitCode -ne 0 -and (Test-Path $vstestLogPath)) {
Write-Host ""
Write-Host "========== FAILURE SUMMARY ==========" -ForegroundColor Red
if ($script:nativeErrorMessages.Count -gt 0) {
Write-Host " Native test failures:" -ForegroundColor Red
foreach ($msg in $script:nativeErrorMessages) {
Write-Host " - $msg" -ForegroundColor Red
}
Write-Host "=====================================" -ForegroundColor Red
}
$logLines = Get-Content $vstestLogPath
$failedTests = @()
for ($i = 0; $i -lt $logLines.Count; $i++) {
if ($logLines[$i] -match '^\s+Failed\s+(\S.*)') {
$testName = $Matches[1].Trim()
$errorMsg = ""
# Look ahead for "Error Message:" line
if ($i + 2 -lt $logLines.Count -and $logLines[$i + 1] -match '^\s+Error Message:') {
$errorMsg = $logLines[$i + 2].Trim()
}
$failedTests += [PSCustomObject]@{ Test = $testName; Error = $errorMsg }
}
}
if ($failedTests.Count -gt 0) {
# Group by error message for a compact summary
$groups = $failedTests | Group-Object Error | Sort-Object Count -Descending
foreach ($grp in $groups) {
Write-Host ""
Write-Host " [$($grp.Count) failure(s)] $($grp.Name)" -ForegroundColor Yellow
# Show up to 5 test names per group
$shown = 0
foreach ($item in $grp.Group) {
if ($shown -ge 5) {
Write-Host " ... and $($grp.Count - 5) more" -ForegroundColor DarkGray
break
}
Write-Host " - $($item.Test)" -ForegroundColor Gray
$shown++
}
}
Write-Host ""
Write-Host " Total: $($failedTests.Count) failed test(s)" -ForegroundColor Red
}
Write-Host "=====================================" -ForegroundColor Red
Write-Host " Full log for managed tests: $vstestLogPath" -ForegroundColor Gray
if (-not $SkipNative) {
$nativeLogPath = Join-Path $PSScriptRoot "Output/$Configuration/<SuiteName>.exe.log"
Write-Host " Logs for each native test suite: $nativeLogPath" -ForegroundColor Gray
}
}
if ($testExitCode -eq 0) {
Write-Host ""
Write-Host "[PASS] All tests passed" -ForegroundColor Green
}
else {
Write-Host ""
Write-Host "[FAIL] Some tests failed (exit code: $testExitCode)" -ForegroundColor Red
}
exit $testExitCode