2020-07-30 10:22:28 -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-08-24 14:48:03 -07:00
|
|
|
import { DispatcherConnection } from './dispatchers/dispatcher';
|
2020-12-22 14:54:13 -08:00
|
|
|
import { Playwright as PlaywrightImpl } from './server/playwright';
|
2020-08-24 14:48:03 -07:00
|
|
|
import type { Playwright as PlaywrightAPI } from './client/playwright';
|
|
|
|
import { PlaywrightDispatcher } from './dispatchers/playwrightDispatcher';
|
|
|
|
import { Connection } from './client/connection';
|
2020-08-13 13:24:49 -07:00
|
|
|
import { BrowserServerLauncherImpl } from './browserServerImpl';
|
2021-01-24 19:21:19 -08:00
|
|
|
import { installInspectorController } from './server/supplements/inspectorController';
|
2020-09-18 11:54:00 -07:00
|
|
|
import { installTracer } from './trace/tracer';
|
2020-10-26 14:32:07 -07:00
|
|
|
import { installHarTracer } from './trace/harTracer';
|
2020-12-22 14:54:13 -08:00
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
function setupInProcess(): PlaywrightAPI {
|
2021-01-05 14:04:47 -08:00
|
|
|
const playwright = new PlaywrightImpl(path.join(__dirname, '..'), require('../browsers.json')['browsers']);
|
2020-07-30 10:22:28 -07:00
|
|
|
|
2021-01-24 08:44:11 -08:00
|
|
|
installInspectorController();
|
2020-09-18 11:54:00 -07:00
|
|
|
installTracer();
|
2020-10-26 14:32:07 -07:00
|
|
|
installHarTracer();
|
2020-09-04 16:31:52 -07:00
|
|
|
|
2020-07-30 10:22:28 -07:00
|
|
|
const clientConnection = new Connection();
|
|
|
|
const dispatcherConnection = new DispatcherConnection();
|
|
|
|
|
|
|
|
// Dispatch synchronously at first.
|
|
|
|
dispatcherConnection.onmessage = message => clientConnection.dispatch(message);
|
|
|
|
clientConnection.onmessage = message => dispatcherConnection.dispatch(message);
|
|
|
|
|
|
|
|
// Initialize Playwright channel.
|
|
|
|
new PlaywrightDispatcher(dispatcherConnection.rootDispatcher(), playwright);
|
2020-08-13 13:24:49 -07:00
|
|
|
const playwrightAPI = clientConnection.getObjectWithKnownName('Playwright') as PlaywrightAPI;
|
|
|
|
playwrightAPI.chromium._serverLauncher = new BrowserServerLauncherImpl(playwright.chromium);
|
|
|
|
playwrightAPI.firefox._serverLauncher = new BrowserServerLauncherImpl(playwright.firefox);
|
|
|
|
playwrightAPI.webkit._serverLauncher = new BrowserServerLauncherImpl(playwright.webkit);
|
2020-07-30 10:22:28 -07:00
|
|
|
|
|
|
|
// Switch to async dispatch after we got Playwright object.
|
|
|
|
dispatcherConnection.onmessage = message => setImmediate(() => clientConnection.dispatch(message));
|
|
|
|
clientConnection.onmessage = message => setImmediate(() => dispatcherConnection.dispatch(message));
|
|
|
|
|
2020-09-06 21:36:22 -07:00
|
|
|
(playwrightAPI as any)._toImpl = (x: any) => dispatcherConnection._dispatchers.get(x._guid)!._object;
|
2020-07-30 10:22:28 -07:00
|
|
|
return playwrightAPI;
|
|
|
|
}
|
2020-12-22 14:54:13 -08:00
|
|
|
|
|
|
|
module.exports = setupInProcess();
|