forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworker.test.js
More file actions
304 lines (242 loc) · 7.65 KB
/
worker.test.js
File metadata and controls
304 lines (242 loc) · 7.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/**
* Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
/* eslint-disable no-new */
import {EventEmitter} from 'events';
import {
CHILD_MESSAGE_CALL,
CHILD_MESSAGE_INITIALIZE,
PARENT_MESSAGE_ERROR,
PARENT_MESSAGE_OK,
} from '../types';
let Worker;
let forkInterface;
let childProcess;
let originalExecArgv;
beforeEach(() => {
jest.mock('child_process');
originalExecArgv = process.execArgv;
childProcess = require('child_process');
childProcess.fork.mockImplementation(() => {
forkInterface = Object.assign(new EventEmitter(), {
send: jest.fn(),
stderr: {},
stdout: {},
});
return forkInterface;
});
Worker = require('../worker').default;
});
afterEach(() => {
jest.resetModules();
process.execArgv = originalExecArgv;
});
it('passes fork options down to child_process.fork, adding the defaults', () => {
const child = require.resolve('../child');
process.execArgv = ['--inspect', '-p'];
new Worker({
forkOptions: {
cwd: '/tmp',
execPath: 'hello',
},
maxRetries: 3,
workerId: process.env.JEST_WORKER_ID,
workerPath: '/tmp/foo/bar/baz.js',
});
expect(childProcess.fork.mock.calls[0][0]).toBe(child);
expect(childProcess.fork.mock.calls[0][1]).toEqual({
cwd: '/tmp', // Overridden default option.
env: process.env, // Default option.
execArgv: ['-p'], // Filtered option.
execPath: 'hello', // Added option.
silent: true, // Default option.
});
});
it('passes workerId to the child process and assign it to env.JEST_WORKER_ID', () => {
new Worker({
forkOptions: {},
maxRetries: 3,
workerId: 2,
workerPath: '/tmp/foo',
});
expect(childProcess.fork.mock.calls[0][1].env.JEST_WORKER_ID).toEqual(2);
});
it('initializes the child process with the given workerPath', () => {
new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo/bar/baz.js',
});
expect(forkInterface.send.mock.calls[0][0]).toEqual([
CHILD_MESSAGE_INITIALIZE,
false,
'/tmp/foo/bar/baz.js',
]);
});
it('stops initializing the worker after the amount of retries is exceeded', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo/bar/baz.js',
});
const request = [CHILD_MESSAGE_CALL, false, 'foo', []];
const callback = jest.fn();
worker.send(request, callback);
// We fail four times (initial + three retries).
forkInterface.emit('exit');
forkInterface.emit('exit');
forkInterface.emit('exit');
forkInterface.emit('exit');
expect(childProcess.fork).toHaveBeenCalledTimes(5);
expect(callback.mock.calls[0][0]).toBeInstanceOf(Error);
expect(callback.mock.calls[0][0].type).toBe('WorkerError');
expect(callback.mock.calls[0][1]).toBe(null);
});
it('provides stdout and stderr fields from the child process', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
expect(worker.getStdout()).toBe(forkInterface.stdout);
expect(worker.getStderr()).toBe(forkInterface.stderr);
});
it('swtiches the processed flag of a task as soon as it is processed', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
const request1 = [CHILD_MESSAGE_CALL, false, 'foo', []];
const request2 = [CHILD_MESSAGE_CALL, false, 'bar', []];
worker.send(request1, () => {});
worker.send(request2, () => {});
// The queue is empty when it got send, so the task is processed.
expect(request1[1]).toBe(true);
// The previous one is being processed, so that one stays as unprocessed.
expect(request2[1]).toBe(false);
});
it('sends the task to the child process', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
const request = [CHILD_MESSAGE_CALL, false, 'foo', []];
worker.send(request, () => {});
// Skipping call "0" because it corresponds to the "initialize" one.
expect(forkInterface.send.mock.calls[1][0]).toEqual(request);
});
it('relates replies to requests, in order', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
const callback1 = jest.fn();
const request1 = [CHILD_MESSAGE_CALL, false, 'foo', []];
const callback2 = jest.fn();
const request2 = [CHILD_MESSAGE_CALL, false, 'bar', []];
worker.send(request1, callback1);
worker.send(request2, callback2);
// 2nd call waits on the queue...
expect(request2[1]).toBe(false);
// then first call replies...
forkInterface.emit('message', [PARENT_MESSAGE_OK, 44]);
expect(callback1.mock.calls[0][0]).toBeFalsy();
expect(callback1.mock.calls[0][1]).toBe(44);
expect(callback1.mock.instances[0]).toBe(worker);
// which causes the second call to be processed...
expect(request2[1]).toBe(true);
// and then the second call replies...
forkInterface.emit('message', [
PARENT_MESSAGE_ERROR,
'TypeError',
'foo',
'TypeError: foo',
{},
]);
expect(callback2.mock.calls[0][0].message).toBe('foo');
expect(callback2.mock.instances[0]).toBe(worker);
});
it('creates error instances for known errors', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
const callback1 = jest.fn();
const callback2 = jest.fn();
const callback3 = jest.fn();
// Testing a generic ECMAScript error.
worker.send([CHILD_MESSAGE_CALL, false, 'method', []], callback1);
forkInterface.emit('message', [
PARENT_MESSAGE_ERROR,
'TypeError',
'bar',
'TypeError: bar',
{},
]);
expect(callback1.mock.calls[0][0]).toBeInstanceOf(TypeError);
expect(callback1.mock.calls[0][0].message).toBe('bar');
expect(callback1.mock.calls[0][0].type).toBe('TypeError');
expect(callback1.mock.calls[0][0].stack).toBe('TypeError: bar');
// Testing a custom error.
worker.send([CHILD_MESSAGE_CALL, false, 'method', []], callback2);
forkInterface.emit('message', [
PARENT_MESSAGE_ERROR,
'RandomCustomError',
'bar',
'RandomCustomError: bar',
{qux: 'extra property'},
]);
expect(callback2.mock.calls[0][0]).toBeInstanceOf(Error);
expect(callback2.mock.calls[0][0].message).toBe('bar');
expect(callback2.mock.calls[0][0].type).toBe('RandomCustomError');
expect(callback2.mock.calls[0][0].stack).toBe('RandomCustomError: bar');
expect(callback2.mock.calls[0][0].qux).toBe('extra property');
// Testing a non-object throw.
worker.send([CHILD_MESSAGE_CALL, false, 'method', []], callback3);
forkInterface.emit('message', [
PARENT_MESSAGE_ERROR,
'Number',
null,
null,
412,
]);
expect(callback3.mock.calls[0][0]).toBe(412);
});
it('throws when the child process returns a strange message', () => {
const worker = new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
worker.send([CHILD_MESSAGE_CALL, false, 'method', []], () => {});
// Type 27 does not exist.
expect(() => {
forkInterface.emit('message', [27]);
}).toThrow(TypeError);
});
it('does not restart the child if it cleanly exited', () => {
new Worker({
forkOptions: {},
maxRetries: 3,
workerPath: '/tmp/foo',
});
expect(childProcess.fork).toHaveBeenCalledTimes(1);
forkInterface.emit('exit', 0);
expect(childProcess.fork).toHaveBeenCalledTimes(1);
});
it('restarts the child when the child process dies', () => {
new Worker({
workerPath: '/tmp/foo',
});
expect(childProcess.fork).toHaveBeenCalledTimes(1);
forkInterface.emit('exit', 1);
expect(childProcess.fork).toHaveBeenCalledTimes(2);
});