2021-04-02 02:35:26 +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-04-07 02:09:54 +03:00
|
|
|
import * as folio from 'folio';
|
2021-04-02 02:35:26 +03:00
|
|
|
import * as path from 'path';
|
2021-05-08 01:25:55 +03:00
|
|
|
import { PlaywrightEnvOptions } from './browserTest';
|
2021-05-06 17:08:22 +03:00
|
|
|
import { test as pageTest } from '../page/pageTest';
|
2021-05-08 01:25:55 +03:00
|
|
|
import { BrowserName, CommonArgs, CommonOptions } from './baseTest';
|
2021-04-29 21:11:32 +03:00
|
|
|
import type { Browser, BrowserContext } from '../../index';
|
2021-04-02 02:35:26 +03:00
|
|
|
|
|
|
|
const getExecutablePath = (browserName: BrowserName) => {
|
|
|
|
if (browserName === 'chromium' && process.env.CRPATH)
|
|
|
|
return process.env.CRPATH;
|
|
|
|
if (browserName === 'firefox' && process.env.FFPATH)
|
|
|
|
return process.env.FFPATH;
|
|
|
|
if (browserName === 'webkit' && process.env.WKPATH)
|
|
|
|
return process.env.WKPATH;
|
|
|
|
};
|
|
|
|
|
2021-05-08 01:25:55 +03:00
|
|
|
type AllOptions = PlaywrightEnvOptions & CommonOptions;
|
2021-04-29 21:11:32 +03:00
|
|
|
|
|
|
|
class PageEnv {
|
|
|
|
private _browser: Browser
|
|
|
|
private _browserVersion: string;
|
2021-04-30 20:19:37 +03:00
|
|
|
private _browserMajorVersion: number;
|
2021-04-29 21:11:32 +03:00
|
|
|
private _context: BrowserContext | undefined;
|
|
|
|
|
2021-04-30 23:26:13 +03:00
|
|
|
async beforeAll(args: AllOptions & CommonArgs, workerInfo: folio.WorkerInfo) {
|
2021-04-29 21:11:32 +03:00
|
|
|
this._browser = await args.playwright[args.browserName].launch({
|
|
|
|
...args.launchOptions,
|
2021-05-12 22:21:54 +03:00
|
|
|
traceDir: args.traceDir,
|
2021-04-30 23:26:13 +03:00
|
|
|
channel: args.browserChannel,
|
2021-04-29 21:11:32 +03:00
|
|
|
headless: !args.headful,
|
|
|
|
handleSIGINT: false,
|
|
|
|
} as any);
|
|
|
|
this._browserVersion = this._browser.version();
|
2021-04-30 20:19:37 +03:00
|
|
|
this._browserMajorVersion = Number(this._browserVersion.split('.')[0]);
|
2021-04-29 21:11:32 +03:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-04-30 23:26:13 +03:00
|
|
|
async beforeEach(args: CommonArgs, testInfo: folio.TestInfo) {
|
2021-04-29 21:11:32 +03:00
|
|
|
testInfo.data.browserVersion = this._browserVersion;
|
|
|
|
this._context = await this._browser.newContext({
|
|
|
|
recordVideo: args.video ? { dir: testInfo.outputPath('') } : undefined,
|
|
|
|
});
|
|
|
|
const page = await this._context.newPage();
|
2021-04-30 23:26:13 +03:00
|
|
|
return {
|
|
|
|
context: this._context,
|
|
|
|
page,
|
|
|
|
browserVersion: this._browserVersion,
|
|
|
|
browserMajorVersion: this._browserMajorVersion,
|
|
|
|
isAndroid: false,
|
|
|
|
isElectron: false,
|
|
|
|
};
|
2021-04-29 21:11:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async afterEach({}) {
|
|
|
|
if (this._context)
|
|
|
|
await this._context.close();
|
|
|
|
this._context = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
async afterAll({}, workerInfo: folio.WorkerInfo) {
|
|
|
|
await this._browser.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-11 16:40:06 +03:00
|
|
|
const mode = folio.registerCLIOption('mode', 'Transport mode: default, driver or service').value as ('default' | 'driver' | 'service' | undefined);
|
|
|
|
const headful = folio.registerCLIOption('headed', 'Run tests in headed mode (default: headless)', { type: 'boolean' }).value || !!process.env.HEADFUL;
|
|
|
|
const channel = folio.registerCLIOption('channel', 'Browser channel (default: no channel)').value;
|
|
|
|
const video = !!folio.registerCLIOption('video', 'Record videos for all tests', { type: 'boolean' }).value;
|
|
|
|
|
2021-05-08 01:25:55 +03:00
|
|
|
const outputDir = path.join(__dirname, '..', '..', 'test-results');
|
|
|
|
const testDir = path.join(__dirname, '..');
|
|
|
|
const config: folio.Config<AllOptions> = {
|
|
|
|
testDir,
|
2021-05-11 16:40:06 +03:00
|
|
|
snapshotDir: '__snapshots__',
|
2021-05-08 01:25:55 +03:00
|
|
|
outputDir,
|
2021-05-11 16:40:06 +03:00
|
|
|
timeout: video || process.env.PWTRACE ? 60000 : 30000,
|
2021-05-08 01:25:55 +03:00
|
|
|
globalTimeout: 5400000,
|
|
|
|
workers: process.env.CI ? 1 : undefined,
|
|
|
|
forbidOnly: !!process.env.CI,
|
|
|
|
retries: process.env.CI ? 3 : 0,
|
|
|
|
reporter: process.env.CI ? [
|
|
|
|
'dot',
|
|
|
|
{ name: 'json', outputFile: path.join(outputDir, 'report.json') },
|
|
|
|
] : 'line',
|
|
|
|
projects: [],
|
|
|
|
};
|
|
|
|
|
2021-05-09 03:45:04 +03:00
|
|
|
const browserNames = ['chromium', 'webkit', 'firefox'] as BrowserName[];
|
|
|
|
for (const browserName of browserNames) {
|
2021-04-02 02:35:26 +03:00
|
|
|
const executablePath = getExecutablePath(browserName);
|
2021-05-11 16:40:06 +03:00
|
|
|
if (executablePath && !process.env.FOLIO_WORKER_INDEX)
|
2021-04-05 19:19:39 +03:00
|
|
|
console.error(`Using executable at ${executablePath}`);
|
2021-05-09 03:45:04 +03:00
|
|
|
const testIgnore: RegExp[] = browserNames.filter(b => b !== browserName).map(b => new RegExp(b));
|
|
|
|
testIgnore.push(/android/, /electron/);
|
2021-05-08 01:25:55 +03:00
|
|
|
config.projects.push({
|
|
|
|
name: browserName,
|
|
|
|
testDir,
|
2021-05-09 03:45:04 +03:00
|
|
|
testIgnore,
|
2021-04-29 21:11:32 +03:00
|
|
|
options: {
|
2021-05-11 16:40:06 +03:00
|
|
|
mode,
|
2021-04-30 23:26:13 +03:00
|
|
|
browserName,
|
2021-05-11 16:40:06 +03:00
|
|
|
headful,
|
|
|
|
channel,
|
|
|
|
video,
|
2021-05-08 01:25:55 +03:00
|
|
|
traceDir: process.env.PWTRACE ? path.join(outputDir, 'trace') : undefined,
|
2021-04-29 21:11:32 +03:00
|
|
|
launchOptions: {
|
|
|
|
executablePath,
|
|
|
|
},
|
|
|
|
coverageName: browserName,
|
|
|
|
},
|
2021-05-08 01:25:55 +03:00
|
|
|
define: { test: pageTest, env: new PageEnv() },
|
|
|
|
});
|
2021-04-02 02:35:26 +03:00
|
|
|
}
|
2021-05-08 01:25:55 +03:00
|
|
|
|
|
|
|
export default config;
|