mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 18:57:34 +00:00

Move util::WeakReference to a separate header and implement {de}serialization for it to be snapshotable. PR-URL: https://github.com/nodejs/node/pull/44193 Refs: https://github.com/nodejs/node/issues/44014 Refs: https://github.com/nodejs/node/issues/37476 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
61 lines
1.5 KiB
JavaScript
61 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
// This tests that weak references work across serialization.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
const tmpdir = require('../common/tmpdir');
|
|
const fixtures = require('../common/fixtures');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
tmpdir.refresh();
|
|
const blobPath = path.join(tmpdir.path, 'snapshot.blob');
|
|
|
|
function runTest(entry) {
|
|
console.log('running test with', entry);
|
|
{
|
|
const child = spawnSync(process.execPath, [
|
|
'--expose-internals',
|
|
'--expose-gc',
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
'--build-snapshot',
|
|
entry,
|
|
], {
|
|
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, [
|
|
'--expose-internals',
|
|
'--expose-gc',
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
], {
|
|
cwd: tmpdir.path,
|
|
env: {
|
|
...process.env,
|
|
}
|
|
});
|
|
|
|
const stdout = child.stdout.toString().trim();
|
|
const stderr = child.stderr.toString().trim();
|
|
console.log(`[stdout]:\n${stdout}\n`);
|
|
console.log(`[stderr]:\n${stderr}\n`);
|
|
assert.strictEqual(child.status, 0);
|
|
}
|
|
}
|
|
|
|
runTest(fixtures.path('snapshot', 'weak-reference.js'));
|
|
runTest(fixtures.path('snapshot', 'weak-reference-gc.js'));
|