-
-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathTestCases.test.js
225 lines (186 loc) · 6.24 KB
/
TestCases.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
/**
* @jest-environment node
*/
import fs from 'fs';
import path from 'path';
import webpack from 'webpack';
function clearDirectory(dirPath) {
let files;
try {
files = fs.readdirSync(dirPath);
} catch (e) {
return;
}
if (files.length > 0) {
for (let i = 0; i < files.length; i++) {
const filePath = `${dirPath}/${files[i]}`;
if (fs.statSync(filePath).isFile()) {
fs.unlinkSync(filePath);
} else {
clearDirectory(filePath);
}
}
}
fs.rmdirSync(dirPath);
}
function compareDirectory(actual, expected) {
const files = fs.readdirSync(expected);
for (const file of files) {
const absoluteFilePath = path.resolve(expected, file);
const stats = fs.lstatSync(absoluteFilePath);
if (stats.isDirectory()) {
compareDirectory(
path.resolve(actual, file),
path.resolve(expected, file)
);
} else if (stats.isFile()) {
const content = fs.readFileSync(path.resolve(expected, file), 'utf8');
let actualContent;
if (/^MISSING/.test(content)) {
expect(fs.existsSync(path.resolve(actual, file))).toBe(false);
} else {
try {
actualContent = fs.readFileSync(path.resolve(actual, file), 'utf8');
} catch (error) {
// eslint-disable-next-line no-console
console.log(error);
const dir = fs.readdirSync(actual);
// eslint-disable-next-line no-console
console.log({ [actual]: dir });
}
expect(actualContent).toEqual(content);
}
}
}
}
describe('TestCases', () => {
const casesDirectory = path.resolve(__dirname, 'cases');
const outputDirectory = path.resolve(__dirname, 'js');
const tests = fs.readdirSync(casesDirectory).filter((test) => {
const testDirectory = path.join(casesDirectory, test);
const filterPath = path.join(testDirectory, 'test.filter.js');
// eslint-disable-next-line global-require, import/no-dynamic-require
if (fs.existsSync(filterPath) && !require(filterPath)()) {
describe.skip(test, () => {
it('filtered', () => {});
});
return false;
}
return true;
});
clearDirectory(outputDirectory);
for (const directory of tests) {
if (!/^(\.|_)/.test(directory)) {
// eslint-disable-next-line no-loop-func
it(`${directory} should compile to the expected result`, (done) => {
const directoryForCase = path.resolve(casesDirectory, directory);
const outputDirectoryForCase = path.resolve(outputDirectory, directory);
// eslint-disable-next-line import/no-dynamic-require, global-require
const webpackConfig = require(path.resolve(
directoryForCase,
'webpack.config.js'
));
for (const config of [].concat(webpackConfig)) {
Object.assign(
config,
{
mode: 'none',
context: directoryForCase,
output: Object.assign(
{
path: outputDirectoryForCase,
},
config.output
),
},
config
);
}
webpack(webpackConfig, (err, stats) => {
if (err) {
done(err);
return;
}
if (stats.hasErrors()) {
done(new Error(stats.toString()));
return;
}
done();
if (stats.hasErrors() && stats.hasWarnings()) {
done(
new Error(
stats.toString({
context: path.resolve(__dirname, '..'),
errorDetails: true,
warnings: true,
})
)
);
return;
}
const expectedDirectory = path.resolve(directoryForCase, 'expected');
const expectedDirectoryByVersion = path.join(
expectedDirectory,
`webpack-${webpack.version[0]}`
);
if (/^hmr/.test(directory)) {
let res = fs
.readFileSync(path.resolve(outputDirectoryForCase, 'main.js'))
.toString();
const date = Date.now().toString().slice(0, 6);
const dateRegexp = new RegExp(`${date}\\d+`, 'gi');
res = res.replace(dateRegexp, '');
if (webpack.version[0] === '4') {
const matchAll = res.match(/var hotCurrentHash = "([\d\w].*)"/i);
const replacer = new Array(matchAll[1].length);
res = res.replace(
/var hotCurrentHash = "([\d\w].*)"/i,
`var hotCurrentHash = "${replacer.fill('x').join('')}"`
);
} else {
const matchAll = res.match(
/__webpack_require__\.h = \(\) => "([\d\w].*)"/i
);
const replacer = new Array(matchAll[1].length);
res = res.replace(
/__webpack_require__\.h = \(\) => "([\d\w].*)"/i,
`__webpack_require__.h = () => "${replacer.fill('x').join('')}"`
);
}
fs.writeFileSync(
path.resolve(outputDirectoryForCase, 'main.js'),
res
);
}
if (fs.existsSync(expectedDirectoryByVersion)) {
compareDirectory(
outputDirectoryForCase,
expectedDirectoryByVersion
);
} else if (fs.existsSync(expectedDirectory)) {
compareDirectory(outputDirectoryForCase, expectedDirectory);
}
const warningsFile = path.resolve(directoryForCase, 'warnings.js');
if (fs.existsSync(warningsFile)) {
const actualWarnings = stats.toString({
all: false,
warnings: true,
});
// eslint-disable-next-line global-require, import/no-dynamic-require
const expectedWarnings = require(warningsFile);
expect(
actualWarnings
.trim()
.replace(/\*\scss\s(.*)?!/g, '* css /path/to/loader.js!')
).toBe(
expectedWarnings
.trim()
.replace(/\*\scss\s(.*)?!/g, '* css /path/to/loader.js!')
);
}
done();
});
}, 10000);
}
}
});