There are a few ways for `connect()` to finish: - `Browser.close()` from the client side. - Browser on the server side did exit (e.g. crashed). - Connection was dropped by either of the sides. We reduce all the cases to the last one by dropping the connection when client wants calls `Browser.close()` or server-side browser exits. In all these cases we should properly cleanup on the server side, and ensure that all promises reject on the client side.
140 lines
4.8 KiB
TypeScript
140 lines
4.8 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { EventEmitter } from 'events';
|
|
import { rewriteErrorMessage } from '../utils/stackTrace';
|
|
import { TimeoutError } from '../utils/errors';
|
|
import { createGuid } from '../utils/utils';
|
|
import { ChannelOwner } from './channelOwner';
|
|
|
|
export class Waiter {
|
|
private _dispose: (() => void)[];
|
|
private _failures: Promise<any>[] = [];
|
|
private _immediateError?: Error;
|
|
// TODO: can/should we move these logs into wrapApiCall?
|
|
private _logs: string[] = [];
|
|
private _channelOwner: ChannelOwner;
|
|
private _waitId: string;
|
|
private _error: string | undefined;
|
|
|
|
constructor(channelOwner: ChannelOwner, apiName: string) {
|
|
this._waitId = createGuid();
|
|
this._channelOwner = channelOwner;
|
|
this._channelOwner._waitForEventInfoBefore(this._waitId, apiName);
|
|
this._dispose = [
|
|
() => this._channelOwner._waitForEventInfoAfter(this._waitId, this._error)
|
|
];
|
|
}
|
|
|
|
static createForEvent(channelOwner: ChannelOwner, target: string, event: string) {
|
|
return new Waiter(channelOwner, `${target}.waitForEvent(${event})`);
|
|
}
|
|
|
|
async waitForEvent<T = void>(emitter: EventEmitter, event: string, predicate?: (arg: T) => boolean | Promise<boolean>): Promise<T> {
|
|
const { promise, dispose } = waitForEvent(emitter, event, predicate);
|
|
return this.waitForPromise(promise, dispose);
|
|
}
|
|
|
|
rejectOnEvent<T = void>(emitter: EventEmitter, event: string, error: Error, predicate?: (arg: T) => boolean | Promise<boolean>) {
|
|
const { promise, dispose } = waitForEvent(emitter, event, predicate);
|
|
this._rejectOn(promise.then(() => { throw error; }), dispose);
|
|
}
|
|
|
|
rejectOnTimeout(timeout: number, message: string) {
|
|
if (!timeout)
|
|
return;
|
|
const { promise, dispose } = waitForTimeout(timeout);
|
|
this._rejectOn(promise.then(() => { throw new TimeoutError(message); }), dispose);
|
|
}
|
|
|
|
rejectImmediately(error: Error) {
|
|
this._immediateError = error;
|
|
}
|
|
|
|
dispose() {
|
|
for (const dispose of this._dispose)
|
|
dispose();
|
|
}
|
|
|
|
async waitForPromise<T>(promise: Promise<T>, dispose?: () => void): Promise<T> {
|
|
try {
|
|
if (this._immediateError)
|
|
throw this._immediateError;
|
|
const result = await Promise.race([promise, ...this._failures]);
|
|
if (dispose)
|
|
dispose();
|
|
return result;
|
|
} catch (e) {
|
|
if (dispose)
|
|
dispose();
|
|
this._error = e.message;
|
|
this.dispose();
|
|
rewriteErrorMessage(e, e.message + formatLogRecording(this._logs) + kLoggingNote);
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
log(s: string) {
|
|
this._logs.push(s);
|
|
this._channelOwner._waitForEventInfoLog(this._waitId, s);
|
|
}
|
|
|
|
private _rejectOn(promise: Promise<any>, dispose?: () => void) {
|
|
this._failures.push(promise);
|
|
if (dispose)
|
|
this._dispose.push(dispose);
|
|
}
|
|
}
|
|
|
|
function waitForEvent<T = void>(emitter: EventEmitter, event: string, predicate?: (arg: T) => boolean | Promise<boolean>): { promise: Promise<T>, dispose: () => void } {
|
|
let listener: (eventArg: any) => void;
|
|
const promise = new Promise<T>((resolve, reject) => {
|
|
listener = async (eventArg: any) => {
|
|
try {
|
|
if (predicate && !(await predicate(eventArg)))
|
|
return;
|
|
emitter.removeListener(event, listener);
|
|
resolve(eventArg);
|
|
} catch (e) {
|
|
emitter.removeListener(event, listener);
|
|
reject(e);
|
|
}
|
|
};
|
|
emitter.addListener(event, listener);
|
|
});
|
|
const dispose = () => emitter.removeListener(event, listener);
|
|
return { promise, dispose };
|
|
}
|
|
|
|
function waitForTimeout(timeout: number): { promise: Promise<void>, dispose: () => void } {
|
|
let timeoutId: any;
|
|
const promise = new Promise<void>(resolve => timeoutId = setTimeout(resolve, timeout));
|
|
const dispose = () => clearTimeout(timeoutId);
|
|
return { promise, dispose };
|
|
}
|
|
|
|
const kLoggingNote = `\nNote: use DEBUG=pw:api environment variable to capture Playwright logs.`;
|
|
|
|
function formatLogRecording(log: string[]): string {
|
|
if (!log.length)
|
|
return '';
|
|
const header = ` logs `;
|
|
const headerLength = 60;
|
|
const leftLength = (headerLength - header.length) / 2;
|
|
const rightLength = headerLength - header.length - leftLength;
|
|
return `\n${'='.repeat(leftLength)}${header}${'='.repeat(rightLength)}\n${log.join('\n')}\n${'='.repeat(headerLength)}`;
|
|
}
|