forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.test.js
More file actions
172 lines (140 loc) · 4.07 KB
/
index.test.js
File metadata and controls
172 lines (140 loc) · 4.07 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
/**
* Copyright (c) Facebook, Inc. and its affiliates. 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';
let Farm;
let WorkerPool;
let Queue;
beforeEach(() => {
jest.mock('../Farm', () => {
const fakeClass = jest.fn(() => ({
doWork: jest.fn().mockResolvedValue(42),
}));
return {
__esModule: true,
default: fakeClass,
};
});
jest.mock('../WorkerPool', () => {
const fakeWorker = jest.fn(() => ({
createWorker: jest.fn(),
end: jest.fn(),
getStderr: () => jest.fn(a => a),
getStdout: () => jest.fn(a => a),
send: jest.fn(),
}));
return {
__esModule: true,
default: fakeWorker,
};
});
jest.mock(
'/fake-worker.js',
() => ({
_shouldNotExist1() {},
methodA() {},
methodB() {},
}),
{virtual: true},
);
jest.mock('/fake-worker-with-default-method.js', () => () => {}, {
virtual: true,
});
Farm = require('..').Worker;
Queue = require('../Farm').default;
WorkerPool = require('../WorkerPool').default;
});
afterEach(() => {
jest.resetModules();
});
it('exposes the right API using default working', () => {
const farm = new Farm('/tmp/baz.js', {
exposedMethods: ['foo', 'bar'],
numWorkers: 4,
});
expect(typeof farm.foo).toBe('function');
expect(typeof farm.bar).toBe('function');
});
it('exposes the right API using passed worker', () => {
const WorkerPool = jest.fn(() => ({
createWorker: jest.fn(),
end: jest.fn(),
getStderr: () => jest.fn(a => a),
getStdout: () => jest.fn(a => a),
send: jest.fn(),
}));
const farm = new Farm('/tmp/baz.js', {
WorkerPool,
exposedMethods: ['foo', 'bar'],
numWorkers: 4,
});
expect(typeof farm.foo).toBe('function');
expect(typeof farm.bar).toBe('function');
});
it('breaks if any of the forbidden methods is tried to be exposed', () => {
expect(
() => new Farm('/tmp/baz.js', {exposedMethods: ['getStdout']}),
).toThrow();
expect(
() => new Farm('/tmp/baz.js', {exposedMethods: ['getStderr']}),
).toThrow();
expect(() => new Farm('/tmp/baz.js', {exposedMethods: ['end']})).toThrow();
});
it('works with minimal options', () => {
const farm1 = new Farm('/fake-worker.js');
expect(Queue).toHaveBeenCalledTimes(1);
expect(WorkerPool).toHaveBeenCalledTimes(1);
expect(typeof farm1.methodA).toBe('function');
expect(typeof farm1.methodB).toBe('function');
expect(typeof farm1._shouldNotExist).not.toBe('function');
const farm2 = new Farm('/fake-worker-with-default-method.js');
expect(typeof farm2.default).toBe('function');
});
it('does not let make calls after the farm is ended', () => {
const farm = new Farm('/tmp/baz.js', {
exposedMethods: ['foo', 'bar'],
numWorkers: 4,
});
farm.end();
expect(farm._workerPool.end).toHaveBeenCalledTimes(1);
expect(() => farm.foo()).toThrow(
'Farm is ended, no more calls can be done to it',
);
expect(() => farm.bar()).toThrow(
'Farm is ended, no more calls can be done to it',
);
});
it('does not let end the farm after it is ended', async () => {
const farm = new Farm('/tmp/baz.js', {
exposedMethods: ['foo', 'bar'],
numWorkers: 4,
});
farm.end();
expect(farm._workerPool.end).toHaveBeenCalledTimes(1);
await expect(farm.end()).rejects.toThrow(
'Farm is ended, no more calls can be done to it',
);
await expect(farm.end()).rejects.toThrow(
'Farm is ended, no more calls can be done to it',
);
expect(farm._workerPool.end).toHaveBeenCalledTimes(1);
});
it('calls doWork', async () => {
const farm = new Farm('/tmp/baz.js', {
exposedMethods: ['foo', 'bar'],
numWorkers: 1,
});
const promise = farm.foo('car', 'plane');
expect(await promise).toEqual(42);
});
it('calls getStderr and getStdout from worker', async () => {
const farm = new Farm('/tmp/baz.js', {
exposedMethods: ['foo', 'bar'],
numWorkers: 1,
});
expect(farm.getStderr()('err')).toEqual('err');
expect(farm.getStdout()('out')).toEqual('out');
});