-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathPlugin.ts
271 lines (222 loc) · 7.14 KB
/
Plugin.ts
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
import { Logger } from './utils/Logger';
import { FileManager } from './utils/FileManager';
import type {
HarExporter,
HarExporterFactory,
HarExporterOptions,
NetworkObserverOptions,
Observer,
ObserverFactory
} from './network';
import { HarBuilder, NetworkIdleMonitor, NetworkRequest } from './network';
import { ErrorUtils } from './utils/ErrorUtils';
import type { Connection, ConnectionFactory, NetworkOptions } from './cdp';
import {
ADDRESS_OPTION_NAME,
MAX_NETWORK_IDLE_THRESHOLD,
MAX_NETWORK_IDLE_DURATION,
PORT_OPTION_NAME,
SUPPORTED_BROWSERS
} from './constants';
import { join } from 'path';
import { EOL } from 'os';
import { promisify } from 'util';
export interface SaveOptions {
fileName: string;
outDir: string;
waitForIdle?: boolean;
minIdleDuration?: number;
maxWaitDuration?: number;
}
export type RecordOptions = NetworkObserverOptions &
HarExporterOptions &
NetworkOptions;
interface Addr {
port: number;
host: string;
}
export class Plugin {
private exporter?: HarExporter;
private networkObservable?: Observer<NetworkRequest>;
private addr?: Addr;
private _connection?: Connection;
constructor(
private readonly logger: Logger,
private readonly fileManager: FileManager,
private readonly connectionFactory: ConnectionFactory,
private readonly observerFactory: ObserverFactory,
private readonly exporterFactory: HarExporterFactory
) {}
public ensureBrowserFlags(
browser: Cypress.Browser,
args: string[]
): string[] {
if (!this.isSupportedBrowser(browser)) {
throw new Error(
`An unsupported browser family was used: ${browser.name}`
);
}
const electronUsed = browser.name === 'electron';
if (electronUsed) {
args = this.parseElectronSwitches(browser);
}
const browserFlags: string[] = this.ensureRdpAddrArgs(args);
return electronUsed
? []
: browserFlags.filter((x: string): boolean => !args.includes(x));
}
public async recordHar(options: RecordOptions): Promise<void> {
await this.closeConnection();
if (!this.addr) {
throw new Error(
`Please call the 'ensureBrowserFlags' before attempting to start the recording.`
);
}
this.exporter = await this.exporterFactory.create(options);
this._connection = this.connectionFactory.create({
...this.addr,
maxRetries: 20,
maximumBackoff: 100,
initialBackoff: 5
});
await this._connection.open();
await this.listenNetworkEvents(options);
}
public async saveHar(options: SaveOptions): Promise<void> {
const filePath = join(options.outDir, options.fileName);
if (!this._connection) {
this.logger.err(`Failed to save HAR. First you should start recording.`);
return;
}
try {
await this.fileManager.createFolder(options.outDir);
if (options.waitForIdle) {
await this.waitForNetworkIdle(options);
}
const har: string | undefined = await this.buildHar();
if (har) {
await this.fileManager.writeFile(filePath, har);
}
} catch (e) {
const message = ErrorUtils.isError(e) ? e.message : e;
this.logger.err(
`An error occurred while attempting to save the HAR file. Error details: ${message}`
);
} finally {
await this.disposeOfHar();
}
}
public async disposeOfHar(): Promise<void> {
await this.networkObservable?.unsubscribe();
delete this.networkObservable;
if (this.exporter) {
this.exporter.end();
await this.fileManager.removeFile(this.exporter.path);
delete this.exporter;
}
}
private parseElectronSwitches(browser: Cypress.Browser): string[] {
if (!process.env.ELECTRON_EXTRA_LAUNCH_ARGS?.includes(PORT_OPTION_NAME)) {
this.logger
.err(`The '${browser.name}' browser was detected, however, the required '${PORT_OPTION_NAME}' command line switch was not provided.
This switch is necessary to enable remote debugging over HTTP on the specified port.
Please refer to the documentation:
- https://www.electronjs.org/docs/latest/api/command-line-switches#--remote-debugging-portport
- https://docs.cypress.io/api/plugins/browser-launch-api#Modify-Electron-app-switches`);
throw new Error(
`Missing '${PORT_OPTION_NAME}' command line switch for Electron browser`
);
}
return process.env.ELECTRON_EXTRA_LAUNCH_ARGS.split(' ');
}
private async buildHar(): Promise<string | undefined> {
if (this.exporter) {
const content = await this.fileManager.readFile(this.exporter.path);
if (content) {
const entries = content
.split(EOL)
.filter(Boolean)
.map(x => JSON.parse(x));
const har = new HarBuilder(entries).build();
return JSON.stringify(har, null, 2);
}
}
return undefined;
}
private async waitForNetworkIdle(
options: Pick<SaveOptions, 'minIdleDuration' | 'maxWaitDuration'>
): Promise<void> {
const {
minIdleDuration = MAX_NETWORK_IDLE_THRESHOLD,
maxWaitDuration = MAX_NETWORK_IDLE_DURATION
} = options;
const cancellation = promisify(setTimeout)(maxWaitDuration);
return Promise.race([
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
new NetworkIdleMonitor(this.networkObservable!).waitForIdle(
minIdleDuration
),
cancellation
]);
}
private async listenNetworkEvents(options: RecordOptions): Promise<void> {
const network = this._connection?.discoverNetwork(options);
this.networkObservable = this.observerFactory.createNetworkObserver(
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
network!,
options
);
return this.networkObservable.subscribe((request: NetworkRequest) =>
this.exporter?.write(request)
);
}
private async closeConnection(): Promise<void> {
if (this._connection) {
await this._connection.close();
delete this._connection;
}
}
private isSupportedBrowser(browser: Cypress.Browser): boolean {
return SUPPORTED_BROWSERS.includes(browser?.family);
}
private ensureRdpAddrArgs(args: string[]): string[] {
const {
host = 'localhost',
port = 40000 + Math.round(Math.random() * 25000)
} = this.extractAddrFromArgs(args);
this.addr = { host, port };
return [
...args,
`${PORT_OPTION_NAME}=${port}`,
`${ADDRESS_OPTION_NAME}=${host}`
];
}
private extractAddrFromArgs(args: string[]): Partial<Addr> {
const port: string | undefined = this.findAndParseIfPossible(
args,
PORT_OPTION_NAME
);
const host: string | undefined = this.findAndParseIfPossible(
args,
ADDRESS_OPTION_NAME
);
let addr: { port?: number; host?: string } = {};
if (port && !isNaN(+port)) {
addr = { port: +port };
}
if (host) {
addr = { ...addr, host };
}
return addr;
}
private findAndParseIfPossible(
args: string[],
optionName: string
): string | undefined {
const arg: string | undefined = args.find((x: string): boolean =>
x.startsWith(optionName)
);
const [, value]: string[] = arg?.split('=', 2) ?? [];
return value;
}
}