mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 18:07:48 +00:00

In applications with entry points deserialized from snapshots, they don't need an additional CLI argument for the entry point script so process.argv[1] is going to be other user-defiend arguments. We could consider copying process.argv[0] as process.argv[1] like what we do for single executable applications, but for now just don't exapnd it so it's easier to backport to previous releases. PR-URL: https://github.com/nodejs/node/pull/47466 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
// This tests snapshot JS API using the example in the docs.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
tmpdir.refresh();
|
|
const blobPath = path.join(tmpdir.path, 'snapshot.blob');
|
|
const code = `
|
|
require('v8').startupSnapshot.setDeserializeMainFunction(() => {
|
|
console.log(JSON.stringify(process.argv));
|
|
});
|
|
`;
|
|
{
|
|
fs.writeFileSync(path.join(tmpdir.path, 'entry.js'), code, 'utf8');
|
|
const child = spawnSync(process.execPath, [
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
'--build-snapshot',
|
|
'entry.js',
|
|
], {
|
|
cwd: tmpdir.path
|
|
});
|
|
if (child.status !== 0) {
|
|
console.log(child.stderr.toString());
|
|
console.log(child.stdout.toString());
|
|
assert.strictEqual(child.status, 0);
|
|
}
|
|
const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
|
|
assert(stats.isFile());
|
|
}
|
|
|
|
{
|
|
const child = spawnSync(process.execPath, [
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
'argv1',
|
|
'argv2',
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env: {
|
|
...process.env,
|
|
}
|
|
});
|
|
|
|
const stdout = JSON.parse(child.stdout.toString().trim());
|
|
assert.deepStrictEqual(stdout, [
|
|
process.execPath,
|
|
'argv1',
|
|
'argv2',
|
|
]);
|
|
assert.strictEqual(child.status, 0);
|
|
}
|