playwright/src/test/util.ts

196 lines
5.6 KiB
TypeScript
Raw Normal View History

/**
* 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 path from 'path';
import util from 'util';
import StackUtils from 'stack-utils';
import type { Location } from './types';
import type { TestError } from './reporter';
import { default as minimatch } from 'minimatch';
const TEST_RUNNER_DIRS = [
path.join('@playwright', 'test', 'lib'),
path.join(__dirname, '..', '..', 'src', 'test'),
];
const cwd = process.cwd();
const stackUtils = new StackUtils({ cwd });
export class DeadlineRunner<T> {
private _timer: NodeJS.Timer | undefined;
private _done = false;
private _fulfill!: (t: { result?: T, timedOut?: boolean }) => void;
private _reject!: (error: any) => void;
readonly result: Promise<{ result?: T, timedOut?: boolean }>;
constructor(promise: Promise<T>, deadline: number | undefined) {
this.result = new Promise((f, r) => {
this._fulfill = f;
this._reject = r;
});
promise.then(result => {
this._finish({ result });
}).catch(e => {
this._finish(undefined, e);
});
this.setDeadline(deadline);
}
private _finish(success?: { result?: T, timedOut?: boolean }, error?: any) {
if (this._done)
return;
this.setDeadline(undefined);
if (success)
this._fulfill(success);
else
this._reject(error);
}
setDeadline(deadline: number | undefined) {
if (this._timer) {
clearTimeout(this._timer);
this._timer = undefined;
}
if (deadline === undefined)
return;
const timeout = deadline - monotonicTime();
if (timeout <= 0)
this._finish({ timedOut: true });
else
this._timer = setTimeout(() => this._finish({ timedOut: true }), timeout);
}
}
export async function raceAgainstDeadline<T>(promise: Promise<T>, deadline: number | undefined): Promise<{ result?: T, timedOut?: boolean }> {
return (new DeadlineRunner(promise, deadline)).result;
}
export function serializeError(error: Error | any): TestError {
if (error instanceof Error) {
return {
message: error.message,
stack: error.stack
};
}
return {
value: util.inspect(error)
};
}
function callFrames(): string[] {
const obj = { stack: '' };
Error.captureStackTrace(obj);
const frames = obj.stack.split('\n').slice(1);
while (frames.length && TEST_RUNNER_DIRS.some(dir => frames[0].includes(dir)))
frames.shift();
return frames;
}
export function callLocation(fallbackFile?: string): Location {
const frames = callFrames();
if (!frames.length)
return {file: fallbackFile || '<unknown>', line: 1, column: 1};
const location = stackUtils.parseLine(frames[0])!;
return {
file: path.resolve(cwd, location.file || ''),
line: location.line || 0,
column: location.column || 0,
};
}
export function errorWithCallLocation(message: string): Error {
const frames = callFrames();
const error = new Error(message);
error.stack = 'Error: ' + message + '\n' + frames.join('\n');
return error;
}
export function monotonicTime(): number {
const [seconds, nanoseconds] = process.hrtime();
return seconds * 1000 + (nanoseconds / 1000000 | 0);
}
export function prependErrorMessage(e: Error, message: string) {
let stack = e.stack || '';
if (stack.includes(e.message))
stack = stack.substring(stack.indexOf(e.message) + e.message.length);
let m = e.message;
if (m.startsWith('Error:'))
m = m.substring('Error:'.length);
e.message = message + m;
e.stack = e.message + stack;
}
export function isRegExp(e: any): e is RegExp {
return e && typeof e === 'object' && (e instanceof RegExp || Object.prototype.toString.call(e) === '[object RegExp]');
}
export type Matcher = (value: string) => boolean;
export function createMatcher(patterns: string | RegExp | (string | RegExp)[]): Matcher {
const reList: RegExp[] = [];
const filePatterns: string[] = [];
for (const pattern of Array.isArray(patterns) ? patterns : [patterns]) {
if (isRegExp(pattern)) {
reList.push(pattern);
} else {
if (!pattern.startsWith('**/') && !pattern.startsWith('**/'))
filePatterns.push('**/' + pattern);
else
filePatterns.push(pattern);
}
}
return (value: string) => {
for (const re of reList) {
re.lastIndex = 0;
if (re.test(value))
return true;
}
for (const pattern of filePatterns) {
if (minimatch(value, pattern))
return true;
}
return false;
};
}
export function mergeObjects<A extends object, B extends object>(a: A | undefined | void, b: B | undefined | void): A & B {
const result = { ...a } as any;
if (!Object.is(b, undefined)) {
for (const [name, value] of Object.entries(b as B)) {
if (!Object.is(value, undefined))
result[name] = value;
}
}
return result as any;
}
export async function wrapInPromise(value: any) {
return value;
}
export function formatLocation(location: Location) {
return location.file + ':' + location.line + ':' + location.column;
}
export function forceRegExp(pattern: string): RegExp {
const match = pattern.match(/^\/(.*)\/([gi]*)$/);
if (match)
return new RegExp(match[1], match[2]);
return new RegExp(pattern, 'g');
}