2021-06-06 17:09:53 -07:00
|
|
|
/**
|
|
|
|
* Copyright Microsoft Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 child_process from 'child_process';
|
|
|
|
import path from 'path';
|
|
|
|
import { EventEmitter } from 'events';
|
|
|
|
import { RunPayload, TestBeginPayload, TestEndPayload, DonePayload, TestOutputPayload, WorkerInitParams } from './ipc';
|
2021-07-16 21:15:03 -07:00
|
|
|
import type { TestResult, Reporter, TestStatus } from '../../types/testReporter';
|
2021-07-19 14:54:18 -07:00
|
|
|
import { Suite, TestCase } from './test';
|
2021-06-06 17:09:53 -07:00
|
|
|
import { Loader } from './loader';
|
|
|
|
|
|
|
|
type DispatcherEntry = {
|
|
|
|
runPayload: RunPayload;
|
|
|
|
hash: string;
|
|
|
|
repeatEachIndex: number;
|
|
|
|
projectIndex: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
export class Dispatcher {
|
|
|
|
private _workers = new Set<Worker>();
|
|
|
|
private _freeWorkers: Worker[] = [];
|
|
|
|
private _workerClaimers: (() => void)[] = [];
|
|
|
|
|
2021-07-19 14:54:18 -07:00
|
|
|
private _testById = new Map<string, { test: TestCase, result: TestResult }>();
|
2021-06-06 17:09:53 -07:00
|
|
|
private _queue: DispatcherEntry[] = [];
|
|
|
|
private _stopCallback = () => {};
|
|
|
|
readonly _loader: Loader;
|
|
|
|
private _suite: Suite;
|
|
|
|
private _reporter: Reporter;
|
|
|
|
private _hasWorkerErrors = false;
|
|
|
|
private _isStopped = false;
|
|
|
|
private _failureCount = 0;
|
|
|
|
|
|
|
|
constructor(loader: Loader, suite: Suite, reporter: Reporter) {
|
|
|
|
this._loader = loader;
|
|
|
|
this._reporter = reporter;
|
|
|
|
|
|
|
|
this._suite = suite;
|
|
|
|
for (const suite of this._suite.suites) {
|
2021-07-16 12:40:33 -07:00
|
|
|
for (const test of suite.allTests())
|
2021-07-15 22:02:10 -07:00
|
|
|
this._testById.set(test._id, { test, result: test._appendTestResult() });
|
2021-06-06 17:09:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
this._queue = this._filesSortedByWorkerHash();
|
|
|
|
|
|
|
|
// Shard tests.
|
|
|
|
const shard = this._loader.fullConfig().shard;
|
|
|
|
if (shard) {
|
2021-07-16 12:40:33 -07:00
|
|
|
let total = this._suite.allTests().length;
|
2021-06-06 17:09:53 -07:00
|
|
|
const shardSize = Math.ceil(total / shard.total);
|
2021-07-27 09:13:04 -07:00
|
|
|
const from = shardSize * (shard.current - 1);
|
|
|
|
const to = shardSize * shard.current;
|
2021-06-06 17:09:53 -07:00
|
|
|
let current = 0;
|
|
|
|
total = 0;
|
|
|
|
const filteredQueue: DispatcherEntry[] = [];
|
|
|
|
for (const entry of this._queue) {
|
|
|
|
if (current >= from && current < to) {
|
|
|
|
filteredQueue.push(entry);
|
|
|
|
total += entry.runPayload.entries.length;
|
|
|
|
}
|
|
|
|
current += entry.runPayload.entries.length;
|
|
|
|
}
|
|
|
|
this._queue = filteredQueue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_filesSortedByWorkerHash(): DispatcherEntry[] {
|
|
|
|
const entriesByWorkerHashAndFile = new Map<string, Map<string, DispatcherEntry>>();
|
2021-07-16 15:23:50 -07:00
|
|
|
for (const projectSuite of this._suite.suites) {
|
|
|
|
for (const test of projectSuite.allTests()) {
|
2021-07-15 22:02:10 -07:00
|
|
|
let entriesByFile = entriesByWorkerHashAndFile.get(test._workerHash);
|
|
|
|
if (!entriesByFile) {
|
|
|
|
entriesByFile = new Map();
|
|
|
|
entriesByWorkerHashAndFile.set(test._workerHash, entriesByFile);
|
|
|
|
}
|
2021-07-16 15:23:50 -07:00
|
|
|
const file = test._requireFile;
|
2021-07-15 22:02:10 -07:00
|
|
|
let entry = entriesByFile.get(file);
|
|
|
|
if (!entry) {
|
|
|
|
entry = {
|
|
|
|
runPayload: {
|
|
|
|
entries: [],
|
|
|
|
file,
|
|
|
|
},
|
2021-07-16 15:23:50 -07:00
|
|
|
repeatEachIndex: test._repeatEachIndex,
|
|
|
|
projectIndex: test._projectIndex,
|
2021-07-15 22:02:10 -07:00
|
|
|
hash: test._workerHash,
|
|
|
|
};
|
|
|
|
entriesByFile.set(file, entry);
|
2021-06-06 17:09:53 -07:00
|
|
|
}
|
2021-07-15 22:02:10 -07:00
|
|
|
entry.runPayload.entries.push({
|
|
|
|
retry: this._testById.get(test._id)!.result.retry,
|
|
|
|
testId: test._id,
|
|
|
|
});
|
2021-06-06 17:09:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const result: DispatcherEntry[] = [];
|
|
|
|
for (const entriesByFile of entriesByWorkerHashAndFile.values()) {
|
|
|
|
for (const entry of entriesByFile.values())
|
|
|
|
result.push(entry);
|
|
|
|
}
|
|
|
|
result.sort((a, b) => a.hash < b.hash ? -1 : (a.hash === b.hash ? 0 : 1));
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
async run() {
|
|
|
|
// Loop in case job schedules more jobs
|
|
|
|
while (this._queue.length && !this._isStopped)
|
|
|
|
await this._dispatchQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
async _dispatchQueue() {
|
|
|
|
const jobs = [];
|
|
|
|
while (this._queue.length) {
|
|
|
|
if (this._isStopped)
|
|
|
|
break;
|
|
|
|
const entry = this._queue.shift()!;
|
|
|
|
const requiredHash = entry.hash;
|
|
|
|
let worker = await this._obtainWorker(entry);
|
|
|
|
while (!this._isStopped && worker.hash && worker.hash !== requiredHash) {
|
|
|
|
worker.stop();
|
|
|
|
worker = await this._obtainWorker(entry);
|
|
|
|
}
|
|
|
|
if (this._isStopped)
|
|
|
|
break;
|
|
|
|
jobs.push(this._runJob(worker, entry));
|
|
|
|
}
|
|
|
|
await Promise.all(jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
async _runJob(worker: Worker, entry: DispatcherEntry) {
|
|
|
|
worker.run(entry.runPayload);
|
|
|
|
let doneCallback = () => {};
|
|
|
|
const result = new Promise<void>(f => doneCallback = f);
|
2021-07-07 12:04:43 -07:00
|
|
|
const doneWithJob = () => {
|
|
|
|
worker.removeListener('testBegin', onTestBegin);
|
|
|
|
worker.removeListener('testEnd', onTestEnd);
|
|
|
|
worker.removeListener('done', onDone);
|
|
|
|
worker.removeListener('exit', onExit);
|
|
|
|
doneCallback();
|
|
|
|
};
|
|
|
|
|
|
|
|
const remainingByTestId = new Map(entry.runPayload.entries.map(e => [ e.testId, e ]));
|
|
|
|
let lastStartedTestId: string | undefined;
|
|
|
|
|
|
|
|
const onTestBegin = (params: TestBeginPayload) => {
|
|
|
|
lastStartedTestId = params.testId;
|
|
|
|
};
|
|
|
|
worker.addListener('testBegin', onTestBegin);
|
|
|
|
|
|
|
|
const onTestEnd = (params: TestEndPayload) => {
|
|
|
|
remainingByTestId.delete(params.testId);
|
|
|
|
};
|
|
|
|
worker.addListener('testEnd', onTestEnd);
|
|
|
|
|
|
|
|
const onDone = (params: DonePayload) => {
|
|
|
|
let remaining = [...remainingByTestId.values()];
|
|
|
|
|
2021-06-06 17:09:53 -07:00
|
|
|
// We won't file remaining if:
|
|
|
|
// - there are no remaining
|
|
|
|
// - we are here not because something failed
|
|
|
|
// - no unrecoverable worker error
|
2021-07-07 12:04:43 -07:00
|
|
|
if (!remaining.length && !params.failedTestId && !params.fatalError) {
|
2021-06-06 17:09:53 -07:00
|
|
|
this._freeWorkers.push(worker);
|
|
|
|
this._notifyWorkerClaimer();
|
2021-07-07 12:04:43 -07:00
|
|
|
doneWithJob();
|
2021-06-06 17:09:53 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// When worker encounters error, we will stop it and create a new one.
|
|
|
|
worker.stop();
|
|
|
|
|
|
|
|
const failedTestIds = new Set<string>();
|
|
|
|
|
|
|
|
// In case of fatal error, report all remaining tests as failing with this error.
|
|
|
|
if (params.fatalError) {
|
|
|
|
for (const { testId } of remaining) {
|
|
|
|
const { test, result } = this._testById.get(testId)!;
|
2021-07-07 12:04:43 -07:00
|
|
|
// There might be a single test that has started but has not finished yet.
|
|
|
|
if (testId !== lastStartedTestId)
|
|
|
|
this._reportTestBegin(test);
|
2021-06-06 17:09:53 -07:00
|
|
|
result.error = params.fatalError;
|
|
|
|
this._reportTestEnd(test, result, 'failed');
|
|
|
|
failedTestIds.add(testId);
|
|
|
|
}
|
2021-07-07 12:04:43 -07:00
|
|
|
// Since we pretend that all remaining tests failed, there is nothing else to run,
|
2021-06-06 17:09:53 -07:00
|
|
|
// except for possible retries.
|
|
|
|
remaining = [];
|
|
|
|
}
|
|
|
|
if (params.failedTestId)
|
|
|
|
failedTestIds.add(params.failedTestId);
|
|
|
|
|
|
|
|
// Only retry expected failures, not passes and only if the test failed.
|
|
|
|
for (const testId of failedTestIds) {
|
|
|
|
const pair = this._testById.get(testId)!;
|
2021-06-14 22:16:16 -07:00
|
|
|
if (!this._isStopped && pair.test.expectedStatus === 'passed' && pair.test.results.length < pair.test.retries + 1) {
|
2021-06-06 17:09:53 -07:00
|
|
|
pair.result = pair.test._appendTestResult();
|
|
|
|
remaining.unshift({
|
|
|
|
retry: pair.result.retry,
|
|
|
|
testId: pair.test._id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remaining.length)
|
|
|
|
this._queue.unshift({ ...entry, runPayload: { ...entry.runPayload, entries: remaining } });
|
|
|
|
|
|
|
|
// This job is over, we just scheduled another one.
|
2021-07-07 12:04:43 -07:00
|
|
|
doneWithJob();
|
|
|
|
};
|
|
|
|
worker.on('done', onDone);
|
|
|
|
|
|
|
|
const onExit = () => {
|
|
|
|
onDone({ fatalError: { value: 'Worker process exited unexpectedly' } });
|
|
|
|
};
|
|
|
|
worker.on('exit', onExit);
|
|
|
|
|
2021-06-06 17:09:53 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
async _obtainWorker(entry: DispatcherEntry) {
|
|
|
|
const claimWorker = (): Promise<Worker> | null => {
|
|
|
|
// Use available worker.
|
|
|
|
if (this._freeWorkers.length)
|
|
|
|
return Promise.resolve(this._freeWorkers.pop()!);
|
|
|
|
// Create a new worker.
|
|
|
|
if (this._workers.size < this._loader.fullConfig().workers)
|
|
|
|
return this._createWorker(entry);
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Note: it is important to claim the worker synchronously,
|
|
|
|
// so that we won't miss a _notifyWorkerClaimer call while awaiting.
|
|
|
|
let worker = claimWorker();
|
|
|
|
if (!worker) {
|
|
|
|
// Wait for available or stopped worker.
|
|
|
|
await new Promise<void>(f => this._workerClaimers.push(f));
|
|
|
|
worker = claimWorker();
|
|
|
|
}
|
|
|
|
return worker!;
|
|
|
|
}
|
|
|
|
|
|
|
|
async _notifyWorkerClaimer() {
|
|
|
|
if (this._isStopped || !this._workerClaimers.length)
|
|
|
|
return;
|
|
|
|
const callback = this._workerClaimers.shift()!;
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
_createWorker(entry: DispatcherEntry) {
|
|
|
|
const worker = new Worker(this);
|
|
|
|
worker.on('testBegin', (params: TestBeginPayload) => {
|
|
|
|
const { test, result: testRun } = this._testById.get(params.testId)!;
|
|
|
|
testRun.workerIndex = params.workerIndex;
|
2021-07-18 17:40:59 -07:00
|
|
|
testRun.startTime = new Date(params.startWallTime);
|
2021-07-07 12:04:43 -07:00
|
|
|
this._reportTestBegin(test);
|
2021-06-06 17:09:53 -07:00
|
|
|
});
|
|
|
|
worker.on('testEnd', (params: TestEndPayload) => {
|
|
|
|
const { test, result } = this._testById.get(params.testId)!;
|
|
|
|
result.duration = params.duration;
|
|
|
|
result.error = params.error;
|
2021-07-16 13:48:37 -07:00
|
|
|
result.attachments = params.attachments.map(a => ({
|
|
|
|
name: a.name,
|
|
|
|
path: a.path,
|
|
|
|
contentType: a.contentType,
|
|
|
|
body: a.body ? Buffer.from(a.body, 'base64') : undefined
|
|
|
|
}));
|
2021-06-06 17:09:53 -07:00
|
|
|
test.expectedStatus = params.expectedStatus;
|
|
|
|
test.annotations = params.annotations;
|
|
|
|
test.timeout = params.timeout;
|
|
|
|
this._reportTestEnd(test, result, params.status);
|
|
|
|
});
|
|
|
|
worker.on('stdOut', (params: TestOutputPayload) => {
|
|
|
|
const chunk = chunkFromParams(params);
|
|
|
|
const pair = params.testId ? this._testById.get(params.testId) : undefined;
|
|
|
|
if (pair)
|
|
|
|
pair.result.stdout.push(chunk);
|
2021-07-16 12:40:33 -07:00
|
|
|
this._reporter.onStdOut?.(chunk, pair ? pair.test : undefined);
|
2021-06-06 17:09:53 -07:00
|
|
|
});
|
|
|
|
worker.on('stdErr', (params: TestOutputPayload) => {
|
|
|
|
const chunk = chunkFromParams(params);
|
|
|
|
const pair = params.testId ? this._testById.get(params.testId) : undefined;
|
|
|
|
if (pair)
|
|
|
|
pair.result.stderr.push(chunk);
|
2021-07-16 12:40:33 -07:00
|
|
|
this._reporter.onStdErr?.(chunk, pair ? pair.test : undefined);
|
2021-06-06 17:09:53 -07:00
|
|
|
});
|
|
|
|
worker.on('teardownError', ({error}) => {
|
|
|
|
this._hasWorkerErrors = true;
|
2021-07-16 12:40:33 -07:00
|
|
|
this._reporter.onError?.(error);
|
2021-06-06 17:09:53 -07:00
|
|
|
});
|
|
|
|
worker.on('exit', () => {
|
|
|
|
this._workers.delete(worker);
|
|
|
|
this._notifyWorkerClaimer();
|
|
|
|
if (this._stopCallback && !this._workers.size)
|
|
|
|
this._stopCallback();
|
|
|
|
});
|
|
|
|
this._workers.add(worker);
|
|
|
|
return worker.init(entry).then(() => worker);
|
|
|
|
}
|
|
|
|
|
|
|
|
async stop() {
|
|
|
|
this._isStopped = true;
|
|
|
|
if (this._workers.size) {
|
|
|
|
const result = new Promise<void>(f => this._stopCallback = f);
|
|
|
|
for (const worker of this._workers)
|
|
|
|
worker.stop();
|
|
|
|
await result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 14:54:18 -07:00
|
|
|
private _reportTestBegin(test: TestCase) {
|
2021-07-07 12:04:43 -07:00
|
|
|
if (this._isStopped)
|
|
|
|
return;
|
|
|
|
const maxFailures = this._loader.fullConfig().maxFailures;
|
|
|
|
if (!maxFailures || this._failureCount < maxFailures)
|
2021-07-16 12:40:33 -07:00
|
|
|
this._reporter.onTestBegin?.(test);
|
2021-07-07 12:04:43 -07:00
|
|
|
}
|
|
|
|
|
2021-07-19 14:54:18 -07:00
|
|
|
private _reportTestEnd(test: TestCase, result: TestResult, status: TestStatus) {
|
2021-06-06 17:09:53 -07:00
|
|
|
if (this._isStopped)
|
|
|
|
return;
|
|
|
|
result.status = status;
|
|
|
|
if (result.status !== 'skipped' && result.status !== test.expectedStatus)
|
|
|
|
++this._failureCount;
|
|
|
|
const maxFailures = this._loader.fullConfig().maxFailures;
|
|
|
|
if (!maxFailures || this._failureCount <= maxFailures)
|
2021-07-16 12:40:33 -07:00
|
|
|
this._reporter.onTestEnd?.(test, result);
|
2021-06-06 17:09:53 -07:00
|
|
|
if (maxFailures && this._failureCount === maxFailures)
|
2021-07-07 12:04:43 -07:00
|
|
|
this.stop().catch(e => {});
|
2021-06-06 17:09:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
hasWorkerErrors(): boolean {
|
|
|
|
return this._hasWorkerErrors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let lastWorkerIndex = 0;
|
|
|
|
|
|
|
|
class Worker extends EventEmitter {
|
|
|
|
process: child_process.ChildProcess;
|
|
|
|
runner: Dispatcher;
|
|
|
|
hash = '';
|
|
|
|
index: number;
|
2021-07-07 12:04:43 -07:00
|
|
|
private didSendStop = false;
|
2021-06-06 17:09:53 -07:00
|
|
|
|
|
|
|
constructor(runner: Dispatcher) {
|
|
|
|
super();
|
|
|
|
this.runner = runner;
|
|
|
|
this.index = lastWorkerIndex++;
|
|
|
|
|
|
|
|
this.process = child_process.fork(path.join(__dirname, 'worker.js'), {
|
|
|
|
detached: false,
|
|
|
|
env: {
|
|
|
|
FORCE_COLOR: process.stdout.isTTY ? '1' : '0',
|
|
|
|
DEBUG_COLORS: process.stdout.isTTY ? '1' : '0',
|
|
|
|
TEST_WORKER_INDEX: String(this.index),
|
|
|
|
...process.env
|
|
|
|
},
|
|
|
|
// Can't pipe since piping slows down termination for some reason.
|
|
|
|
stdio: ['ignore', 'ignore', process.env.PW_RUNNER_DEBUG ? 'inherit' : 'ignore', 'ipc']
|
|
|
|
});
|
|
|
|
this.process.on('exit', () => this.emit('exit'));
|
|
|
|
this.process.on('error', e => {}); // do not yell at a send to dead process.
|
|
|
|
this.process.on('message', (message: any) => {
|
|
|
|
const { method, params } = message;
|
|
|
|
this.emit(method, params);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async init(entry: DispatcherEntry) {
|
|
|
|
this.hash = entry.hash;
|
|
|
|
const params: WorkerInitParams = {
|
|
|
|
workerIndex: this.index,
|
|
|
|
repeatEachIndex: entry.repeatEachIndex,
|
|
|
|
projectIndex: entry.projectIndex,
|
|
|
|
loader: this.runner._loader.serialize(),
|
|
|
|
};
|
|
|
|
this.process.send({ method: 'init', params });
|
|
|
|
await new Promise(f => this.process.once('message', f)); // Ready ack
|
|
|
|
}
|
|
|
|
|
|
|
|
run(runPayload: RunPayload) {
|
|
|
|
this.process.send({ method: 'run', params: runPayload });
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2021-07-07 12:04:43 -07:00
|
|
|
if (!this.didSendStop)
|
|
|
|
this.process.send({ method: 'stop' });
|
|
|
|
this.didSendStop = true;
|
2021-06-06 17:09:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function chunkFromParams(params: TestOutputPayload): string | Buffer {
|
|
|
|
if (typeof params.text === 'string')
|
|
|
|
return params.text;
|
|
|
|
return Buffer.from(params.buffer!, 'base64');
|
|
|
|
}
|