forked from webpack-contrib/mini-css-extract-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestCases.test.js
115 lines (95 loc) · 3.17 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
import fs from 'fs';
import path from 'path';
import webpack from 'webpack';
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');
const actualContent = fs.readFileSync(path.resolve(actual, file), 'utf8');
expect(actualContent).toEqual(content);
}
}
}
function compareWarning(actual, expectedFile) {
if (!fs.existsSync(expectedFile)) return;
const expected = require(expectedFile); // eslint-disable-line global-require,import/no-dynamic-require
expect(actual).toBe(expected);
}
describe('TestCases', () => {
const casesDirectory = path.resolve(__dirname, 'cases');
const outputDirectory = path.resolve(__dirname, 'js');
for (const directory of fs.readdirSync(casesDirectory)) {
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;
}
done();
// eslint-disable-next-line no-console
console.log(
stats.toString({
context: path.resolve(__dirname, '..'),
chunks: true,
chunkModules: true,
modules: false,
})
);
if (stats.hasErrors()) {
done(
new Error(
stats.toString({
context: path.resolve(__dirname, '..'),
errorDetails: true,
})
)
);
return;
}
const expectedDirectory = path.resolve(directoryForCase, 'expected');
compareDirectory(outputDirectoryForCase, expectedDirectory);
const expectedWarning = path.resolve(directoryForCase, 'warnings.js');
const actualWarning = stats.toString({
all: false,
warnings: true,
});
compareWarning(actualWarning, expectedWarning);
done();
});
}, 10000);
}
}
});