mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
e738edce6a
Subsystems: blob, child_process, common, crypto, http, http2, readline, repl, snapshot, trace_events PR-URL: https://github.com/nodejs/node/pull/49127 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
// This tests that user land snapshots works when the instance restored from
|
|
// the snapshot is launched as a CJS module.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const fixtures = require('../common/fixtures');
|
|
const fs = require('fs');
|
|
|
|
tmpdir.refresh();
|
|
const blobPath = tmpdir.resolve('snapshot.blob');
|
|
const file = fixtures.path('snapshot', 'mutate-fs.js');
|
|
const checkFile = fixtures.path('snapshot', 'check-mutate-fs.js');
|
|
|
|
{
|
|
// Create the snapshot.
|
|
const child = spawnSync(process.execPath, [
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
'--build-snapshot',
|
|
file,
|
|
], {
|
|
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(blobPath);
|
|
assert(stats.isFile());
|
|
}
|
|
|
|
{
|
|
// Run the check file as a CJS module
|
|
const child = spawnSync(process.execPath, [
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
checkFile,
|
|
], {
|
|
cwd: tmpdir.path
|
|
});
|
|
|
|
if (child.status !== 0) {
|
|
console.log(child.stderr.toString());
|
|
console.log(child.stdout.toString());
|
|
assert.strictEqual(child.status, 0);
|
|
}
|
|
}
|