dwinzo-sdet/node_modules/playwright/lib/reporters/teleEmitter.js

275 lines
7.8 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TeleReporterEmitter = void 0;
var _path = _interopRequireDefault(require("path"));
var _utils = require("playwright-core/lib/utils");
var _teleReceiver = require("../isomorphic/teleReceiver");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/**
* 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.
*/
class TeleReporterEmitter {
constructor(messageSink, options = {}) {
this._messageSink = void 0;
this._rootDir = void 0;
this._emitterOptions = void 0;
// In case there is blob reporter and UI mode, make sure one does override
// the id assigned by the other.
this._idSymbol = Symbol('id');
this._messageSink = messageSink;
this._emitterOptions = options;
}
version() {
return 'v2';
}
onConfigure(config) {
this._rootDir = config.rootDir;
this._messageSink({
method: 'onConfigure',
params: {
config: this._serializeConfig(config)
}
});
}
onBegin(suite) {
const projects = suite.suites.map(projectSuite => this._serializeProject(projectSuite));
for (const project of projects) this._messageSink({
method: 'onProject',
params: {
project
}
});
this._messageSink({
method: 'onBegin',
params: undefined
});
}
onTestBegin(test, result) {
result[this._idSymbol] = (0, _utils.createGuid)();
this._messageSink({
method: 'onTestBegin',
params: {
testId: test.id,
result: this._serializeResultStart(result)
}
});
}
onTestEnd(test, result) {
const testEnd = {
testId: test.id,
expectedStatus: test.expectedStatus,
annotations: test.annotations,
timeout: test.timeout
};
this._messageSink({
method: 'onTestEnd',
params: {
test: testEnd,
result: this._serializeResultEnd(result)
}
});
}
onStepBegin(test, result, step) {
step[this._idSymbol] = (0, _utils.createGuid)();
this._messageSink({
method: 'onStepBegin',
params: {
testId: test.id,
resultId: result[this._idSymbol],
step: this._serializeStepStart(step)
}
});
}
onStepEnd(test, result, step) {
this._messageSink({
method: 'onStepEnd',
params: {
testId: test.id,
resultId: result[this._idSymbol],
step: this._serializeStepEnd(step, result)
}
});
}
onError(error) {
this._messageSink({
method: 'onError',
params: {
error
}
});
}
onStdOut(chunk, test, result) {
this._onStdIO('stdout', chunk, test, result);
}
onStdErr(chunk, test, result) {
this._onStdIO('stderr', chunk, test, result);
}
_onStdIO(type, chunk, test, result) {
if (this._emitterOptions.omitOutput) return;
const isBase64 = typeof chunk !== 'string';
const data = isBase64 ? chunk.toString('base64') : chunk;
this._messageSink({
method: 'onStdIO',
params: {
testId: test === null || test === void 0 ? void 0 : test.id,
resultId: result ? result[this._idSymbol] : undefined,
type,
data,
isBase64
}
});
}
async onEnd(result) {
const resultPayload = {
status: result.status,
startTime: result.startTime.getTime(),
duration: result.duration
};
this._messageSink({
method: 'onEnd',
params: {
result: resultPayload
}
});
}
printsToStdio() {
return false;
}
_serializeConfig(config) {
return {
configFile: this._relativePath(config.configFile),
globalTimeout: config.globalTimeout,
maxFailures: config.maxFailures,
metadata: config.metadata,
rootDir: config.rootDir,
version: config.version,
workers: config.workers
};
}
_serializeProject(suite) {
const project = suite.project();
const report = {
metadata: project.metadata,
name: project.name,
outputDir: this._relativePath(project.outputDir),
repeatEach: project.repeatEach,
retries: project.retries,
testDir: this._relativePath(project.testDir),
testIgnore: (0, _teleReceiver.serializeRegexPatterns)(project.testIgnore),
testMatch: (0, _teleReceiver.serializeRegexPatterns)(project.testMatch),
timeout: project.timeout,
suites: suite.suites.map(fileSuite => {
return this._serializeSuite(fileSuite);
}),
grep: (0, _teleReceiver.serializeRegexPatterns)(project.grep),
grepInvert: (0, _teleReceiver.serializeRegexPatterns)(project.grepInvert || []),
dependencies: project.dependencies,
snapshotDir: this._relativePath(project.snapshotDir),
teardown: project.teardown,
use: this._serializeProjectUseOptions(project.use)
};
return report;
}
_serializeProjectUseOptions(use) {
return {
testIdAttribute: use.testIdAttribute
};
}
_serializeSuite(suite) {
const result = {
title: suite.title,
location: this._relativeLocation(suite.location),
entries: suite.entries().map(e => {
if (e.type === 'test') return this._serializeTest(e);
return this._serializeSuite(e);
})
};
return result;
}
_serializeTest(test) {
return {
testId: test.id,
title: test.title,
location: this._relativeLocation(test.location),
retries: test.retries,
tags: test.tags,
repeatEachIndex: test.repeatEachIndex,
annotations: test.annotations
};
}
_serializeResultStart(result) {
return {
id: result[this._idSymbol],
retry: result.retry,
workerIndex: result.workerIndex,
parallelIndex: result.parallelIndex,
startTime: +result.startTime
};
}
_serializeResultEnd(result) {
return {
id: result[this._idSymbol],
duration: result.duration,
status: result.status,
errors: result.errors,
attachments: this._serializeAttachments(result.attachments)
};
}
_serializeAttachments(attachments) {
return attachments.map(a => {
return {
...a,
// There is no Buffer in the browser, so there is no point in sending the data there.
base64: a.body && !this._emitterOptions.omitBuffers ? a.body.toString('base64') : undefined
};
});
}
_serializeStepStart(step) {
var _step$parent;
return {
id: step[this._idSymbol],
parentStepId: (_step$parent = step.parent) === null || _step$parent === void 0 ? void 0 : _step$parent[this._idSymbol],
title: step.title,
category: step.category,
startTime: +step.startTime,
location: this._relativeLocation(step.location)
};
}
_serializeStepEnd(step, result) {
return {
id: step[this._idSymbol],
duration: step.duration,
error: step.error,
attachments: step.attachments.length ? step.attachments.map(a => result.attachments.indexOf(a)) : undefined,
annotations: step.annotations.length ? step.annotations : undefined
};
}
_relativeLocation(location) {
if (!location) return location;
return {
...location,
file: this._relativePath(location.file)
};
}
_relativePath(absolutePath) {
if (!absolutePath) return absolutePath;
return _path.default.relative(this._rootDir, absolutePath);
}
}
exports.TeleReporterEmitter = TeleReporterEmitter;