mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
966e3d3493
PR-URL: https://github.com/nodejs/node/pull/49128 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
228 lines
5.6 KiB
JavaScript
228 lines
5.6 KiB
JavaScript
// This tests invalid options for --experimental-sea-config.
|
|
|
|
'use strict';
|
|
|
|
require('../common');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const { writeFileSync, mkdirSync } = require('fs');
|
|
const { spawnSync } = require('child_process');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = 'non-existent-relative.json';
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert.match(
|
|
stderr,
|
|
/Cannot read single executable configuration from non-existent-relative\.json/
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('non-existent-absolute.json');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`Cannot read single executable configuration from ${config}`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('invalid.json');
|
|
writeFileSync(config, '\n{\n"main"', 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert.match(stderr, /SyntaxError: Expected ':' after property name/);
|
|
assert(
|
|
stderr.includes(
|
|
`Cannot parse JSON from ${config}`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('empty.json');
|
|
writeFileSync(config, '{}', 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`"main" field of ${config} is not a non-empty string`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('no-main.json');
|
|
writeFileSync(config, '{"output": "test.blob"}', 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`"main" field of ${config} is not a non-empty string`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('no-output.json');
|
|
writeFileSync(config, '{"main": "bundle.js"}', 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`"output" field of ${config} is not a non-empty string`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('invalid-disableExperimentalSEAWarning.json');
|
|
writeFileSync(config, `
|
|
{
|
|
"main": "bundle.js",
|
|
"output": "sea-prep.blob",
|
|
"disableExperimentalSEAWarning": "💥"
|
|
}
|
|
`, 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`"disableExperimentalSEAWarning" field of ${config} is not a Boolean`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('nonexistent-main-relative.json');
|
|
writeFileSync(config, '{"main": "bundle.js", "output": "sea.blob"}', 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert.match(stderr, /Cannot read main script bundle\.js/);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('nonexistent-main-absolute.json');
|
|
const main = tmpdir.resolve('bundle.js');
|
|
const configJson = JSON.stringify({
|
|
main,
|
|
output: 'sea.blob'
|
|
});
|
|
writeFileSync(config, configJson, 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`Cannot read main script ${main}`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('output-is-dir-absolute.json');
|
|
const main = tmpdir.resolve('bundle.js');
|
|
const output = tmpdir.resolve('output-dir');
|
|
mkdirSync(output);
|
|
writeFileSync(main, 'console.log("hello")', 'utf-8');
|
|
const configJson = JSON.stringify({
|
|
main,
|
|
output,
|
|
});
|
|
writeFileSync(config, configJson, 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert(
|
|
stderr.includes(
|
|
`Cannot write output to ${output}`
|
|
)
|
|
);
|
|
}
|
|
|
|
{
|
|
tmpdir.refresh();
|
|
const config = tmpdir.resolve('output-is-dir-relative.json');
|
|
const main = tmpdir.resolve('bundle.js');
|
|
const output = tmpdir.resolve('output-dir');
|
|
mkdirSync(output);
|
|
writeFileSync(main, 'console.log("hello")', 'utf-8');
|
|
const configJson = JSON.stringify({
|
|
main,
|
|
output: 'output-dir'
|
|
});
|
|
writeFileSync(config, configJson, 'utf8');
|
|
const child = spawnSync(
|
|
process.execPath,
|
|
['--experimental-sea-config', config], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
|
|
const stderr = child.stderr.toString();
|
|
assert.strictEqual(child.status, 1);
|
|
assert.match(stderr, /Cannot write output to output-dir/);
|
|
}
|