summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-api-handles-getter-errors.js
blob: 6a74fb29c17c818c22bf8e197cebfa10d5e81668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'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');
  }));
});