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

PR-URL: https://github.com/nodejs/node/pull/8622 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com> Reviewed-By: Jackson Tian <shvyo1987@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
27 lines
717 B
JavaScript
27 lines
717 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) {
|
|
if (err) throw 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);
|
|
}
|