-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathAnalyzeTests.ps1
57 lines (52 loc) · 2.88 KB
/
AnalyzeTests.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
Param(
[Parameter(HelpMessage = "Project to analyze", Mandatory = $false)]
[string] $project = '.',
[Parameter(HelpMessage = "Tests to analyze", Mandatory = $true)]
[ValidateSet('normal', 'bcpt', 'pageScripting')]
[string] $testType
)
. (Join-Path -Path $PSScriptRoot -ChildPath "..\AL-Go-Helper.ps1" -Resolve)
. (Join-Path -Path $PSScriptRoot 'TestResultAnalyzer.ps1')
$testResultsSummaryMD = ''
$testResultsfailuresMD = ''
$testResultsFailuresSummaryMD = ''
switch ($testType) {
'normal' {
$testResultsFile = Join-Path $ENV:GITHUB_WORKSPACE "$project\TestResults.xml"
$testResultsSummaryMD, $testResultsfailuresMD, $testResultsFailuresSummaryMD = GetTestResultSummaryMD -testResultsFile $testResultsFile
$testTitle = "Test results"
}
'bcpt' {
$settings = $env:Settings | ConvertFrom-Json
$bcptTestResultsFile = Join-Path $ENV:GITHUB_WORKSPACE "$project\bcptTestResults.json"
$bcptBaseLineFile = Join-Path $ENV:GITHUB_WORKSPACE "$project\bcptBaseLine.json"
$bcptThresholdsFile = Join-Path $ENV:GITHUB_WORKSPACE "$project\bcptThresholds.json"
$testResultsSummaryMD = GetBcptSummaryMD `
-bcptTestResultsFile $bcptTestResultsFile `
-baseLinePath $bcptBaseLineFile `
-thresholdsPath $bcptThresholdsFile `
-bcptThresholds ($settings.bcptThresholds | ConvertTo-HashTable)
$testTitle = "Performance test results"
}
'pageScripting' {
$testResultsFile = Join-Path $ENV:GITHUB_WORKSPACE "$project\.buildartifacts\PageScriptingTestResults.xml"
$testResultsSummaryMD, $testResultsfailuresMD, $testResultsFailuresSummaryMD = GetPageScriptingTestResultSummaryMD -testResultsFile $testResultsFile -project $project
$testTitle = "Page Scripting test results"
}
default {
Write-Host "::error:: Unknown test type: $testType"
return ''
}
}
# If summary fits, we will display it in the GitHub summary
if ($testResultsSummaryMD.Length -gt (1MB - 1)) {
# If Test results summary is too long, we will not display it in the GitHub summary, instead we will display a message to download the test results
$testResultsSummaryMD = "<i>Test results summary size exceeds GitHub summary capacity. Download **TestResults** artifact to see details.</i>"
}
if ($testResultsSummaryMD.Length + $testResultsfailuresMD.Length -gt (1MB - 1)) {
# If Combined Test Results and failures exceeds GitHub summary capacity, we will not display the failures details, only the failures summary
$testResultsfailuresMD = $testResultsFailuresSummaryMD
}
Add-Content -Encoding UTF8 -path $ENV:GITHUB_STEP_SUMMARY -value "## $testTitle`n`n"
Add-Content -Encoding UTF8 -path $ENV:GITHUB_STEP_SUMMARY -value "$($testResultsSummaryMD.Replace("\n","`n"))`n`n"
Add-Content -Encoding UTF8 -path $ENV:GITHUB_STEP_SUMMARY -value "$($testResultsfailuresMD.Replace("\n","`n"))`n`n"