2020-11-21 00:19:39 +01:00
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-02-11 15:36:15 +01:00
|
|
|
import WebSocket from 'ws';
|
2020-11-21 00:19:39 +01:00
|
|
|
import { Connection } from '../client/connection';
|
|
|
|
|
import { Playwright } from '../client/playwright';
|
2021-09-29 01:54:10 +02:00
|
|
|
import { makeWaitForNextTask } from '../utils/utils';
|
2020-11-21 00:19:39 +01:00
|
|
|
|
2021-06-02 23:35:17 +02:00
|
|
|
export type PlaywrightClientConnectOptions = {
|
|
|
|
|
wsEndpoint: string;
|
2022-01-24 21:41:27 +01:00
|
|
|
timeout?: number;
|
|
|
|
|
followRedirects?: boolean;
|
2021-06-02 23:35:17 +02:00
|
|
|
};
|
|
|
|
|
|
2020-11-21 00:19:39 +01:00
|
|
|
export class PlaywrightClient {
|
|
|
|
|
private _playwright: Playwright;
|
|
|
|
|
private _ws: WebSocket;
|
|
|
|
|
private _closePromise: Promise<void>;
|
|
|
|
|
|
2021-06-02 23:35:17 +02:00
|
|
|
static async connect(options: PlaywrightClientConnectOptions): Promise<PlaywrightClient> {
|
2022-01-24 21:41:27 +01:00
|
|
|
const { wsEndpoint, timeout = 30000, followRedirects = true } = options;
|
2020-11-21 00:19:39 +01:00
|
|
|
const connection = new Connection();
|
2021-10-14 19:41:03 +02:00
|
|
|
connection.markAsRemote();
|
2022-01-24 21:41:27 +01:00
|
|
|
const ws = new WebSocket(wsEndpoint, { followRedirects });
|
2021-09-29 01:54:10 +02:00
|
|
|
const waitForNextTask = makeWaitForNextTask();
|
|
|
|
|
connection.onmessage = message => {
|
|
|
|
|
if (ws.readyState === 2 /** CLOSING */ || ws.readyState === 3 /** CLOSED */)
|
|
|
|
|
throw new Error('PlaywrightClient: writing to closed WebSocket connection');
|
|
|
|
|
ws.send(JSON.stringify(message));
|
|
|
|
|
};
|
|
|
|
|
ws.on('message', message => waitForNextTask(() => connection.dispatch(JSON.parse(message.toString()))));
|
2020-11-21 00:19:39 +01:00
|
|
|
const errorPromise = new Promise((_, reject) => ws.on('error', error => reject(error)));
|
|
|
|
|
const closePromise = new Promise((_, reject) => ws.on('close', () => reject(new Error('Connection closed'))));
|
2021-08-19 17:31:14 +02:00
|
|
|
const playwrightClientPromise = new Promise<PlaywrightClient>((resolve, reject) => {
|
2021-09-29 01:54:10 +02:00
|
|
|
let playwright: Playwright;
|
2021-08-19 17:31:14 +02:00
|
|
|
ws.on('open', async () => {
|
2021-09-29 01:54:10 +02:00
|
|
|
playwright = await connection.initializePlaywright();
|
2021-08-19 17:31:14 +02:00
|
|
|
resolve(new PlaywrightClient(playwright, ws));
|
|
|
|
|
});
|
2021-10-15 05:58:09 +02:00
|
|
|
ws.on('close', (code, reason) => connection.close(reason));
|
2021-06-02 23:35:17 +02:00
|
|
|
});
|
|
|
|
|
let timer: NodeJS.Timeout;
|
|
|
|
|
try {
|
|
|
|
|
await Promise.race([
|
|
|
|
|
playwrightClientPromise,
|
|
|
|
|
errorPromise,
|
|
|
|
|
closePromise,
|
2021-08-04 19:45:33 +02:00
|
|
|
new Promise((_, reject) => timer = setTimeout(() => reject(`Timeout of ${timeout}ms exceeded while connecting.`), timeout))
|
2021-06-02 23:35:17 +02:00
|
|
|
]);
|
|
|
|
|
return await playwrightClientPromise;
|
|
|
|
|
} finally {
|
|
|
|
|
clearTimeout(timer!);
|
|
|
|
|
}
|
2020-11-21 00:19:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
constructor(playwright: Playwright, ws: WebSocket) {
|
|
|
|
|
this._playwright = playwright;
|
|
|
|
|
this._ws = ws;
|
|
|
|
|
this._closePromise = new Promise(f => ws.on('close', f));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
playwright(): Playwright {
|
|
|
|
|
return this._playwright;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async close() {
|
|
|
|
|
this._ws.close();
|
|
|
|
|
await this._closePromise;
|
|
|
|
|
}
|
|
|
|
|
}
|