mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
98 lines
3.4 KiB
TypeScript
98 lines
3.4 KiB
TypeScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
import * as folio from 'folio';
|
|
import * as path from 'path';
|
|
import { PlaywrightOptions, playwrightFixtures } from './browserTest';
|
|
import { test as pageTest } from '../page/pageTest';
|
|
import { BrowserName, CommonOptions } from './baseTest';
|
|
|
|
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;
|
|
};
|
|
|
|
const pageFixtures = {
|
|
...playwrightFixtures,
|
|
browserMajorVersion: async ({ browserVersion }, run) => {
|
|
await run(Number(browserVersion.split('.')[0]));
|
|
},
|
|
isAndroid: false,
|
|
isElectron: false,
|
|
};
|
|
|
|
const mode = (folio.registerCLIOption('mode', 'Transport mode: default, driver or service').value || 'default') as ('default' | 'driver' | 'service');
|
|
const headed = 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 as any;
|
|
const video = !!folio.registerCLIOption('video', 'Record videos for all tests', { type: 'boolean' }).value;
|
|
|
|
const outputDir = path.join(__dirname, '..', '..', 'test-results');
|
|
const testDir = path.join(__dirname, '..');
|
|
const config: folio.Config<CommonOptions & PlaywrightOptions> = {
|
|
testDir,
|
|
snapshotDir: '__snapshots__',
|
|
outputDir,
|
|
timeout: video || process.env.PWTRACE ? 60000 : 30000,
|
|
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: [],
|
|
};
|
|
|
|
const browserNames = ['chromium', 'webkit', 'firefox'] as BrowserName[];
|
|
for (const browserName of browserNames) {
|
|
const executablePath = getExecutablePath(browserName);
|
|
if (executablePath && !process.env.FOLIO_WORKER_INDEX)
|
|
console.error(`Using executable at ${executablePath}`);
|
|
const testIgnore: RegExp[] = browserNames.filter(b => b !== browserName).map(b => new RegExp(b));
|
|
testIgnore.push(/android/, /electron/);
|
|
config.projects.push({
|
|
name: browserName,
|
|
testDir,
|
|
testIgnore,
|
|
use: {
|
|
mode,
|
|
browserName,
|
|
headless: !headed,
|
|
channel,
|
|
video,
|
|
executablePath,
|
|
traceDir: process.env.PWTRACE ? path.join(outputDir, 'trace') : undefined,
|
|
coverageName: browserName,
|
|
},
|
|
define: { test: pageTest, fixtures: pageFixtures },
|
|
metadata: {
|
|
platform: process.platform,
|
|
headful: !!headed,
|
|
browserName,
|
|
channel,
|
|
mode,
|
|
video: !!video,
|
|
},
|
|
});
|
|
}
|
|
|
|
export default config;
|