mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 07:27:32 +00:00

PR-URL: https://github.com/nodejs/node/pull/10543 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
27 lines
718 B
JavaScript
27 lines
718 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
var exec = require('child_process').exec;
|
|
|
|
if (common.isOSX) {
|
|
common.skip('Output of `id -G` is unreliable on Darwin.');
|
|
return;
|
|
}
|
|
|
|
if (typeof process.getgroups === 'function') {
|
|
var groups = process.getgroups();
|
|
assert(Array.isArray(groups));
|
|
assert(groups.length > 0);
|
|
exec('id -G', function(err, stdout) {
|
|
assert.ifError(err);
|
|
var real_groups = stdout.match(/\d+/g).map(Number);
|
|
assert.equal(groups.length, real_groups.length);
|
|
check(groups, real_groups);
|
|
check(real_groups, groups);
|
|
});
|
|
}
|
|
|
|
function check(a, b) {
|
|
for (var i = 0; i < a.length; ++i) assert.notStrictEqual(b.indexOf(a[i]), -1);
|
|
}
|