-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaywright-jasmine.js
More file actions
190 lines (170 loc) · 5.14 KB
/
playwright-jasmine.js
File metadata and controls
190 lines (170 loc) · 5.14 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
import { expect } from "@playwright/test";
const DEFAULT_TIMEOUT = 120_000;
const MAX_FAILURES = 10;
const MAX_MESSAGES = 3;
const MAX_LOG_LINES = 10;
/**
* 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 }} [options]
* @returns {Promise<void>}
*/
export async function expectNoJasmineFailures(page, url, options = {}) {
const diagnostics = await runJasminePage(page, url, options);
expect(
diagnostics.failedSpecs,
formatJasmineFailureReport(url, diagnostics),
).toEqual([]);
}
/**
* Waits for the browser-side Jasmine runner to finish and collects failures.
*
* @param {import("@playwright/test").Page} page
* @param {string} url
* @param {{ timeout?: number }} [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 {
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;
}
/**
* 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 failedSpecs = specs
.filter((spec) => spec.status === "failed")
.map((spec) => ({
fullName: spec.fullName,
failedExpectations: (spec.failedExpectations || []).map(
(expectation) => expectation.message,
),
}));
return {
failedSpecs,
overallText,
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.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`,
);
}
} else {
lines.push("No failed specs 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`);
}
}
/**
* @typedef {{
* failedSpecs: Array<{
* fullName: string,
* failedExpectations: string[],
* }>,
* overallText: string,
* status: string | null,
* totalSpecs: number,
* pageErrors: string[],
* consoleErrors: string[],
* }} JasmineDiagnostics
*/