-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaywright-jasmine.js
More file actions
324 lines (318 loc) · 9.57 KB
/
playwright-jasmine.js
File metadata and controls
324 lines (318 loc) · 9.57 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
import { mkdir, writeFile } from "node:fs/promises";
import path from "node:path";
import { fileURLToPath } from "node:url";
import { expect } from "@playwright/test";
const DEFAULT_TIMEOUT = 120_000;
const MAX_FAILURES = 10;
const MAX_MESSAGES = 3;
const MAX_LOG_LINES = 10;
const COVERAGE_ENABLED = process.env.PW_COVERAGE === "1";
const COVERAGE_TEMP_DIR = fileURLToPath(
new URL("./.coverage/tmp/", import.meta.url),
);
let coverageArtifactId = 0;
/**
* Runs a Jasmine HTML runner from an existing Playwright test and reports
* explicit spec failures when the suite finishes.
*
* @param {import("@playwright/test").Page} page
* @param {string} url
* @param {{ timeout?: number, allowFocusedSpecs?: boolean }} [options]
* @returns {Promise<void>}
*/
export async function expectNoJasmineFailures(page, url, options = {}) {
const diagnostics = await runJasminePage(page, url, options);
const effectiveOverallStatus = isAcceptableJasmineStatus(diagnostics, options)
? "passed"
: diagnostics.overallStatus;
expect(
{
overallStatus: effectiveOverallStatus,
failedSpecs: diagnostics.failedSpecs,
failedSuites: diagnostics.failedSuites,
globalFailures: diagnostics.globalFailures,
},
formatJasmineFailureReport(url, diagnostics),
).toEqual({
overallStatus: "passed",
failedSpecs: [],
failedSuites: [],
globalFailures: [],
});
}
function isAcceptableJasmineStatus(diagnostics, options) {
if (diagnostics.overallStatus === "passed") {
return true;
}
return isFocusedJasmineRunWithoutFailures(diagnostics, options);
}
function isFocusedJasmineRunWithoutFailures(diagnostics, options) {
if (options.allowFocusedSpecs === false) {
return false;
}
if (diagnostics.overallStatus !== "incomplete") {
return false;
}
if (
diagnostics.failedSpecs.length > 0 ||
diagnostics.failedSuites.length > 0 ||
diagnostics.globalFailures.length > 0
) {
return false;
}
return true;
}
/**
* Waits for the browser-side Jasmine runner to finish and collects failures.
*
* @param {import("@playwright/test").Page} page
* @param {string} url
* @param {{ timeout?: number, allowFocusedSpecs?: boolean }} [options]
* @returns {Promise<JasmineDiagnostics>}
*/
export async function runJasminePage(page, url, options = {}) {
const pageErrors = [];
const consoleErrors = [];
const timeout = options.timeout ?? DEFAULT_TIMEOUT;
page.on("pageerror", (error) => {
pageErrors.push(error.stack || error.message);
});
page.on("console", (message) => {
if (message.type() === "error") {
consoleErrors.push(message.text());
}
});
await page.goto(url);
try {
try {
await page.waitForFunction(
() =>
typeof window.jsApiReporter?.status === "function" &&
window.jsApiReporter.status() === "done",
{ timeout },
);
} catch (error) {
const diagnostics = await collectJasmineDiagnostics(page);
diagnostics.pageErrors = pageErrors;
diagnostics.consoleErrors = consoleErrors;
throw new Error(formatJasmineFailureReport(url, diagnostics), {
cause: error,
});
}
const diagnostics = await collectJasmineDiagnostics(page);
diagnostics.pageErrors = pageErrors;
diagnostics.consoleErrors = consoleErrors;
return diagnostics;
} finally {
await savePageCoverage(page, url);
}
}
// noinspection JSUnusedGlobalSymbols
export async function withPageCoverage(page, label, action) {
try {
return await action();
} finally {
await savePageCoverage(page, label);
}
}
/**
* Reads Jasmine reporter output from the page and normalizes it into a small
* object the Playwright wrapper can assert on.
*
* @param {import("@playwright/test").Page} page
* @returns {Promise<JasmineDiagnostics>}
*/
async function collectJasmineDiagnostics(page) {
return page.evaluate(() => {
const reporter = window.jsApiReporter;
const overallText =
document.querySelector(".jasmine-overall-result")?.textContent?.trim() ||
"";
const status =
typeof reporter?.status === "function" ? reporter.status() : null;
const specs =
typeof reporter?.specResults === "function" ? reporter.specResults() : [];
const suites =
typeof reporter?.suiteResults === "function"
? reporter.suiteResults()
: [];
const runDetails =
reporter && typeof reporter.runDetails === "object"
? reporter.runDetails
: {};
const failedSpecs = specs
.filter((spec) => spec.status === "failed")
.map((spec) => ({
fullName: spec.fullName,
failedExpectations: (spec.failedExpectations || []).map(
(expectation) => expectation.message,
),
}));
const failedSuites = suites
.filter((suite) => suite.status === "failed")
.map((suite) => ({
fullName: suite.fullName,
failedExpectations: (suite.failedExpectations || []).map(
(expectation) => expectation.message,
),
}));
const globalFailures = (runDetails.failedExpectations || []).map(
(expectation) => expectation.message,
);
return {
failedSpecs,
failedSuites,
globalFailures,
overallText,
overallStatus:
typeof runDetails.overallStatus === "string"
? runDetails.overallStatus
: null,
status,
totalSpecs: specs.length,
pageErrors: [],
consoleErrors: [],
};
});
}
/**
* Builds a human-readable assertion message with the failed spec names and
* expectation messages pulled from Jasmine.
*
* @param {string} url
* @param {JasmineDiagnostics} diagnostics
* @returns {string}
*/
function formatJasmineFailureReport(url, diagnostics) {
const lines = [`Jasmine failures for ${url}`];
if (diagnostics.status && diagnostics.status !== "done") {
lines.push(`Status: ${diagnostics.status}`);
}
if (diagnostics.overallStatus) {
lines.push(`Overall status: ${diagnostics.overallStatus}`);
}
if (diagnostics.overallText) {
lines.push(`Summary: ${diagnostics.overallText}`);
}
if (diagnostics.totalSpecs) {
lines.push(`Total specs: ${diagnostics.totalSpecs}`);
}
if (diagnostics.failedSpecs.length > 0) {
lines.push("Failed specs:");
diagnostics.failedSpecs.slice(0, MAX_FAILURES).forEach((spec, index) => {
lines.push(`${index + 1}. ${spec.fullName}`);
spec.failedExpectations.slice(0, MAX_MESSAGES).forEach((message) => {
lines.push(` - ${message}`);
});
});
if (diagnostics.failedSpecs.length > MAX_FAILURES) {
lines.push(
`... ${diagnostics.failedSpecs.length - MAX_FAILURES} more failed specs`,
);
}
}
if (diagnostics.failedSuites.length > 0) {
lines.push("Failed suites:");
diagnostics.failedSuites.slice(0, MAX_FAILURES).forEach((suite, index) => {
lines.push(`${index + 1}. ${suite.fullName}`);
suite.failedExpectations.slice(0, MAX_MESSAGES).forEach((message) => {
lines.push(` - ${message}`);
});
});
if (diagnostics.failedSuites.length > MAX_FAILURES) {
lines.push(
`... ${diagnostics.failedSuites.length - MAX_FAILURES} more failed suites`,
);
}
}
if (diagnostics.globalFailures.length > 0) {
lines.push("Global failures:");
diagnostics.globalFailures.slice(0, MAX_FAILURES).forEach((message) => {
lines.push(`- ${message}`);
});
if (diagnostics.globalFailures.length > MAX_FAILURES) {
lines.push(
`... ${diagnostics.globalFailures.length - MAX_FAILURES} more global failures`,
);
}
}
if (
diagnostics.failedSpecs.length === 0 &&
diagnostics.failedSuites.length === 0 &&
diagnostics.globalFailures.length === 0
) {
lines.push("No failed specs, suites, or global failures were reported.");
}
appendLogSection(lines, "Page errors", diagnostics.pageErrors);
appendLogSection(lines, "Console errors", diagnostics.consoleErrors);
return lines.join("\n");
}
/**
* Adds captured browser-side errors to the failure report without letting the
* output become excessively large.
*
* @param {string[]} lines
* @param {string} label
* @param {string[]} values
* @returns {void}
*/
function appendLogSection(lines, label, values) {
if (values.length === 0) {
return;
}
lines.push(`${label}:`);
values.slice(0, MAX_LOG_LINES).forEach((value) => {
lines.push(`- ${value}`);
});
if (values.length > MAX_LOG_LINES) {
lines.push(`... ${values.length - MAX_LOG_LINES} more`);
}
}
async function savePageCoverage(page, label) {
if (!COVERAGE_ENABLED) {
return;
}
const coverage = await page
.evaluate(() => globalThis.__coverage__ || window.__coverage__ || null)
.catch(() => null);
if (!coverage || Object.keys(coverage).length === 0) {
return;
}
coverageArtifactId += 1;
await mkdir(COVERAGE_TEMP_DIR, { recursive: true });
await writeFile(
path.join(
COVERAGE_TEMP_DIR,
`${process.pid}-${coverageArtifactId}-${sanitizeCoverageLabel(label)}.json`,
),
JSON.stringify(coverage),
"utf8",
);
}
function sanitizeCoverageLabel(label) {
return (
String(label)
.replace(/[^a-z0-9]+/gi, "-")
.replace(/^-+|-+$/g, "")
.slice(0, 80) || "page"
);
}
/**
* @typedef {{
* failedSpecs: Array<{
* fullName: string,
* failedExpectations: string[],
* }>,
* failedSuites: Array<{
* fullName: string,
* failedExpectations: string[],
* }>,
* globalFailures: string[],
* overallText: string,
* overallStatus: string | null,
* status: string | null,
* totalSpecs: number,
* pageErrors: string[],
* consoleErrors: string[],
* }} JasmineDiagnostics
*/