mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
197 lines
8.9 KiB
TypeScript
197 lines
8.9 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.
|
|
*/
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
import * as commander from 'commander';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import type { Config } from './types';
|
|
import { Runner, builtInReporters, BuiltInReporter } from './runner';
|
|
import { stopProfiling, startProfiling } from './profiler';
|
|
import { FilePatternFilter } from './util';
|
|
|
|
const defaultTimeout = 30000;
|
|
const defaultReporter: BuiltInReporter = process.env.CI ? 'dot' : 'list';
|
|
const tsConfig = 'playwright.config.ts';
|
|
const jsConfig = 'playwright.config.js';
|
|
const mjsConfig = 'playwright.config.mjs';
|
|
const defaultConfig: Config = {
|
|
preserveOutput: 'always',
|
|
reporter: [ [defaultReporter] ],
|
|
reportSlowTests: { max: 5, threshold: 15000 },
|
|
timeout: defaultTimeout,
|
|
updateSnapshots: 'missing',
|
|
workers: Math.ceil(require('os').cpus().length / 2),
|
|
};
|
|
|
|
export function addTestCommand(program: commander.CommanderStatic) {
|
|
const command = program.command('test [test-filter...]');
|
|
command.description('Run tests with Playwright Test');
|
|
command.option('--browser <browser>', `Browser to use for tests, one of "all", "chromium", "firefox" or "webkit" (default: "chromium")`);
|
|
command.option('--headed', `Run tests in headed browsers (default: headless)`);
|
|
command.option('-c, --config <file>', `Configuration file, or a test directory with optional "${tsConfig}"/"${jsConfig}"`);
|
|
command.option('--forbid-only', `Fail if test.only is called (default: false)`);
|
|
command.option('-g, --grep <grep>', `Only run tests matching this regular expression (default: ".*")`);
|
|
command.option('-gv, --grep-invert <grep>', `Only run tests that do not match this regular expression`);
|
|
command.option('--global-timeout <timeout>', `Maximum time this test suite can run in milliseconds (default: unlimited)`);
|
|
command.option('-j, --workers <workers>', `Number of concurrent workers, use 1 to run in a single worker (default: number of CPU cores / 2)`);
|
|
command.option('--list', `Collect all the tests and report them, but do not run`);
|
|
command.option('--max-failures <N>', `Stop after the first N failures`);
|
|
command.option('--output <dir>', `Folder for output artifacts (default: "test-results")`);
|
|
command.option('--quiet', `Suppress stdio`);
|
|
command.option('--repeat-each <N>', `Run each test N times (default: 1)`);
|
|
command.option('--reporter <reporter>', `Reporter to use, comma-separated, can be ${builtInReporters.map(name => `"${name}"`).join(', ')} (default: "${defaultReporter}")`);
|
|
command.option('--retries <retries>', `Maximum retry count for flaky tests, zero for no retries (default: no retries)`);
|
|
command.option('--shard <shard>', `Shard tests and execute only the selected shard, specify in the form "current/all", 1-based, for example "3/5"`);
|
|
command.option('--project <project-name...>', `Only run tests from the specified list of projects (default: run all projects)`);
|
|
command.option('--timeout <timeout>', `Specify test timeout threshold in milliseconds, zero for unlimited (default: ${defaultTimeout})`);
|
|
command.option('-u, --update-snapshots', `Update snapshots with actual results (default: only create missing snapshots)`);
|
|
command.option('-x', `Stop after the first failure`);
|
|
command.action(async (args, opts) => {
|
|
try {
|
|
await runTests(args, opts);
|
|
} catch (e) {
|
|
console.error(e);
|
|
process.exit(1);
|
|
}
|
|
});
|
|
command.on('--help', () => {
|
|
console.log('');
|
|
console.log('Arguments [test-filter...]:');
|
|
console.log(' Pass arguments to filter test files. Each argument is treated as a regular expression.');
|
|
console.log('');
|
|
console.log('Examples:');
|
|
console.log(' $ test my.spec.ts');
|
|
console.log(' $ test --headed');
|
|
console.log(' $ test --browser=webkit');
|
|
});
|
|
}
|
|
|
|
async function runTests(args: string[], opts: { [key: string]: any }) {
|
|
await startProfiling();
|
|
|
|
if (opts.browser) {
|
|
const browserOpt = opts.browser.toLowerCase();
|
|
if (!['all', 'chromium', 'firefox', 'webkit'].includes(browserOpt))
|
|
throw new Error(`Unsupported browser "${opts.browser}", must be one of "all", "chromium", "firefox" or "webkit"`);
|
|
const browserNames = browserOpt === 'all' ? ['chromium', 'firefox', 'webkit'] : [browserOpt];
|
|
defaultConfig.projects = browserNames.map(browserName => {
|
|
return {
|
|
name: browserName,
|
|
use: { browserName },
|
|
};
|
|
});
|
|
}
|
|
|
|
const overrides = overridesFromOptions(opts);
|
|
if (opts.headed)
|
|
overrides.use = { headless: false };
|
|
const runner = new Runner(defaultConfig, overrides);
|
|
|
|
async function loadConfig(configFile: string) {
|
|
if (fs.existsSync(configFile)) {
|
|
if (process.stdout.isTTY)
|
|
console.log(`Using config at ` + configFile);
|
|
const loadedConfig = await runner.loadConfigFile(configFile);
|
|
if (('projects' in loadedConfig) && opts.browser)
|
|
throw new Error(`Cannot use --browser option when configuration file defines projects. Specify browserName in the projects instead.`);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
async function loadConfigFromDirectory(directory: string) {
|
|
const configNames = [tsConfig, jsConfig, mjsConfig];
|
|
for (const configName of configNames) {
|
|
if (await loadConfig(path.resolve(directory, configName)))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (opts.config) {
|
|
const configFile = path.resolve(process.cwd(), opts.config);
|
|
if (!fs.existsSync(configFile))
|
|
throw new Error(`${opts.config} does not exist`);
|
|
if (fs.statSync(configFile).isDirectory()) {
|
|
// When passed a directory, look for a config file inside.
|
|
if (!await loadConfigFromDirectory(configFile)) {
|
|
// If there is no config, assume this as a root testing directory.
|
|
runner.loadEmptyConfig(configFile);
|
|
}
|
|
} else {
|
|
// When passed a file, it must be a config file.
|
|
await loadConfig(configFile);
|
|
}
|
|
} else if (!await loadConfigFromDirectory(process.cwd())) {
|
|
// No --config option, let's look for the config file in the current directory.
|
|
// If not, scan the world.
|
|
runner.loadEmptyConfig(process.cwd());
|
|
}
|
|
|
|
const filePatternFilters: FilePatternFilter[] = args.map(arg => {
|
|
const match = /^(.*):(\d+)$/.exec(arg);
|
|
return {
|
|
re: forceRegExp(match ? match[1] : arg),
|
|
line: match ? parseInt(match[2], 10) : null,
|
|
};
|
|
});
|
|
const result = await runner.run(!!opts.list, filePatternFilters, opts.project || undefined);
|
|
await stopProfiling(undefined);
|
|
|
|
if (result === 'sigint')
|
|
process.exit(130);
|
|
process.exit(result === 'passed' ? 0 : 1);
|
|
}
|
|
|
|
function forceRegExp(pattern: string): RegExp {
|
|
const match = pattern.match(/^\/(.*)\/([gi]*)$/);
|
|
if (match)
|
|
return new RegExp(match[1], match[2]);
|
|
return new RegExp(pattern, 'gi');
|
|
}
|
|
|
|
function overridesFromOptions(options: { [key: string]: any }): Config {
|
|
const isDebuggerAttached = !!require('inspector').url();
|
|
const shardPair = options.shard ? options.shard.split('/').map((t: string) => parseInt(t, 10)) : undefined;
|
|
return {
|
|
forbidOnly: options.forbidOnly ? true : undefined,
|
|
globalTimeout: isDebuggerAttached ? 0 : (options.globalTimeout ? parseInt(options.globalTimeout, 10) : undefined),
|
|
grep: options.grep ? forceRegExp(options.grep) : undefined,
|
|
grepInvert: options.grepInvert ? forceRegExp(options.grepInvert) : undefined,
|
|
maxFailures: options.x ? 1 : (options.maxFailures ? parseInt(options.maxFailures, 10) : undefined),
|
|
outputDir: options.output ? path.resolve(process.cwd(), options.output) : undefined,
|
|
quiet: options.quiet ? options.quiet : undefined,
|
|
repeatEach: options.repeatEach ? parseInt(options.repeatEach, 10) : undefined,
|
|
retries: options.retries ? parseInt(options.retries, 10) : undefined,
|
|
reporter: (options.reporter && options.reporter.length) ? options.reporter.split(',').map((r: string) => [resolveReporter(r)]) : undefined,
|
|
shard: shardPair ? { current: shardPair[0], total: shardPair[1] } : undefined,
|
|
timeout: isDebuggerAttached ? 0 : (options.timeout ? parseInt(options.timeout, 10) : undefined),
|
|
updateSnapshots: options.updateSnapshots ? 'all' as const : undefined,
|
|
workers: options.workers ? parseInt(options.workers, 10) : undefined,
|
|
};
|
|
}
|
|
|
|
function resolveReporter(id: string) {
|
|
if (builtInReporters.includes(id as any))
|
|
return id;
|
|
const localPath = path.resolve(process.cwd(), id);
|
|
if (fs.existsSync(localPath))
|
|
return localPath;
|
|
return require.resolve(id, { paths: [ process.cwd() ] });
|
|
}
|