The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
22 lines
578 B
JavaScript
22 lines
578 B
JavaScript
// Requires special privileges
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var oldgid = process.getgid();
|
|
process.setgid('nobody');
|
|
var newgid = process.getgid();
|
|
assert.notEqual(newgid, oldgid, 'gids expected to be different');
|
|
|
|
var olduid = process.getuid();
|
|
process.setuid('nobody');
|
|
var newuid = process.getuid();
|
|
assert.notEqual(newuid, olduid, 'uids expected to be different');
|
|
|
|
try {
|
|
process.setuid('nobody1234');
|
|
} catch (e) {
|
|
assert.equal(e.message,
|
|
'failed to resolve group',
|
|
'unexpected error message'
|
|
);
|
|
}
|