-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtestResultsFormatter.ts
More file actions
141 lines (127 loc) · 5.13 KB
/
Copy pathtestResultsFormatter.ts
File metadata and controls
141 lines (127 loc) · 5.13 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
/*
* Copyright (c) 2023, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
import os from 'node:os';
import { StandardColors } from '@salesforce/sf-plugins-core/StandardColors';
import { Ux } from '@salesforce/sf-plugins-core/Ux';
import ansis from 'ansis';
import {
CodeCoverage,
CodeCoverageWarnings,
DeployResult,
Failures,
MetadataApiDeployStatus,
RunTestResult,
Successes,
} from '@salesforce/source-deploy-retrieve';
import { ensureArray } from '@salesforce/kit';
import { TestLevel, Verbosity } from '../utils/types.js';
import { tableHeader, error, success, check } from '../utils/output.js';
import { coverageOutput } from '../utils/coverage.js';
import { isCI } from '../utils/deployStages.js';
const ux = new Ux();
export class TestResultsFormatter {
public skipVerboseTestReportOnCI: boolean;
public testLevel: TestLevel | undefined;
public verbosity: Verbosity;
public constructor(
protected result: DeployResult,
protected flags: Partial<{
'test-level': TestLevel;
verbose: boolean;
}>,
skipVerboseTestReportOnCI = true
) {
this.skipVerboseTestReportOnCI = skipVerboseTestReportOnCI;
this.testLevel = flags['test-level'];
this.verbosity = this.determineVerbosity();
}
public displayTestResults(): void {
if (this.testLevel === TestLevel.NoTestRun || !this.result.response.runTestsEnabled) {
ux.log();
return;
}
// some commands like `project deploy start` will report these failures as they happen via MSO:
// https://github.com/salesforcecli/plugin-deploy-retrieve/pull/1215
//
// commands can enable/disable `skipVerboseTestReportOnCI` when instantiating the formatter to skip these
const skipVerboseTestReport = isCI() && this.skipVerboseTestReportOnCI;
if (!skipVerboseTestReport) {
displayVerboseTestFailures(this.result.response);
}
if (this.verbosity === 'verbose') {
displayVerboseTestSuccesses(this.result.response.details.runTestResult?.successes);
displayVerboseTestCoverage(this.result.response.details.runTestResult?.codeCoverage);
}
ux.log();
ux.log(tableHeader('Test Results Summary'));
ux.log(`Passing: ${this.result.response.numberTestsCompleted ?? 0}`);
ux.log(`Failing: ${this.result.response.numberTestErrors ?? 0}`);
ux.log(`Total: ${this.result.response.numberTestsTotal ?? 0}`);
const time = this.result.response.details.runTestResult?.totalTime ?? 0;
if (time) ux.log(`Time: ${time}`);
// I think the type might be wrong in SDR
ensureArray(this.result.response.details.runTestResult?.codeCoverageWarnings).map(
(warning: CodeCoverageWarnings & { name?: string }) =>
ux.warn(`${warning.name ? `${warning.name} - ` : ''}${warning.message}`)
);
}
public determineVerbosity(): Verbosity {
if (this.flags.verbose) return 'verbose';
return 'normal';
}
}
const displayVerboseTestSuccesses = (resultSuccesses: RunTestResult['successes']): void => {
const successes = ensureArray(resultSuccesses).sort(testResultSort);
if (successes.length > 0) {
ux.log();
ux.log(success(`Test Success [${successes.length}]`));
for (const test of successes) {
const testName = ansis.underline(`${test.name}.${test.methodName} (${test.time}ms)`);
ux.log(`${check} ${testName}`);
}
}
};
/** display the Test failures if there are any testErrors in the mdapi deploy response */
const displayVerboseTestFailures = (response: MetadataApiDeployStatus): void => {
if (!response.numberTestErrors) return;
const failures = ensureArray(response.details.runTestResult?.failures).sort(testResultSort);
const failureCount = response.details.runTestResult?.numFailures;
ux.log();
ux.log(error(`Test Failures [${failureCount ?? 0}]`));
for (const test of failures) {
const testName = ansis.underline(`${test.name}.${test.methodName}`);
ux.log(`• ${testName}`);
ux.log(` ${StandardColors.info('message')}: ${test.message}`);
if (test.stackTrace) {
const stackTrace = test.stackTrace.replace(/\n/g, `${os.EOL} `);
ux.log(` ${StandardColors.info('stacktrace')}: ${os.EOL} ${stackTrace}`);
}
ux.log();
}
};
/**
* Display the table if there is at least one coverage item in the result
*/
const displayVerboseTestCoverage = (coverage?: CodeCoverage | CodeCoverage[]): void => {
const codeCoverage = ensureArray(coverage);
if (codeCoverage.length) {
ux.log();
ux.table({
data: codeCoverage.sort(coverageSort).map(coverageOutput),
columns: [
'name',
{ key: 'coveragePercent', name: '% Covered' },
{ key: 'linesNotCovered', name: 'Uncovered Lines' },
],
title: tableHeader('Apex Code Coverage'),
});
}
};
export const testResultSort = <T extends Successes | Failures>(a: T, b: T): number =>
a.methodName === b.methodName ? a.name.localeCompare(b.name) : a.methodName.localeCompare(b.methodName);
const coverageSort = (a: CodeCoverage, b: CodeCoverage): number =>
a.name.toUpperCase() > b.name.toUpperCase() ? 1 : -1;