forked from evanw/esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwasm-tests.js
282 lines (251 loc) · 8.43 KB
/
wasm-tests.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
const { removeRecursiveSync, buildWasmLib } = require('./esbuild.js');
const child_process = require('child_process');
const assert = require('assert');
const path = require('path');
const fs = require('fs');
const tests = {
serveTest({ testDir, esbuildPathWASM }) {
try {
child_process.execFileSync('node', [
esbuildPathWASM,
'--servedir=.',
'--log-level=warning',
], {
stdio: 'pipe',
cwd: testDir,
});
throw new Error('Expected an error to be thrown');
} catch (err) {
assert.strictEqual(err.stderr + '', `✘ [ERROR] The "serve" API is not supported when using WebAssembly\n\n`)
}
},
basicStdinTest({ testDir, esbuildPathWASM }) {
const stdout = child_process.execFileSync('node', [
esbuildPathWASM,
'--format=cjs',
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export default 1+2`,
}).toString();
// Check that the bundle is valid
const module = { exports: {} };
new Function('module', 'exports', stdout)(module, module.exports);
assert.deepStrictEqual(module.exports.default, 3);
},
stdinOutfileTest({ testDir, esbuildPathWASM }) {
const outfile = path.join(testDir, 'out.js')
child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=cjs',
'--outfile=' + outfile,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export default 1+2`,
}).toString();
// Check that the bundle is valid
const exports = require(outfile);
assert.deepStrictEqual(exports.default, 3);
},
stdinStdoutUnicodeTest({ testDir, esbuildPathWASM }) {
const stdout = child_process.execFileSync('node', [
esbuildPathWASM,
'--format=cjs',
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export default ['π', '🍕']`,
}).toString();
// Check that the bundle is valid
const module = { exports: {} };
new Function('module', 'exports', stdout)(module, module.exports);
assert.deepStrictEqual(module.exports.default, ['π', '🍕']);
},
stdinOutfileUnicodeTest({ testDir, esbuildPathWASM }) {
const outfile = path.join(testDir, 'out.js')
child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=cjs',
'--outfile=' + outfile,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export default ['π', '🍕']`,
}).toString();
// Check that the bundle is valid
const exports = require(outfile);
assert.deepStrictEqual(exports.default, ['π', '🍕']);
},
stdoutLargeTest({ testDir, esbuildPathNative, esbuildPathWASM }) {
const entryPoint = path.join(__dirname, 'js-api-tests.js');
// Build with native
const stdoutNative = child_process.execFileSync(esbuildPathNative, [
entryPoint,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
}).toString();
// Build with WASM
const stdoutWASM = child_process.execFileSync('node', [
esbuildPathWASM,
entryPoint,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
}).toString();
// Check that the output is equal
assert.deepStrictEqual(stdoutNative.length, stdoutWASM.length);
assert.deepStrictEqual(stdoutNative, stdoutWASM);
},
outfileLargeTest({ testDir, esbuildPathNative, esbuildPathWASM }) {
const entryPoint = path.join(__dirname, 'js-api-tests.js');
// Build with native
const outfileNative = path.join(testDir, 'a.js');
const stdoutNative = child_process.execFileSync(esbuildPathNative, [
entryPoint,
'--outfile=' + outfileNative,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
}).toString();
const jsNative = fs.readFileSync(outfileNative, 'utf8');
// Build with WASM
const outfileWASM = path.join(testDir, 'b.js');
const stdoutWASM = child_process.execFileSync('node', [
esbuildPathWASM,
entryPoint,
'--outfile=' + outfileWASM,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
}).toString();
const jsWASM = fs.readFileSync(outfileWASM, 'utf8');
// Check that the output is equal
assert.deepStrictEqual(jsNative.length, jsWASM.length);
assert.deepStrictEqual(jsNative, jsWASM);
},
outfileNestedTest({ testDir, esbuildPathWASM }) {
const outfile = path.join(testDir, 'a', 'b', 'c', 'd', 'out.js');
child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=cjs',
'--outfile=' + outfile,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export default 123`,
}).toString();
// Check that the bundle is valid
const exports = require(outfile);
assert.deepStrictEqual(exports.default, 123);
},
metafileNestedTest({ testDir, esbuildPathWASM }) {
const outfile = path.join(testDir, 'out.js');
const metafile = path.join(testDir, 'a', 'b', 'c', 'd', 'meta.json');
const cwd = path.join(testDir, 'a', 'b')
fs.mkdirSync(cwd, { recursive: true })
child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=cjs',
'--outfile=' + outfile,
'--metafile=' + metafile,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd,
input: `export default 123`,
}).toString();
// Check that the bundle is valid
const exports = require(outfile);
assert.deepStrictEqual(exports.default, 123);
const json = JSON.parse(fs.readFileSync(metafile, 'utf8'));
assert.deepStrictEqual(json.outputs['../../out.js'].entryPoint, '<stdin>');
},
importRelativeFileTest({ testDir, esbuildPathWASM }) {
const outfile = path.join(testDir, 'out.js')
const packageJSON = path.join(__dirname, '..', 'npm', 'esbuild-wasm', 'package.json');
child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=cjs',
'--outfile=' + outfile,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export {default} from ` + JSON.stringify('./' + path.relative(testDir, packageJSON)),
}).toString();
// Check that the bundle is valid
const exports = require(outfile);
assert.deepStrictEqual(exports.default, require(packageJSON));
},
importAbsoluteFileTest({ testDir, esbuildPathWASM }) {
const outfile = path.join(testDir, 'out.js')
const packageJSON = path.join(__dirname, '..', 'npm', 'esbuild-wasm', 'package.json');
child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=cjs',
'--outfile=' + outfile,
'--log-level=warning',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `export {default} from ` + JSON.stringify(packageJSON),
}).toString();
// Check that the bundle is valid
const exports = require(outfile);
assert.deepStrictEqual(exports.default, require(packageJSON));
},
};
function runTest({ testDir, esbuildPathNative, esbuildPathWASM, test }) {
try {
fs.mkdirSync(testDir, { recursive: true })
test({ testDir, esbuildPathNative, esbuildPathWASM })
return true
} catch (e) {
console.error(`❌ ${test.name} failed: ${e && e.message || e}`)
return false
}
}
async function main() {
// Generate the WebAssembly module
const esbuildPathNative = path.join(__dirname, '..', process.platform === 'win32' ? 'esbuild.exe' : 'esbuild');
await buildWasmLib(esbuildPathNative);
const esbuildPathWASM = path.join(__dirname, '..', 'npm', 'esbuild-wasm', 'bin', 'esbuild');
const testDir = path.join(__dirname, '.wasm-tests')
// Run all tests in serial because WebAssembly compilation is a CPU hog
let allTestsPassed = true;
for (const test in tests) {
if (!runTest({
testDir: path.join(testDir, test),
test: tests[test],
esbuildPathNative,
esbuildPathWASM,
})) {
allTestsPassed = false;
}
}
if (!allTestsPassed) {
console.error(`❌ wasm-tests failed`)
process.exit(1)
} else {
console.log(`✅ wasm-tests passed`)
removeRecursiveSync(testDir)
}
}
main().catch(e => setTimeout(() => { throw e }))