summaryrefslogtreecommitdiff
path: root/test/parallel/test-os-userinfo-handles-getter-errors.js
blob: 146ab6c812379faf4170fd67697ac1eb963e6eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';
// Tests that os.userInfo correctly handles errors thrown by option property
// getters. See https://github.com/nodejs/node/issues/12370.

const common = require('../common');
const assert = require('assert');
const execFile = require('child_process').execFile;

const script = `os.userInfo({
  get encoding() {
    throw new Error('xyz');
  }
})`;

const node = process.execPath;
execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
  assert(stderr.includes('Error: xyz'), 'userInfo crashes');
}));