2020-09-29 22:48:24 +02: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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-12-29 00:44:24 +01:00
|
|
|
/* eslint-disable no-console */
|
2020-09-29 22:48:24 +02:00
|
|
|
|
2021-02-11 15:36:15 +01:00
|
|
|
import fs from 'fs';
|
2021-03-04 19:32:06 +01:00
|
|
|
import * as playwright from '../..';
|
2022-04-06 23:57:14 +02:00
|
|
|
import type { BrowserType } from '../client/browserType';
|
|
|
|
|
import type { LaunchServerOptions } from '../client/types';
|
2022-08-25 20:58:41 +02:00
|
|
|
import { createPlaywright, DispatcherConnection, RootDispatcher, PlaywrightDispatcher } from '../server';
|
2022-09-16 00:53:18 +02:00
|
|
|
import type { Playwright } from '../server/playwright';
|
2022-02-03 06:26:45 +01:00
|
|
|
import { IpcTransport, PipeTransport } from '../protocol/transport';
|
2021-08-20 00:16:46 +02:00
|
|
|
import { PlaywrightServer } from '../remote/playwrightServer';
|
2021-07-07 21:14:16 +02:00
|
|
|
import { gracefullyCloseAll } from '../utils/processLauncher';
|
2022-08-09 02:16:13 +02:00
|
|
|
import type { Mode } from '../server/recorder/recorderTypes';
|
2022-09-16 00:53:18 +02:00
|
|
|
import { ReuseController } from '../server/reuseController';
|
2020-09-29 22:48:24 +02:00
|
|
|
|
2020-12-29 00:44:24 +01:00
|
|
|
export function printApiJson() {
|
2021-06-02 23:01:05 +02:00
|
|
|
// Note: this file is generated by build-playwright-driver.sh
|
2020-12-29 00:44:24 +01:00
|
|
|
console.log(JSON.stringify(require('../../api.json')));
|
2020-09-29 22:48:24 +02:00
|
|
|
}
|
|
|
|
|
|
2021-04-12 20:14:54 +02:00
|
|
|
export function runDriver() {
|
2020-09-29 22:48:24 +02:00
|
|
|
const dispatcherConnection = new DispatcherConnection();
|
2022-08-25 20:58:41 +02:00
|
|
|
new RootDispatcher(dispatcherConnection, async (rootScope, { sdkLanguage }) => {
|
2021-08-20 21:32:21 +02:00
|
|
|
const playwright = createPlaywright(sdkLanguage);
|
2021-08-19 17:31:14 +02:00
|
|
|
return new PlaywrightDispatcher(rootScope, playwright);
|
|
|
|
|
});
|
2022-02-03 06:26:45 +01:00
|
|
|
const transport = process.send ? new IpcTransport(process) : new PipeTransport(process.stdout, process.stdin);
|
2020-12-16 23:21:59 +01:00
|
|
|
transport.onmessage = message => dispatcherConnection.dispatch(JSON.parse(message));
|
|
|
|
|
dispatcherConnection.onmessage = message => transport.send(JSON.stringify(message));
|
2022-08-03 06:09:39 +02:00
|
|
|
transport.onclose = () => {
|
2020-12-16 23:21:59 +01:00
|
|
|
// Drop any messages during shutdown on the floor.
|
|
|
|
|
dispatcherConnection.onmessage = () => {};
|
2022-08-03 06:09:39 +02:00
|
|
|
selfDestruct();
|
2020-09-29 22:48:24 +02:00
|
|
|
};
|
|
|
|
|
}
|
2020-09-30 03:00:56 +02:00
|
|
|
|
2022-07-31 23:31:17 +02:00
|
|
|
export async function runServer(port: number | undefined, path = '/', maxClients = Infinity, enableSocksProxy = true, reuseBrowser = false) {
|
2022-08-04 04:37:06 +02:00
|
|
|
const maxIncomingConnections = maxClients;
|
|
|
|
|
const maxConcurrentConnections = reuseBrowser ? 1 : maxClients;
|
|
|
|
|
const server = new PlaywrightServer(reuseBrowser ? 'reuse-browser' : 'auto', { path, maxIncomingConnections, maxConcurrentConnections, enableSocksProxy });
|
2021-07-19 07:53:12 +02:00
|
|
|
const wsEndpoint = await server.listen(port);
|
|
|
|
|
process.on('exit', () => server.close().catch(console.error));
|
2021-04-12 20:14:54 +02:00
|
|
|
console.log('Listening on ' + wsEndpoint); // eslint-disable-line no-console
|
2022-08-03 06:09:39 +02:00
|
|
|
process.stdin.on('close', () => selfDestruct());
|
2022-09-16 00:53:18 +02:00
|
|
|
if (reuseBrowser && process.send)
|
|
|
|
|
wireController(server.preLaunchedPlaywright(), wsEndpoint);
|
2021-04-12 20:14:54 +02:00
|
|
|
}
|
|
|
|
|
|
2021-03-04 19:32:06 +01:00
|
|
|
export async function launchBrowserServer(browserName: string, configFile?: string) {
|
|
|
|
|
let options: LaunchServerOptions = {};
|
|
|
|
|
if (configFile)
|
|
|
|
|
options = JSON.parse(fs.readFileSync(configFile).toString());
|
|
|
|
|
const browserType = (playwright as any)[browserName] as BrowserType;
|
|
|
|
|
const server = await browserType.launchServer(options);
|
|
|
|
|
console.log(server.wsEndpoint());
|
|
|
|
|
}
|
2022-08-03 06:09:39 +02:00
|
|
|
|
|
|
|
|
function selfDestruct() {
|
|
|
|
|
// Force exit after 30 seconds.
|
|
|
|
|
setTimeout(() => process.exit(0), 30000);
|
|
|
|
|
// Meanwhile, try to gracefully close all browsers.
|
|
|
|
|
gracefullyCloseAll().then(() => {
|
|
|
|
|
process.exit(0);
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-08-06 04:34:57 +02:00
|
|
|
|
2022-08-09 02:16:13 +02:00
|
|
|
class ProtocolHandler {
|
2022-09-16 00:53:18 +02:00
|
|
|
private _controller: ReuseController;
|
2022-08-06 04:34:57 +02:00
|
|
|
|
2022-08-09 02:16:13 +02:00
|
|
|
constructor(playwright: Playwright) {
|
2022-09-16 00:53:18 +02:00
|
|
|
this._controller = playwright.reuseController;
|
|
|
|
|
this._controller.setAutoCloseAllowed(true);
|
|
|
|
|
this._controller.setTrackHierarcy(true);
|
|
|
|
|
this._controller.setReuseBrowser(true);
|
|
|
|
|
this._controller.on(ReuseController.Events.BrowsersChanged, browsers => {
|
|
|
|
|
process.send!({ method: 'browsersChanged', params: { browsers } });
|
|
|
|
|
});
|
|
|
|
|
this._controller.on(ReuseController.Events.InspectRequested, selector => {
|
|
|
|
|
process.send!({ method: 'inspectRequested', params: { selector } });
|
|
|
|
|
});
|
2022-08-09 02:16:13 +02:00
|
|
|
}
|
2022-08-06 04:34:57 +02:00
|
|
|
|
2022-08-10 19:57:28 +02:00
|
|
|
async resetForReuse() {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.resetForReuse();
|
2022-08-10 19:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async navigate(params: { url: string }) {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.navigateAll(params.url);
|
2022-08-10 19:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
2022-08-09 02:16:13 +02:00
|
|
|
async setMode(params: { mode: Mode, language?: string, file?: string }) {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.setRecorderMode(params);
|
2022-08-09 02:16:13 +02:00
|
|
|
}
|
2022-08-06 04:34:57 +02:00
|
|
|
|
2022-08-09 02:16:13 +02:00
|
|
|
async setAutoClose(params: { enabled: boolean }) {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.setAutoCloseEnabled(params.enabled);
|
2022-08-09 02:16:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async highlight(params: { selector: string }) {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.highlightAll(params.selector);
|
2022-08-09 02:16:13 +02:00
|
|
|
}
|
|
|
|
|
|
2022-08-10 01:42:55 +02:00
|
|
|
async hideHighlight() {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.hideHighlightAll();
|
2022-08-10 01:42:55 +02:00
|
|
|
}
|
|
|
|
|
|
2022-08-09 02:16:13 +02:00
|
|
|
async kill() {
|
2022-09-16 00:53:18 +02:00
|
|
|
await this._controller.kill();
|
2022-08-09 02:16:13 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function wireController(playwright: Playwright, wsEndpoint: string) {
|
|
|
|
|
process.send!({ method: 'ready', params: { wsEndpoint } });
|
|
|
|
|
const handler = new ProtocolHandler(playwright);
|
|
|
|
|
process.on('message', async message => {
|
|
|
|
|
try {
|
|
|
|
|
const result = await (handler as any)[message.method](message.params);
|
|
|
|
|
process.send!({ id: message.id, result });
|
2022-08-06 04:34:57 +02:00
|
|
|
} catch (e) {
|
2022-08-09 02:16:13 +02:00
|
|
|
process.send!({ id: message.id, error: e.toString() });
|
2022-08-06 04:34:57 +02:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|