mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
fce8fbadcd
PR-URL: https://github.com/nodejs/node/pull/49825 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
assert.throws(
|
|
() => {
|
|
Object.defineProperty(process.env, 'foo', {
|
|
value: 'foo1'
|
|
});
|
|
},
|
|
{
|
|
code: 'ERR_INVALID_OBJECT_DEFINE_PROPERTY',
|
|
name: 'TypeError',
|
|
message: '\'process.env\' only accepts a ' +
|
|
'configurable, writable,' +
|
|
' and enumerable data descriptor'
|
|
}
|
|
);
|
|
|
|
assert.strictEqual(process.env.foo, undefined);
|
|
process.env.foo = 'foo2';
|
|
assert.strictEqual(process.env.foo, 'foo2');
|
|
|
|
assert.throws(
|
|
() => {
|
|
Object.defineProperty(process.env, 'goo', {
|
|
get() {
|
|
return 'goo';
|
|
},
|
|
set() {}
|
|
});
|
|
},
|
|
{
|
|
code: 'ERR_INVALID_OBJECT_DEFINE_PROPERTY',
|
|
name: 'TypeError',
|
|
message: '\'process.env\' does not accept an ' +
|
|
'accessor(getter/setter) descriptor'
|
|
}
|
|
);
|
|
|
|
const attributes = ['configurable', 'writable', 'enumerable'];
|
|
|
|
for (const attribute of attributes) {
|
|
assert.throws(
|
|
() => {
|
|
Object.defineProperty(process.env, 'goo', {
|
|
[attribute]: false
|
|
});
|
|
},
|
|
{
|
|
code: 'ERR_INVALID_OBJECT_DEFINE_PROPERTY',
|
|
name: 'TypeError',
|
|
message: '\'process.env\' only accepts a ' +
|
|
'configurable, writable,' +
|
|
' and enumerable data descriptor'
|
|
}
|
|
);
|
|
}
|
|
|
|
assert.strictEqual(process.env.goo, undefined);
|
|
Object.defineProperty(process.env, 'goo', {
|
|
value: 'goo',
|
|
configurable: true,
|
|
writable: true,
|
|
enumerable: true
|
|
});
|
|
assert.strictEqual(process.env.goo, 'goo');
|