Skip to content

Commit

Permalink
test: add tests for process.setgroups()
Browse files Browse the repository at this point in the history
Added tests to validate process.setgroups() arguments
  • Loading branch information
Masashi Hirano committed Jun 12, 2018
1 parent 31d5bde commit b2035c8
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions test/parallel/test-process-setgroups.js
@@ -0,0 +1,42 @@
'use strict';
require('../common');
const assert = require('assert');

assert.throws(
() => {
process.setgroups();
},
{
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError [ERR_INVALID_ARG_TYPE]',
message: 'The "groups" argument must be of type Array. ' +
'Received type undefined'
}
);

assert.throws(
() => {
process.setgroups([1, -1]);
},
{
code: 'ERR_OUT_OF_RANGE',
name: 'RangeError [ERR_OUT_OF_RANGE]',
message: 'The value of "groups[1]" is out of range. ' +
'It must be >= 0 && < 4294967296. Received -1'
}
);

[undefined, null, true, {}, [], () => {}].forEach((val) => {
assert.throws(
() => {
process.setgroups([val]);
},
{
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError [ERR_INVALID_ARG_TYPE]',
message: 'The "groups[0]" argument must be ' +
'one of type number or string. ' +
`Received type ${typeof val}`
}
);
});

0 comments on commit b2035c8

Please sign in to comment.