2020-09-29 13:48:24 -07: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-28 15:44:24 -08:00
|
|
|
/* eslint-disable no-console */
|
2020-09-29 13:48:24 -07:00
|
|
|
|
2021-02-11 06:36:15 -08:00
|
|
|
import fs from 'fs';
|
2021-03-04 10:32:06 -08:00
|
|
|
import * as playwright from '../..';
|
2022-04-06 13:57:14 -08:00
|
|
|
import type { BrowserType } from '../client/browserType';
|
|
|
|
import type { LaunchServerOptions } from '../client/types';
|
2022-08-25 11:58:41 -07:00
|
|
|
import { createPlaywright, DispatcherConnection, RootDispatcher, PlaywrightDispatcher } from '../server';
|
2023-05-17 01:44:17 +02:00
|
|
|
import { PipeTransport } from '../protocol/transport';
|
2021-08-19 15:16:46 -07:00
|
|
|
import { PlaywrightServer } from '../remote/playwrightServer';
|
2023-07-24 08:29:29 -07:00
|
|
|
import { gracefullyProcessExitDoNotHang } from '../utils/processLauncher';
|
2020-09-29 13:48:24 -07:00
|
|
|
|
2020-12-28 15:44:24 -08:00
|
|
|
export function printApiJson() {
|
2021-06-02 14:01:05 -07:00
|
|
|
// Note: this file is generated by build-playwright-driver.sh
|
2020-12-28 15:44:24 -08:00
|
|
|
console.log(JSON.stringify(require('../../api.json')));
|
2020-09-29 13:48:24 -07:00
|
|
|
}
|
|
|
|
|
2021-04-12 11:14:54 -07:00
|
|
|
export function runDriver() {
|
2020-09-29 13:48:24 -07:00
|
|
|
const dispatcherConnection = new DispatcherConnection();
|
2022-08-25 11:58:41 -07:00
|
|
|
new RootDispatcher(dispatcherConnection, async (rootScope, { sdkLanguage }) => {
|
2023-06-01 17:54:43 -07:00
|
|
|
const playwright = createPlaywright({ sdkLanguage });
|
2021-08-19 17:31:14 +02:00
|
|
|
return new PlaywrightDispatcher(rootScope, playwright);
|
|
|
|
});
|
2023-05-17 01:44:17 +02:00
|
|
|
const transport = new PipeTransport(process.stdout, process.stdin);
|
|
|
|
transport.onmessage = (message: string) => dispatcherConnection.dispatch(JSON.parse(message));
|
2020-12-16 14:21:59 -08:00
|
|
|
dispatcherConnection.onmessage = message => transport.send(JSON.stringify(message));
|
2022-08-02 21:09:39 -07:00
|
|
|
transport.onclose = () => {
|
2020-12-16 14:21:59 -08:00
|
|
|
// Drop any messages during shutdown on the floor.
|
|
|
|
dispatcherConnection.onmessage = () => {};
|
2023-07-24 08:29:29 -07:00
|
|
|
gracefullyProcessExitDoNotHang(0);
|
2020-09-29 13:48:24 -07:00
|
|
|
};
|
2023-05-17 01:44:17 +02:00
|
|
|
// Ignore the SIGINT signal in the driver process so the parent can gracefully close the connection.
|
|
|
|
// We still will destruct everything (close browsers and exit) when the transport pipe closes.
|
|
|
|
process.on('SIGINT', () => {
|
|
|
|
// Keep the process running.
|
|
|
|
});
|
2020-09-29 13:48:24 -07:00
|
|
|
}
|
2020-09-29 18:00:56 -07:00
|
|
|
|
2022-11-03 13:47:51 -07:00
|
|
|
export type RunServerOptions = {
|
|
|
|
port?: number,
|
|
|
|
path?: string,
|
2023-05-23 10:56:37 -07:00
|
|
|
extension?: boolean,
|
2022-11-03 13:47:51 -07:00
|
|
|
maxConnections?: number,
|
2022-12-08 14:23:14 -08:00
|
|
|
browserProxyMode?: 'client' | 'tether',
|
2022-11-03 13:47:51 -07:00
|
|
|
ownedByTetherClient?: boolean,
|
|
|
|
};
|
|
|
|
|
|
|
|
export async function runServer(options: RunServerOptions) {
|
|
|
|
const {
|
|
|
|
port,
|
|
|
|
path = '/',
|
|
|
|
maxConnections = Infinity,
|
2023-05-23 10:56:37 -07:00
|
|
|
extension,
|
2022-11-03 13:47:51 -07:00
|
|
|
} = options;
|
2023-05-23 10:56:37 -07:00
|
|
|
const server = new PlaywrightServer({ mode: extension ? 'extension' : 'default', path, maxConnections });
|
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 11:14:54 -07:00
|
|
|
console.log('Listening on ' + wsEndpoint); // eslint-disable-line no-console
|
2023-07-24 08:29:29 -07:00
|
|
|
process.stdin.on('close', () => gracefullyProcessExitDoNotHang(0));
|
2021-04-12 11:14:54 -07:00
|
|
|
}
|
|
|
|
|
2021-03-04 10:32:06 -08: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());
|
|
|
|
}
|