Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate jest-runner to typescript #7968

Merged
merged 27 commits into from Feb 25, 2019
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1db25d4
Add a tsconfig
natealcedo Feb 20, 2019
7f32f83
Rename files to .ts
natealcedo Feb 20, 2019
5980012
Add a types key and import @jest/types in jest-runner
natealcedo Feb 20, 2019
5eaaf53
Migrate basic types in test-worker
natealcedo Feb 23, 2019
1cf4620
Migrate test-runner types here and add some types
natealcedo Feb 23, 2019
f7ebefb
Type runTest
natealcedo Feb 23, 2019
3298bd0
Update types
natealcedo Feb 23, 2019
2e222bd
Update workerData type
natealcedo Feb 23, 2019
fb04d2a
Add jsresolve in dependencies
natealcedo Feb 23, 2019
fd30cc7
Run eslint and remove flow declarations
natealcedo Feb 23, 2019
c4b75ef
Add jest-core in tsconfig
natealcedo Feb 23, 2019
e734a23
Add dependencies
natealcedo Feb 23, 2019
68a88f6
Fix arguments for jest worker instantiation
natealcedo Feb 24, 2019
d111542
Resolve comments for now
natealcedo Feb 24, 2019
fff3691
Update tsconfig
natealcedo Feb 24, 2019
525783e
tweaks
SimenB Feb 24, 2019
fb7ea5c
correct export
SimenB Feb 25, 2019
20d9d4b
remove some casts and ignores
SimenB Feb 25, 2019
d8ff4ea
reuse ForkOptions from node core instead of redefining them (wrongly)
SimenB Feb 25, 2019
bca1d29
Update changelog to include info about jest-runner typescript migration
natealcedo Feb 25, 2019
951dadc
final type tweak
SimenB Feb 25, 2019
f254cb0
Merge branch 'master' into migrate/jest-runner
SimenB Feb 25, 2019
949baad
i lied, one more
SimenB Feb 25, 2019
266a8c9
--wip-- [skip ci]
SimenB Feb 25, 2019
01485d4
named import
SimenB Feb 25, 2019
a1e9a6b
another named
SimenB Feb 25, 2019
b926c32
Revert "--wip-- [skip ci]"
SimenB Feb 25, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -56,6 +56,7 @@
- `[expect]`: Migrate to TypeScript ([#7919](https://github.com/facebook/jest/pull/7919))
- `[jest-circus]`: Migrate to TypeScript ([#7916](https://github.com/facebook/jest/pull/7916))
- `[jest-phabricator]`: Migrate to TypeScript ([#7965](https://github.com/facebook/jest/pull/7965))
- `[jest-runner]`: Migrate to TypeScript ([#7968](https://github.com/facebook/jest/pull/7968))

### Performance

Expand Down
220 changes: 220 additions & 0 deletions packages/jest-runner/build/index.js
@@ -0,0 +1,220 @@
'use strict';

function _exit() {
const data = _interopRequireDefault(require('exit'));

_exit = function _exit() {
return data;
};

return data;
}

function _throat() {
const data = _interopRequireDefault(require('throat'));

_throat = function _throat() {
return data;
};

return data;
}

function _jestWorker() {
const data = _interopRequireDefault(require('jest-worker'));

_jestWorker = function _jestWorker() {
return data;
};

return data;
}

var _runTest = _interopRequireDefault(require('./runTest'));

var _testWorker = require('./testWorker');

function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {default: obj};
}

function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
try {
var info = gen[key](arg);
var value = info.value;
} catch (error) {
reject(error);
return;
}
if (info.done) {
resolve(value);
} else {
Promise.resolve(value).then(_next, _throw);
}
}

function _asyncToGenerator(fn) {
return function() {
var self = this,
args = arguments;
return new Promise(function(resolve, reject) {
var gen = fn.apply(self, args);
function _next(value) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, 'next', value);
}
function _throw(err) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, 'throw', err);
}
_next(undefined);
});
};
}

const TEST_WORKER_PATH = require.resolve('./testWorker');

class TestRunner {
constructor(globalConfig, context) {
this._globalConfig = globalConfig;
this._context = context || {};
}

runTests(tests, watcher, onStart, onResult, onFailure, options) {
var _this = this;

return _asyncToGenerator(function*() {
return yield options.serial
? _this._createInBandTestRun(
tests,
watcher,
onStart,
onResult,
onFailure
)
: _this._createParallelTestRun(
tests,
watcher,
onStart,
onResult,
onFailure
);
})();
}

_createInBandTestRun(tests, watcher, onStart, onResult, onFailure) {
var _this2 = this;

return _asyncToGenerator(function*() {
process.env.JEST_WORKER_ID = '1';
const mutex = (0, _throat().default)(1);
return tests.reduce(
(promise, test) =>
mutex(() =>
promise
.then(
/*#__PURE__*/
_asyncToGenerator(function*() {
if (watcher.isInterrupted()) {
throw new CancelRun();
}

yield onStart(test);
return (0,
_runTest.default)(test.path, _this2._globalConfig, test.context.config, test.context.resolver, _this2._context);
})
)
.then(result => onResult(test, result))
.catch(err => onFailure(test, err))
),
Promise.resolve()
);
})();
}

_createParallelTestRun(tests, watcher, onStart, onResult, onFailure) {
var _this3 = this;

return _asyncToGenerator(function*() {
const worker = new (_jestWorker()).default(TEST_WORKER_PATH, {
exposedMethods: ['worker'],
forkOptions: {
stdio: 'pipe'
},
maxRetries: 3,
numWorkers: _this3._globalConfig.maxWorkers
});
if (worker.getStdout()) worker.getStdout().pipe(process.stdout);
if (worker.getStderr()) worker.getStderr().pipe(process.stderr);
const mutex = (0, _throat().default)(_this3._globalConfig.maxWorkers); // Send test suites to workers continuously instead of all at once to track
// the start time of individual tests.

const runTestInWorker = test =>
mutex(
/*#__PURE__*/
_asyncToGenerator(function*() {
if (watcher.isInterrupted()) {
return Promise.reject();
}

yield onStart(test);
return worker.worker({
config: test.context.config,
context: _this3._context,
globalConfig: _this3._globalConfig,
path: test.path,
serializableModuleMap: watcher.isWatchMode()
? test.context.moduleMap.toJSON()
: null
});
})
);

const onError =
/*#__PURE__*/
(function() {
var _ref3 = _asyncToGenerator(function*(err, test) {
yield onFailure(test, err);

if (err.type === 'ProcessTerminatedError') {
console.error(
'A worker process has quit unexpectedly! ' +
'Most likely this is an initialization error.'
);
(0, _exit().default)(1);
}
});

return function onError(_x, _x2) {
return _ref3.apply(this, arguments);
};
})();

const onInterrupt = new Promise((_, reject) => {
watcher.on('change', state => {
if (state.interrupted) {
reject(new CancelRun());
}
});
});
const runAllTests = Promise.all(
tests.map(test =>
runTestInWorker(test)
.then(testResult => onResult(test, testResult))
.catch(error => onError(error, test))
)
);

const cleanup = () => worker.end();

return Promise.race([runAllTests, onInterrupt]).then(cleanup, cleanup);
})();
}
}

class CancelRun extends Error {
constructor(message) {
super(message);
this.name = 'CancelRun';
}
}

module.exports = TestRunner;