node/test/parallel/test-process-euid-egid.js
Anna Henningsen 229dca3dee
test,tools: enable running tests under workers
Enable running tests inside workers by passing `--worker`
to `tools/test.py`. A number of tests are marked as skipped,
or have been slightly altered to fit the different environment.

PR-URL: https://github.com/nodejs/node/pull/20876
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Shingo Inoue <leko.noor@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Reviewed-By: John-David Dalton <john.david.dalton@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
2018-06-06 19:44:11 +02:00

66 lines
1.6 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
if (common.isWindows || !common.isMainThread) {
if (common.isMainThread) {
assert.strictEqual(process.geteuid, undefined);
assert.strictEqual(process.getegid, undefined);
}
assert.strictEqual(process.seteuid, undefined);
assert.strictEqual(process.setegid, undefined);
return;
}
assert.throws(() => {
process.seteuid({});
}, {
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "id" argument must be one of type number or string. ' +
'Received type object'
});
assert.throws(() => {
process.seteuid('fhqwhgadshgnsdhjsdbkhsdabkfabkveyb');
}, {
code: 'ERR_UNKNOWN_CREDENTIAL',
message: 'User identifier does not exist: fhqwhgadshgnsdhjsdbkhsdabkfabkveyb'
});
// If we're not running as super user...
if (process.getuid() !== 0) {
// Should not throw.
process.getegid();
process.geteuid();
assert.throws(() => {
process.setegid('nobody');
}, /(?:EPERM, .+|Group identifier does not exist: nobody)$/);
assert.throws(() => {
process.seteuid('nobody');
}, /^Error: (?:EPERM, .+|User identifier does not exist: nobody)$/);
return;
}
// If we are running as super user...
const oldgid = process.getegid();
try {
process.setegid('nobody');
} catch (err) {
if (err.message !== 'Group identifier does not exist: nobody') {
throw err;
} else {
process.setegid('nogroup');
}
}
const newgid = process.getegid();
assert.notStrictEqual(newgid, oldgid);
const olduid = process.geteuid();
process.seteuid('nobody');
const newuid = process.geteuid();
assert.notStrictEqual(newuid, olduid);