mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
fb6e980e1e
PR-URL: https://github.com/nodejs/node/pull/17948 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
36 lines
971 B
JavaScript
36 lines
971 B
JavaScript
'use strict';
|
|
// Tests that vm.createScript and runInThisContext correctly handle errors
|
|
// thrown by option property getters.
|
|
// See https://github.com/nodejs/node/issues/12369.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const execFile = require('child_process').execFile;
|
|
|
|
const scripts = [];
|
|
|
|
['filename', 'cachedData', 'produceCachedData', 'lineOffset', 'columnOffset']
|
|
.forEach((prop) => {
|
|
scripts.push(`vm.createScript('', {
|
|
get ${prop} () {
|
|
throw new Error('xyz');
|
|
}
|
|
})`);
|
|
});
|
|
|
|
['breakOnSigint', 'timeout', 'displayErrors']
|
|
.forEach((prop) => {
|
|
scripts.push(`vm.createScript('').runInThisContext({
|
|
get ${prop} () {
|
|
throw new Error('xyz');
|
|
}
|
|
})`);
|
|
});
|
|
|
|
scripts.forEach((script) => {
|
|
const node = process.execPath;
|
|
execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
|
|
assert(stderr.includes('Error: xyz'), 'createScript crashes');
|
|
}));
|
|
});
|