mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

It's difficult for V8 to handle Error.stackTraceLimit in the snapshot, so delete it from the Error constructor if it's present before snapshot serialization, and re-install it after deserialization. In addition try not to touch it from our internals during snapshot building in the first place by updating isErrorStackTraceLimitWritable(). PR-URL: https://github.com/nodejs/node/pull/44203 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
// This tests the TypeScript compiler in the snapshot.
|
|
|
|
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');
|
|
|
|
// Concat test/fixtures/snapshot/typescript.js with
|
|
// test/fixtures/snapshot/typescript.js into
|
|
// tmpdir/snapshot.js.
|
|
const file = path.join(tmpdir.path, 'snapshot.js');
|
|
fs.copyFileSync(fixtures.path('snapshot', 'typescript.js'), file);
|
|
fs.appendFileSync(file,
|
|
fs.readFileSync(fixtures.path('snapshot', 'typescript-main.js')));
|
|
|
|
{
|
|
const child = spawnSync(process.execPath, [
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
'--build-snapshot',
|
|
file,
|
|
], {
|
|
cwd: tmpdir.path
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
const stdout = child.stdout.toString();
|
|
console.log(stderr);
|
|
console.log(stdout);
|
|
assert.strictEqual(child.status, 0);
|
|
|
|
const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
|
|
assert(stats.isFile());
|
|
}
|
|
|
|
{
|
|
const outPath = path.join(tmpdir.path, 'ts-example.js');
|
|
const child = spawnSync(process.execPath, [
|
|
'--snapshot-blob',
|
|
blobPath,
|
|
fixtures.path('snapshot', 'ts-example.ts'),
|
|
outPath,
|
|
], {
|
|
cwd: tmpdir.path,
|
|
});
|
|
const stderr = child.stderr.toString();
|
|
const snapshotOutput = child.stdout.toString();
|
|
console.log(stderr);
|
|
console.log(snapshotOutput);
|
|
|
|
assert.strictEqual(child.status, 0);
|
|
const result = fs.readFileSync(outPath, 'utf8');
|
|
const expected = fs.readFileSync(
|
|
fixtures.path('snapshot', 'ts-example.js'), 'utf8');
|
|
assert.strictEqual(result, expected);
|
|
}
|