forked from evanw/esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwasm-tests.js
390 lines (341 loc) · 11.7 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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
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));
},
zipFile({ testDir, esbuildPathWASM }) {
const entry = path.join(testDir, 'entry.js')
fs.writeFileSync(entry, `
import foo from './test.zip/foo.js'
import bar from './test.zip/bar/bar.js'
import __virtual__1 from './test.zip/__virtual__/ignored/0/foo.js'
import __virtual__2 from './test.zip/ignored/__virtual__/ignored/1/foo.js'
import __virtual__3 from './test.zip/__virtual__/ignored/1/test.zip/foo.js'
import $$virtual1 from './test.zip/$$virtual/ignored/0/foo.js'
import $$virtual2 from './test.zip/ignored/$$virtual/ignored/1/foo.js'
import $$virtual3 from './test.zip/$$virtual/ignored/1/test.zip/foo.js'
console.log({
foo,
bar,
__virtual__1,
__virtual__2,
__virtual__3,
$$virtual1,
$$virtual2,
$$virtual3,
})
`)
// This uses the real file system instead of the mock file system so that
// we can check that everything works as expected on Windows, which is not
// a POSIX environment.
fs.writeFileSync(path.join(testDir, 'test.zip'), Buffer.from(
`UEsDBAoAAgAAAG1qCFUSAXosFQAAABUAAAAGABwAZm9vLmpzVVQJAAOeRfFioEXxYnV4C` +
`wABBPUBAAAEFAAAAGV4cG9ydCBkZWZhdWx0ICdmb28nClBLAwQKAAIAAABzaghVwuDbLR` +
`UAAAAVAAAACgAcAGJhci9iYXIuanNVVAkAA6lF8WKrRfFidXgLAAEE9QEAAAQUAAAAZXh` +
`wb3J0IGRlZmF1bHQgJ2JhcicKUEsBAh4DCgACAAAAbWoIVRIBeiwVAAAAFQAAAAYAGAAA` +
`AAAAAQAAAKSBAAAAAGZvby5qc1VUBQADnkXxYnV4CwABBPUBAAAEFAAAAFBLAQIeAwoAA` +
`gAAAHNqCFXC4NstFQAAABUAAAAKABgAAAAAAAEAAACkgVUAAABiYXIvYmFyLmpzVVQFAA` +
`OpRfFidXgLAAEE9QEAAAQUAAAAUEsFBgAAAAACAAIAnAAAAK4AAAAAAA==`, 'base64'))
const stdout = child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
entry,
], {
stdio: 'pipe',
cwd: testDir,
}).toString();
assert.strictEqual(stdout, `(() => {
// test.zip/foo.js
var foo_default = "foo";
// test.zip/bar/bar.js
var bar_default = "bar";
// test.zip/__virtual__/ignored/0/foo.js
var foo_default2 = "foo";
// test.zip/ignored/__virtual__/ignored/1/foo.js
var foo_default3 = "foo";
// test.zip/__virtual__/ignored/1/test.zip/foo.js
var foo_default4 = "foo";
// test.zip/$$virtual/ignored/0/foo.js
var foo_default5 = "foo";
// test.zip/ignored/$$virtual/ignored/1/foo.js
var foo_default6 = "foo";
// test.zip/$$virtual/ignored/1/test.zip/foo.js
var foo_default7 = "foo";
// entry.js
console.log({
foo: foo_default,
bar: bar_default,
__virtual__1: foo_default2,
__virtual__2: foo_default3,
__virtual__3: foo_default4,
$$virtual1: foo_default5,
$$virtual2: foo_default6,
$$virtual3: foo_default7
});
})();
`)
},
// https://github.com/evanw/esbuild/issues/3001
nodePathsReaddirEINVAL({ testDir, esbuildPathWASM }) {
const libDir = path.join(testDir, 'lib');
const libFile = path.join(libDir, 'file.js');
fs.mkdirSync(libDir, { recursive: true });
fs.writeFileSync(libFile, 'foo()');
const stdout = child_process.execFileSync('node', [
esbuildPathWASM,
'--bundle',
'--format=esm',
], {
stdio: ['pipe', 'pipe', 'inherit'],
cwd: testDir,
input: `import "file.js"`,
env: { ...process.env, NODE_PATH: libDir },
}).toString();
assert.deepStrictEqual(stdout, '// lib/file.js\nfoo();\n');
},
};
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 }))