mirror of
https://github.com/zhigang1992/esbuild.git
synced 2026-01-12 17:13:19 +08:00
123 lines
3.3 KiB
JavaScript
123 lines
3.3 KiB
JavaScript
// This test verifies that:
|
|
// - a running service will not prevent NodeJS to exit if there is no compilation in progress.
|
|
// - the NodeJS process will continue running if there is a serve() active or a transform or build in progress.
|
|
|
|
const assert = require('assert')
|
|
const { fork } = require('child_process');
|
|
|
|
// The tests to run in the child process
|
|
async function tests() {
|
|
const esbuild = require('./esbuild').installForTests()
|
|
|
|
async function testTransform() {
|
|
const t1 = await esbuild.transform(`1+2`)
|
|
const t2 = await esbuild.transform(`1+3`)
|
|
assert.strictEqual(t1.code, `1 + 2;\n`)
|
|
assert.strictEqual(t2.code, `1 + 3;\n`)
|
|
}
|
|
|
|
async function testServe() {
|
|
const server = await esbuild.serve({}, {})
|
|
assert.strictEqual(server.host, '0.0.0.0')
|
|
assert.strictEqual(typeof server.port, 'number')
|
|
server.stop()
|
|
await server.wait
|
|
}
|
|
|
|
async function testBuild() {
|
|
const result = await esbuild.build({
|
|
stdin: { contents: '1+2' },
|
|
write: false,
|
|
incremental: true,
|
|
})
|
|
assert.deepStrictEqual(result.outputFiles.length, 1);
|
|
assert.deepStrictEqual(result.outputFiles[0].text, '1 + 2;\n');
|
|
assert.deepStrictEqual(result.stop, void 0);
|
|
|
|
const result2 = await result.rebuild()
|
|
assert.deepStrictEqual(result2.outputFiles.length, 1);
|
|
assert.deepStrictEqual(result2.outputFiles[0].text, '1 + 2;\n');
|
|
|
|
const result3 = await result2.rebuild()
|
|
assert.deepStrictEqual(result3.outputFiles.length, 1);
|
|
assert.deepStrictEqual(result3.outputFiles[0].text, '1 + 2;\n');
|
|
|
|
result2.rebuild.dispose()
|
|
}
|
|
|
|
async function testWatch() {
|
|
const result = await esbuild.build({
|
|
stdin: { contents: '1+2' },
|
|
write: false,
|
|
watch: true,
|
|
})
|
|
|
|
assert.deepStrictEqual(result.rebuild, void 0);
|
|
assert.deepStrictEqual(result.outputFiles.length, 1);
|
|
assert.deepStrictEqual(result.outputFiles[0].text, '1 + 2;\n');
|
|
|
|
result.stop()
|
|
}
|
|
|
|
async function testWatchAndIncremental() {
|
|
const result = await esbuild.build({
|
|
stdin: { contents: '1+2' },
|
|
write: false,
|
|
incremental: true,
|
|
watch: true,
|
|
})
|
|
|
|
assert.deepStrictEqual(result.outputFiles.length, 1);
|
|
assert.deepStrictEqual(result.outputFiles[0].text, '1 + 2;\n');
|
|
|
|
result.stop()
|
|
result.rebuild.dispose()
|
|
}
|
|
|
|
await testTransform()
|
|
await testServe()
|
|
await testBuild()
|
|
await testWatch()
|
|
}
|
|
|
|
// Called when this is the child process to run the tests.
|
|
function runTests() {
|
|
process.exitCode = 1;
|
|
tests().then(() => {
|
|
process.exitCode = 0;
|
|
}, (error) => {
|
|
console.error('❌', error)
|
|
});
|
|
}
|
|
|
|
// A child process need to be started to verify that a running service is not hanging node.
|
|
function startChildProcess() {
|
|
const child = fork(__filename, ['__forked__'], { stdio: 'inherit', env: process.env });
|
|
|
|
const timeout = setTimeout(() => {
|
|
console.error('❌ node unref test timeout - child_process.unref() broken?')
|
|
process.exit(1);
|
|
}, 30 * 1000);
|
|
|
|
child.on('error', (error) => {
|
|
console.error('❌', error);
|
|
process.exit(1);
|
|
})
|
|
|
|
child.on('exit', (code) => {
|
|
clearTimeout(timeout);
|
|
if (code) {
|
|
console.error(`❌ node unref tests failed: child exited with code ${code}`)
|
|
process.exit(1);
|
|
} else {
|
|
console.log(`✅ node unref tests passed`)
|
|
}
|
|
})
|
|
}
|
|
|
|
if (process.argv[2] === '__forked__') {
|
|
runTests();
|
|
} else {
|
|
startChildProcess();
|
|
}
|