-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Expand file tree
/
Copy pathplaywright.ts
More file actions
106 lines (89 loc) · 3.15 KB
/
Copy pathplaywright.ts
File metadata and controls
106 lines (89 loc) · 3.15 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
import { spawn } from 'node:child_process';
import { mkdir, rm } from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { getUiP0Group, listUiP0GroupNames, uiP0Groups } from '../lib/playwright/suites.ts';
const scriptDir = path.dirname(fileURLToPath(import.meta.url));
const e2eDir = path.resolve(scriptDir, '..');
const uiDir = path.join(e2eDir, 'ui');
type Command = () => Promise<void>;
const commands: Record<string, Command> = {
clean: cleanArtifacts,
help: async () => printUsage(),
'list-ui-groups': listUiGroups,
'run-ui-group': runUiGroup,
};
const commandName = process.argv[2] ?? 'help';
const command = commands[commandName];
if (command == null) {
console.error(`Unknown e2e Playwright helper command: ${commandName}`);
printUsage();
process.exitCode = 1;
} else {
await command();
}
async function cleanArtifacts(): Promise<void> {
const targets = [
path.join(uiDir, '.od-data'),
path.join(uiDir, 'test-results'),
path.join(uiDir, 'reports', 'test-results'),
path.join(uiDir, 'reports', 'visual-test-results'),
path.join(uiDir, 'reports', 'html'),
path.join(uiDir, 'reports', 'playwright-html-report'),
path.join(uiDir, 'reports', 'results.json'),
path.join(uiDir, 'reports', 'visual-results.json'),
path.join(uiDir, 'reports', 'visual-screenshots'),
path.join(uiDir, 'reports', 'visual-report'),
path.join(uiDir, 'reports', 'junit.xml'),
path.join(uiDir, '.DS_Store'),
];
await Promise.all(targets.map((target) => rm(target, { recursive: true, force: true })));
await mkdir(path.join(uiDir, 'reports', 'test-results'), { recursive: true });
await mkdir(path.join(uiDir, '.od-data'), { recursive: true });
console.log('Cleaned e2e UI Playwright artifacts.');
}
async function listUiGroups(): Promise<void> {
if (process.argv.includes('--json')) {
console.log(JSON.stringify(uiP0Groups, null, 2));
return;
}
console.log(listUiP0GroupNames().join('\n'));
}
async function runUiGroup(): Promise<void> {
const groupName = process.argv[3];
if (groupName == null || groupName.length === 0) {
console.error('Missing UI group name.');
printUsage();
process.exitCode = 1;
return;
}
const group = getUiP0Group(groupName);
if (group == null) {
console.error(`Unknown UI group: ${groupName}`);
printUsage();
process.exitCode = 1;
return;
}
const args = ['test', '-c', 'playwright.config.ts', ...group.files, '--grep', group.grep];
if (group.workers != null) {
args.push(`--workers=${group.workers}`);
}
const child = spawn('playwright', args, {
stdio: 'inherit',
shell: false,
});
const exitCode = await new Promise<number | null>((resolve, reject) => {
child.once('error', reject);
child.once('exit', (code) => resolve(code));
});
process.exitCode = exitCode ?? 1;
}
function printUsage(): void {
console.log(`Usage: tsx scripts/playwright.ts <command>
Commands:
clean Remove e2e UI Playwright runtime data and reports
list-ui-groups [--json] List named UI P0 groups
run-ui-group <name> Run a named UI P0 group
help Show this help
`);
}