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

Make sure `constants` object and all the nested objects don't inherit from `Object.prototype` but from `null`. PR-URL: https://github.com/nodejs/node/pull/10458 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>
31 lines
877 B
JavaScript
31 lines
877 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const constants = process.binding('constants');
|
|
const assert = require('assert');
|
|
|
|
assert.deepStrictEqual(
|
|
Object.keys(constants).sort(), ['crypto', 'fs', 'os', 'zlib']
|
|
);
|
|
|
|
assert.deepStrictEqual(
|
|
Object.keys(constants.os).sort(), ['UV_UDP_REUSEADDR', 'errno', 'signals']
|
|
);
|
|
|
|
// Make sure all the constants objects don't inherit from Object.prototype
|
|
const inheritedProperties = Object.getOwnPropertyNames(Object.prototype);
|
|
function test(obj) {
|
|
assert(obj);
|
|
assert.strictEqual(Object.prototype.toString.call(obj), '[object Object]');
|
|
assert.strictEqual(Object.getPrototypeOf(obj), null);
|
|
|
|
inheritedProperties.forEach((property) => {
|
|
assert.strictEqual(property in obj, false);
|
|
});
|
|
}
|
|
|
|
[
|
|
constants, constants.crypto, constants.fs, constants.os, constants.zlib,
|
|
constants.os.errno, constants.os.signals
|
|
].forEach(test);
|