2021-04-29 21:11:32 +03: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-10-11 17:52:17 +03:00
|
|
|
import { Fixtures, _baseTest } from '@playwright/test';
|
2021-04-29 21:11:32 +03:00
|
|
|
import * as path from 'path';
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import { installCoverageHooks } from './coverage';
|
|
|
|
import * as childProcess from 'child_process';
|
2021-10-11 17:52:17 +03:00
|
|
|
import { start } from 'playwright-core/lib/outofprocess';
|
|
|
|
import { PlaywrightClient } from 'playwright-core/lib/remote/playwrightClient';
|
|
|
|
import type { LaunchOptions } from 'playwright-core';
|
2021-10-15 01:48:05 +03:00
|
|
|
import { commonFixtures, CommonFixtures, serverFixtures, ServerFixtures, ServerOptions } from './commonFixtures';
|
2021-04-29 21:11:32 +03:00
|
|
|
|
|
|
|
export type BrowserName = 'chromium' | 'firefox' | 'webkit';
|
|
|
|
type Mode = 'default' | 'driver' | 'service';
|
2021-05-15 17:42:35 +03:00
|
|
|
type BaseOptions = {
|
2021-04-29 21:11:32 +03:00
|
|
|
mode: Mode;
|
2021-05-15 17:42:35 +03:00
|
|
|
browserName: BrowserName;
|
2021-05-17 05:58:26 +03:00
|
|
|
channel: LaunchOptions['channel'];
|
|
|
|
video: boolean | undefined;
|
2021-08-20 05:09:19 +03:00
|
|
|
trace: boolean | undefined;
|
2021-05-17 05:58:26 +03:00
|
|
|
headless: boolean | undefined;
|
2021-05-15 17:42:35 +03:00
|
|
|
};
|
2021-05-17 05:58:26 +03:00
|
|
|
type BaseFixtures = {
|
2021-04-29 21:11:32 +03:00
|
|
|
platform: 'win32' | 'darwin' | 'linux';
|
2021-10-11 17:52:17 +03:00
|
|
|
playwright: typeof import('playwright-core');
|
2021-04-29 21:11:32 +03:00
|
|
|
toImpl: (rpcObject: any) => any;
|
|
|
|
isWindows: boolean;
|
|
|
|
isMac: boolean;
|
|
|
|
isLinux: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DriverMode {
|
|
|
|
private _playwrightObject: any;
|
|
|
|
|
2021-05-17 05:58:26 +03:00
|
|
|
async setup(workerIndex: number) {
|
2021-04-29 21:11:32 +03:00
|
|
|
this._playwrightObject = await start();
|
|
|
|
return this._playwrightObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
async teardown() {
|
|
|
|
await this._playwrightObject.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ServiceMode {
|
2021-10-11 17:52:17 +03:00
|
|
|
private _client: import('playwright-core/src/remote/playwrightClient').PlaywrightClient;
|
2021-04-29 21:11:32 +03:00
|
|
|
private _serviceProcess: childProcess.ChildProcess;
|
|
|
|
|
2021-05-17 05:58:26 +03:00
|
|
|
async setup(workerIndex: number) {
|
|
|
|
const port = 10507 + workerIndex;
|
2021-10-11 17:52:17 +03:00
|
|
|
this._serviceProcess = childProcess.fork(path.join(__dirname, '..', '..', 'packages', 'playwright-core', 'lib', 'cli', 'cli.js'), ['run-server', String(port)], {
|
2021-04-29 21:11:32 +03:00
|
|
|
stdio: 'pipe'
|
|
|
|
});
|
|
|
|
this._serviceProcess.stderr.pipe(process.stderr);
|
|
|
|
await new Promise<void>(f => {
|
|
|
|
this._serviceProcess.stdout.on('data', data => {
|
|
|
|
if (data.toString().includes('Listening on'))
|
|
|
|
f();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this._serviceProcess.on('exit', this._onExit);
|
2021-09-27 19:58:08 +03:00
|
|
|
this._client = await PlaywrightClient.connect({ wsEndpoint: `ws://localhost:${port}/ws` });
|
2021-08-04 20:45:33 +03:00
|
|
|
return this._client.playwright();
|
2021-04-29 21:11:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async teardown() {
|
|
|
|
await this._client.close();
|
|
|
|
this._serviceProcess.removeListener('exit', this._onExit);
|
|
|
|
const processExited = new Promise(f => this._serviceProcess.on('exit', f));
|
|
|
|
this._serviceProcess.kill();
|
|
|
|
await processExited;
|
|
|
|
}
|
|
|
|
|
2021-08-04 20:45:33 +03:00
|
|
|
private _onExit(exitCode: number, signal: string) {
|
2021-04-29 21:11:32 +03:00
|
|
|
throw new Error(`Server closed with exitCode=${exitCode} signal=${signal}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class DefaultMode {
|
2021-05-17 05:58:26 +03:00
|
|
|
async setup(workerIndex: number) {
|
2021-10-11 17:52:17 +03:00
|
|
|
return require('playwright-core');
|
2021-04-29 21:11:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async teardown() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-07 03:09:53 +03:00
|
|
|
const baseFixtures: Fixtures<{}, BaseOptions & BaseFixtures> = {
|
2021-05-17 05:58:26 +03:00
|
|
|
mode: [ 'default', { scope: 'worker' } ],
|
|
|
|
browserName: [ 'chromium' , { scope: 'worker' } ],
|
|
|
|
channel: [ undefined, { scope: 'worker' } ],
|
|
|
|
video: [ undefined, { scope: 'worker' } ],
|
2021-08-20 05:09:19 +03:00
|
|
|
trace: [ undefined, { scope: 'worker' } ],
|
2021-05-17 05:58:26 +03:00
|
|
|
headless: [ undefined, { scope: 'worker' } ],
|
|
|
|
platform: [ process.platform as 'win32' | 'darwin' | 'linux', { scope: 'worker' } ],
|
|
|
|
playwright: [ async ({ mode }, run, workerInfo) => {
|
|
|
|
const modeImpl = {
|
2021-04-29 21:11:32 +03:00
|
|
|
default: new DefaultMode(),
|
|
|
|
service: new ServiceMode(),
|
|
|
|
driver: new DriverMode(),
|
2021-05-17 05:58:26 +03:00
|
|
|
}[mode];
|
2021-10-11 17:52:17 +03:00
|
|
|
require('playwright-core/lib/utils/utils').setUnderTest();
|
2021-05-17 05:58:26 +03:00
|
|
|
const playwright = await modeImpl.setup(workerInfo.workerIndex);
|
|
|
|
await run(playwright);
|
|
|
|
await modeImpl.teardown();
|
|
|
|
}, { scope: 'worker' } ],
|
|
|
|
toImpl: [ async ({ playwright }, run) => run((playwright as any)._toImpl), { scope: 'worker' } ],
|
|
|
|
isWindows: [ process.platform === 'win32', { scope: 'worker' } ],
|
|
|
|
isMac: [ process.platform === 'darwin', { scope: 'worker' } ],
|
|
|
|
isLinux: [ process.platform === 'linux', { scope: 'worker' } ],
|
2021-04-29 21:11:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
type CoverageOptions = {
|
|
|
|
coverageName?: string;
|
|
|
|
};
|
|
|
|
|
2021-06-07 03:09:53 +03:00
|
|
|
const coverageFixtures: Fixtures<{}, CoverageOptions & { __collectCoverage: void }> = {
|
2021-05-17 05:58:26 +03:00
|
|
|
coverageName: [ undefined, { scope: 'worker' } ],
|
2021-04-29 21:11:32 +03:00
|
|
|
|
2021-05-17 05:58:26 +03:00
|
|
|
__collectCoverage: [ async ({ coverageName }, run, workerInfo) => {
|
|
|
|
if (!coverageName) {
|
|
|
|
await run();
|
2021-04-29 21:11:32 +03:00
|
|
|
return;
|
2021-05-17 05:58:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const { coverage, uninstall } = installCoverageHooks(coverageName);
|
|
|
|
await run();
|
2021-04-29 21:11:32 +03:00
|
|
|
uninstall();
|
|
|
|
const coveragePath = path.join(__dirname, '..', 'coverage-report', workerInfo.workerIndex + '.json');
|
|
|
|
const coverageJSON = Array.from(coverage.keys()).filter(key => coverage.get(key));
|
|
|
|
await fs.promises.mkdir(path.dirname(coveragePath), { recursive: true });
|
|
|
|
await fs.promises.writeFile(coveragePath, JSON.stringify(coverageJSON, undefined, 2), 'utf8');
|
2021-05-17 05:58:26 +03:00
|
|
|
}, { scope: 'worker', auto: true } ],
|
|
|
|
};
|
2021-04-29 21:11:32 +03:00
|
|
|
|
2021-05-08 01:25:55 +03:00
|
|
|
export type CommonOptions = BaseOptions & ServerOptions & CoverageOptions;
|
2021-05-17 05:58:26 +03:00
|
|
|
export type CommonWorkerFixtures = CommonOptions & BaseFixtures;
|
2021-04-29 21:11:32 +03:00
|
|
|
|
2021-09-22 02:24:48 +03:00
|
|
|
export const baseTest = _baseTest.extend<CommonFixtures>(commonFixtures).extend<{}, CoverageOptions>(coverageFixtures).extend<ServerFixtures>(serverFixtures as any).extend<{}, BaseOptions & BaseFixtures>(baseFixtures);
|