forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor test for situations where it was expected to fail. Move from disabled directory to parallel. PR-URL: nodejs#12403 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
- Loading branch information
Showing
2 changed files
with
48 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
const assert = require('assert'); | ||
|
||
if (common.isWindows) { | ||
// uid/gid functions are POSIX only | ||
assert.strictEqual(process.getuid, undefined); | ||
assert.strictEqual(process.setuid, undefined); | ||
assert.strictEqual(process.getgid, undefined); | ||
assert.strictEqual(process.setgid, undefined); | ||
return; | ||
} | ||
|
||
assert.throws(() => { | ||
process.setuid('fhqwhgadshgnsdhjsdbkhsdabkfabkveybvf'); | ||
}, /^Error: setuid user id does not exist$/); | ||
|
||
// If we're not running as super user... | ||
if (process.getuid() !== 0) { | ||
assert.doesNotThrow(() => { | ||
process.getgid(); | ||
process.getuid(); | ||
}); | ||
|
||
assert.throws( | ||
() => { process.setgid('nobody'); }, | ||
/^Error: (EPERM, .+|setgid group id does not exist)$/ | ||
); | ||
|
||
assert.throws( | ||
() => { process.setuid('nobody'); }, | ||
/^Error: EPERM, / | ||
); | ||
return; | ||
} | ||
|
||
// If we are running as super user... | ||
const oldgid = process.getgid(); | ||
process.setgid('nobody'); | ||
const newgid = process.getgid(); | ||
assert.notStrictEqual(newgid, oldgid); | ||
|
||
const olduid = process.getuid(); | ||
process.setuid('nobody'); | ||
const newuid = process.getuid(); | ||
assert.notStrictEqual(newuid, olduid); |