-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathparallel-option.test.js
292 lines (231 loc) · 9.58 KB
/
parallel-option.test.js
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
import os from "os";
import { Worker } from "jest-worker";
import CssMinimizerPlugin from "../src/index";
import {
compile,
getCompiler,
getErrors,
getWarnings,
readAssets,
} from "./helpers";
jest.mock("os", () => {
const actualOs = jest.requireActual("os");
const isAvailableParallelism =
typeof actualOs.availableParallelism !== "undefined";
const mocked = {
availableParallelism: isAvailableParallelism ? jest.fn(() => 4) : undefined,
cpus: jest.fn(() => {
return { length: 4 };
}),
};
return { ...actualOs, ...mocked };
});
// Based on https://github.com/facebook/jest/blob/edde20f75665c2b1e3c8937f758902b5cf28a7b4/packages/jest-runner/src/__tests__/test_runner.test.js
let workerTransform;
let workerEnd;
const ENABLE_WORKER_THREADS =
typeof process.env.ENABLE_WORKER_THREADS !== "undefined"
? process.env.ENABLE_WORKER_THREADS === "true"
: true;
jest.mock("jest-worker", () => {
return {
Worker: jest.fn().mockImplementation((workerPath) => {
return {
// eslint-disable-next-line global-require, import/no-dynamic-require
transform: (workerTransform = jest.fn((data) =>
// eslint-disable-next-line global-require, import/no-dynamic-require
require(workerPath).transform(data),
)),
end: (workerEnd = jest.fn()),
getStderr: jest.fn(),
getStdout: jest.fn(),
};
}),
};
});
const workerPath = require.resolve("../src/minify");
const getParallelism = () => {
if (typeof os.availableParallelism !== "undefined") {
return os.availableParallelism();
}
return os.cpus().length;
};
describe("parallel option", () => {
let compiler;
beforeEach(() => {
jest.clearAllMocks();
compiler = getCompiler({
entry: {
one: `${__dirname}/fixtures/entry.js`,
two: `${__dirname}/fixtures/entry.js`,
three: `${__dirname}/fixtures/entry.js`,
four: `${__dirname}/fixtures/entry.js`,
},
});
});
it("should match snapshot when a value is not specify", async () => {
new CssMinimizerPlugin().apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: getParallelism() - 1,
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "false" value', async () => {
new CssMinimizerPlugin({ parallel: false }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(0);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "true" value', async () => {
new CssMinimizerPlugin({ parallel: true }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: Math.min(4, getParallelism() - 1),
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "undefined" value', async () => {
new CssMinimizerPlugin({ parallel: undefined }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: Math.min(4, getParallelism() - 1),
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "2" value', async () => {
new CssMinimizerPlugin({ parallel: 2 }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: 2,
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "true" value when only one file passed', async () => {
compiler = getCompiler({
entry: `${__dirname}/fixtures/entry.js`,
});
new CssMinimizerPlugin({ parallel: true }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: Math.min(1, getParallelism() - 1),
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "true" value and the number of files is less than the number of cores', async () => {
const entries = {};
for (let i = 0; i < os.cpus().length / 2; i++) {
entries[`entry-${i}`] = `${__dirname}/fixtures/entry.js`;
}
compiler = getCompiler({ entry: entries });
new CssMinimizerPlugin({ parallel: true }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: Math.min(Object.keys(entries).length, os.cpus().length - 1),
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "true" value and the number of files is same than the number of cores', async () => {
const entries = {};
for (let i = 0; i < os.cpus().length; i++) {
entries[`entry-${i}`] = `${__dirname}/fixtures/entry.js`;
}
compiler = getCompiler({ entry: entries });
new CssMinimizerPlugin({ parallel: true }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: Math.min(Object.keys(entries).length, os.cpus().length - 1),
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
it('should match snapshot for the "true" value and the number of files is more than the number of cores', async () => {
const entries = {};
for (let i = 0; i < os.cpus().length * 2; i++) {
entries[`entry-${i}`] = `${__dirname}/fixtures/entry.js`;
}
compiler = getCompiler({
entry: {
one: `${__dirname}/fixtures/entry.js`,
two: `${__dirname}/fixtures/entry.js`,
three: `${__dirname}/fixtures/entry.js`,
four: `${__dirname}/fixtures/entry.js`,
five: `${__dirname}/fixtures/entry.js`,
six: `${__dirname}/fixtures/entry.js`,
seven: `${__dirname}/fixtures/entry.js`,
eight: `${__dirname}/fixtures/entry.js`,
},
});
new CssMinimizerPlugin({ parallel: true }).apply(compiler);
const stats = await compile(compiler);
expect(Worker).toHaveBeenCalledTimes(1);
expect(Worker).toHaveBeenLastCalledWith(workerPath, {
enableWorkerThreads: ENABLE_WORKER_THREADS,
numWorkers: Math.min(Object.keys(entries).length, os.cpus().length - 1),
});
expect(workerTransform).toHaveBeenCalledTimes(
Object.keys(readAssets(compiler, stats, /\.css$/)).length,
);
expect(workerEnd).toHaveBeenCalledTimes(1);
expect(readAssets(compiler, stats, /\.css$/)).toMatchSnapshot("assets");
expect(getErrors(stats)).toMatchSnapshot("errors");
expect(getWarnings(stats)).toMatchSnapshot("warnings");
});
});