Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
23 lines
614 B
JavaScript
23 lines
614 B
JavaScript
'use strict';
|
|
// Requires special privileges
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
var oldgid = process.getgid();
|
|
process.setgid('nobody');
|
|
var newgid = process.getgid();
|
|
assert.notStrictEqual(newgid, oldgid, 'gids expected to be different');
|
|
|
|
var olduid = process.getuid();
|
|
process.setuid('nobody');
|
|
var newuid = process.getuid();
|
|
assert.notStrictEqual(newuid, olduid, 'uids expected to be different');
|
|
|
|
try {
|
|
process.setuid('nobody1234');
|
|
} catch (e) {
|
|
assert.strictEqual(e.message,
|
|
'failed to resolve group',
|
|
'unexpected error message'
|
|
);
|
|
}
|