Skip to content

Commit

Permalink
chore: remove usage of configFile from junit reporter (#30273)
Browse files Browse the repository at this point in the history
Reference #29768
  • Loading branch information
yury-s authored Apr 5, 2024
1 parent adc645d commit 9e89f29
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions packages/playwright/src/reporters/junit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,41 @@ import path from 'path';
import type { FullConfig, FullResult, Suite, TestCase } from '../../types/testReporter';
import { monotonicTime } from 'playwright-core/lib/utils';
import { formatFailure, stripAnsiEscapes } from './base';
import { assert } from 'playwright-core/lib/utils';
import EmptyReporter from './empty';

type JUnitOptions = {
outputFile?: string,
stripANSIControlSequences?: boolean,
includeProjectInTestName?: boolean,

configDir?: string,
};

class JUnitReporter extends EmptyReporter {
private config!: FullConfig;
private configDir: string;
private suite!: Suite;
private timestamp!: Date;
private startTime!: number;
private totalTests = 0;
private totalFailures = 0;
private totalSkipped = 0;
private outputFile: string | undefined;
private resolvedOutputFile: string | undefined;
private stripANSIControlSequences = false;
private includeProjectInTestName = false;

constructor(options: { outputFile?: string, stripANSIControlSequences?: boolean, includeProjectInTestName?: boolean } = {}) {
constructor(options: JUnitOptions = {}) {
super();
this.outputFile = options.outputFile || reportOutputNameFromEnv();
this.stripANSIControlSequences = options.stripANSIControlSequences || false;
this.includeProjectInTestName = options.includeProjectInTestName || false;
this.configDir = options.configDir || '';
const outputFile = options.outputFile || reportOutputNameFromEnv();
if (outputFile)
this.resolvedOutputFile = path.resolve(this.configDir, outputFile);
}

override printsToStdio() {
return !this.outputFile;
return !this.resolvedOutputFile;
}

override onConfigure(config: FullConfig) {
Expand All @@ -54,10 +64,6 @@ class JUnitReporter extends EmptyReporter {
this.suite = suite;
this.timestamp = new Date();
this.startTime = monotonicTime();
if (this.outputFile) {
assert(this.config.configFile || path.isAbsolute(this.outputFile), 'Expected fully resolved path if not using config file.');
this.resolvedOutputFile = this.config.configFile ? path.resolve(path.dirname(this.config.configFile), this.outputFile) : this.outputFile;
}
}

override async onEnd(result: FullResult) {
Expand Down Expand Up @@ -197,12 +203,12 @@ class JUnitReporter extends EmptyReporter {
if (!attachment.path)
continue;

let attachmentPath = path.relative(this.config.rootDir, attachment.path);
let attachmentPath = path.relative(this.configDir, attachment.path);
try {
if (this.resolvedOutputFile)
attachmentPath = path.relative(path.dirname(this.resolvedOutputFile), attachment.path);
} catch {
systemOut.push(`\nWarning: Unable to make attachment path ${attachment.path} relative to report output file ${this.outputFile}`);
systemOut.push(`\nWarning: Unable to make attachment path ${attachment.path} relative to report output file ${this.resolvedOutputFile}`);
}

try {
Expand Down

0 comments on commit 9e89f29

Please sign in to comment.