220 lines
8.3 KiB
JavaScript
220 lines
8.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _utils = require("playwright-core/lib/utils");
|
|
var _utilsBundle = require("playwright-core/lib/utilsBundle");
|
|
var _base = require("./base");
|
|
var _util = require("../util");
|
|
/**
|
|
* 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.
|
|
*/
|
|
|
|
// Allow it in the Visual Studio Code Terminal and the new Windows Terminal
|
|
const DOES_NOT_SUPPORT_UTF8_IN_TERMINAL = process.platform === 'win32' && process.env.TERM_PROGRAM !== 'vscode' && !process.env.WT_SESSION;
|
|
const POSITIVE_STATUS_MARK = DOES_NOT_SUPPORT_UTF8_IN_TERMINAL ? 'ok' : '✓';
|
|
const NEGATIVE_STATUS_MARK = DOES_NOT_SUPPORT_UTF8_IN_TERMINAL ? 'x' : '✘';
|
|
class ListReporter extends _base.TerminalReporter {
|
|
constructor(options = {}) {
|
|
super();
|
|
this._lastRow = 0;
|
|
this._lastColumn = 0;
|
|
this._testRows = new Map();
|
|
this._stepRows = new Map();
|
|
this._resultIndex = new Map();
|
|
this._stepIndex = new Map();
|
|
this._needNewLine = false;
|
|
this._printSteps = void 0;
|
|
this._printSteps = (0, _utils.getAsBooleanFromENV)('PLAYWRIGHT_LIST_PRINT_STEPS', options.printSteps);
|
|
}
|
|
onBegin(suite) {
|
|
super.onBegin(suite);
|
|
const startingMessage = this.generateStartingMessage();
|
|
if (startingMessage) {
|
|
console.log(startingMessage);
|
|
console.log();
|
|
}
|
|
}
|
|
onTestBegin(test, result) {
|
|
const index = String(this._resultIndex.size + 1);
|
|
this._resultIndex.set(result, index);
|
|
if (!this.screen.isTTY) return;
|
|
this._maybeWriteNewLine();
|
|
this._testRows.set(test, this._lastRow);
|
|
const prefix = this._testPrefix(index, '');
|
|
const line = this.screen.colors.dim(this.formatTestTitle(test)) + this._retrySuffix(result);
|
|
this._appendLine(line, prefix);
|
|
}
|
|
onStdOut(chunk, test, result) {
|
|
super.onStdOut(chunk, test, result);
|
|
this._dumpToStdio(test, chunk, process.stdout);
|
|
}
|
|
onStdErr(chunk, test, result) {
|
|
super.onStdErr(chunk, test, result);
|
|
this._dumpToStdio(test, chunk, process.stderr);
|
|
}
|
|
getStepIndex(testIndex, result, step) {
|
|
if (this._stepIndex.has(step)) return this._stepIndex.get(step);
|
|
const ordinal = (result[lastStepOrdinalSymbol] || 0) + 1;
|
|
result[lastStepOrdinalSymbol] = ordinal;
|
|
const stepIndex = `${testIndex}.${ordinal}`;
|
|
this._stepIndex.set(step, stepIndex);
|
|
return stepIndex;
|
|
}
|
|
onStepBegin(test, result, step) {
|
|
if (step.category !== 'test.step') return;
|
|
const testIndex = this._resultIndex.get(result) || '';
|
|
if (!this.screen.isTTY) return;
|
|
if (this._printSteps) {
|
|
this._maybeWriteNewLine();
|
|
this._stepRows.set(step, this._lastRow);
|
|
const prefix = this._testPrefix(this.getStepIndex(testIndex, result, step), '');
|
|
const line = test.title + this.screen.colors.dim((0, _base.stepSuffix)(step));
|
|
this._appendLine(line, prefix);
|
|
} else {
|
|
this._updateLine(this._testRows.get(test), this.screen.colors.dim(this.formatTestTitle(test, step)) + this._retrySuffix(result), this._testPrefix(testIndex, ''));
|
|
}
|
|
}
|
|
onStepEnd(test, result, step) {
|
|
if (step.category !== 'test.step') return;
|
|
const testIndex = this._resultIndex.get(result) || '';
|
|
if (!this._printSteps) {
|
|
if (this.screen.isTTY) this._updateLine(this._testRows.get(test), this.screen.colors.dim(this.formatTestTitle(test, step.parent)) + this._retrySuffix(result), this._testPrefix(testIndex, ''));
|
|
return;
|
|
}
|
|
const index = this.getStepIndex(testIndex, result, step);
|
|
const title = this.screen.isTTY ? test.title + this.screen.colors.dim((0, _base.stepSuffix)(step)) : this.formatTestTitle(test, step);
|
|
const prefix = this._testPrefix(index, '');
|
|
let text = '';
|
|
if (step.error) text = this.screen.colors.red(title);else text = title;
|
|
text += this.screen.colors.dim(` (${(0, _utilsBundle.ms)(step.duration)})`);
|
|
this._updateOrAppendLine(this._stepRows.get(step), text, prefix);
|
|
}
|
|
_maybeWriteNewLine() {
|
|
if (this._needNewLine) {
|
|
this._needNewLine = false;
|
|
process.stdout.write('\n');
|
|
++this._lastRow;
|
|
this._lastColumn = 0;
|
|
}
|
|
}
|
|
_updateLineCountAndNewLineFlagForOutput(text) {
|
|
this._needNewLine = text[text.length - 1] !== '\n';
|
|
if (!this.screen.ttyWidth) return;
|
|
for (const ch of text) {
|
|
if (ch === '\n') {
|
|
this._lastColumn = 0;
|
|
++this._lastRow;
|
|
continue;
|
|
}
|
|
++this._lastColumn;
|
|
if (this._lastColumn > this.screen.ttyWidth) {
|
|
this._lastColumn = 0;
|
|
++this._lastRow;
|
|
}
|
|
}
|
|
}
|
|
_dumpToStdio(test, chunk, stream) {
|
|
if (this.config.quiet) return;
|
|
const text = chunk.toString('utf-8');
|
|
this._updateLineCountAndNewLineFlagForOutput(text);
|
|
stream.write(chunk);
|
|
}
|
|
onTestEnd(test, result) {
|
|
super.onTestEnd(test, result);
|
|
const title = this.formatTestTitle(test);
|
|
let prefix = '';
|
|
let text = '';
|
|
|
|
// In TTY mode test index is incremented in onTestStart
|
|
// and in non-TTY mode it is incremented onTestEnd.
|
|
let index = this._resultIndex.get(result);
|
|
if (!index) {
|
|
index = String(this._resultIndex.size + 1);
|
|
this._resultIndex.set(result, index);
|
|
}
|
|
if (result.status === 'skipped') {
|
|
prefix = this._testPrefix(index, this.screen.colors.green('-'));
|
|
// Do not show duration for skipped.
|
|
text = this.screen.colors.cyan(title) + this._retrySuffix(result);
|
|
} else {
|
|
const statusMark = result.status === 'passed' ? POSITIVE_STATUS_MARK : NEGATIVE_STATUS_MARK;
|
|
if (result.status === test.expectedStatus) {
|
|
prefix = this._testPrefix(index, this.screen.colors.green(statusMark));
|
|
text = title;
|
|
} else {
|
|
prefix = this._testPrefix(index, this.screen.colors.red(statusMark));
|
|
text = this.screen.colors.red(title);
|
|
}
|
|
text += this._retrySuffix(result) + this.screen.colors.dim(` (${(0, _utilsBundle.ms)(result.duration)})`);
|
|
}
|
|
this._updateOrAppendLine(this._testRows.get(test), text, prefix);
|
|
}
|
|
_updateOrAppendLine(row, text, prefix) {
|
|
if (this.screen.isTTY) {
|
|
this._updateLine(row, text, prefix);
|
|
} else {
|
|
this._maybeWriteNewLine();
|
|
this._appendLine(text, prefix);
|
|
}
|
|
}
|
|
_appendLine(text, prefix) {
|
|
const line = prefix + this.fitToScreen(text, prefix);
|
|
if (process.env.PW_TEST_DEBUG_REPORTERS) {
|
|
process.stdout.write('#' + this._lastRow + ' : ' + line + '\n');
|
|
} else {
|
|
process.stdout.write(line);
|
|
process.stdout.write('\n');
|
|
}
|
|
++this._lastRow;
|
|
this._lastColumn = 0;
|
|
}
|
|
_updateLine(row, text, prefix) {
|
|
const line = prefix + this.fitToScreen(text, prefix);
|
|
if (process.env.PW_TEST_DEBUG_REPORTERS) process.stdout.write('#' + row + ' : ' + line + '\n');else this._updateLineForTTY(row, line);
|
|
}
|
|
_updateLineForTTY(row, line) {
|
|
// Go up if needed
|
|
if (row !== this._lastRow) process.stdout.write(`\u001B[${this._lastRow - row}A`);
|
|
// Erase line, go to the start
|
|
process.stdout.write('\u001B[2K\u001B[0G');
|
|
process.stdout.write(line);
|
|
// Go down if needed.
|
|
if (row !== this._lastRow) process.stdout.write(`\u001B[${this._lastRow - row}E`);
|
|
}
|
|
_testPrefix(index, statusMark) {
|
|
const statusMarkLength = (0, _util.stripAnsiEscapes)(statusMark).length;
|
|
return ' ' + statusMark + ' '.repeat(3 - statusMarkLength) + this.screen.colors.dim(index + ' ');
|
|
}
|
|
_retrySuffix(result) {
|
|
return result.retry ? this.screen.colors.yellow(` (retry #${result.retry})`) : '';
|
|
}
|
|
onError(error) {
|
|
super.onError(error);
|
|
this._maybeWriteNewLine();
|
|
const message = this.formatError(error).message + '\n';
|
|
this._updateLineCountAndNewLineFlagForOutput(message);
|
|
process.stdout.write(message);
|
|
}
|
|
async onEnd(result) {
|
|
await super.onEnd(result);
|
|
process.stdout.write('\n');
|
|
this.epilogue(true);
|
|
}
|
|
}
|
|
const lastStepOrdinalSymbol = Symbol('lastStepOrdinal');
|
|
var _default = exports.default = ListReporter; |