From f88476ab6fac34b3fee866418f49267111b94f36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 15 Jan 2018 14:34:09 +0100 Subject: [PATCH] src: delete proccess.env values set to undefined Before this commit, setting a property of process.env to undefined would set the value to the string "undefined". This changes the behavior to instead remove the value, working like the delete operator. Refs: https://github.com/nodejs/node/pull/15089 --- doc/api/process.md | 16 +++++++++++++--- src/node.cc | 26 ++++++++++++++++++-------- test/parallel/test-process-env.js | 9 +++++++++ 3 files changed, 40 insertions(+), 11 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index 405d6296353f88..94f8d15c6ee632 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -836,6 +836,11 @@ emitMyWarning(); ## process.env * {Object} @@ -885,12 +890,13 @@ Example: process.env.test = null; console.log(process.env.test); // => 'null' -process.env.test = undefined; +process.env.test = 42; console.log(process.env.test); -// => 'undefined' +// => '42' ``` -Use `delete` to delete a property from `process.env`. +Use `delete` to delete a property from `process.env` or assign it to +`undefined`. Example: @@ -899,6 +905,10 @@ process.env.TEST = 1; delete process.env.TEST; console.log(process.env.TEST); // => undefined +process.env.TEST = 1; +process.env.TEST = undefined; +console.log('TEST' in process.env); +// => false ``` On Windows operating systems, environment variables are case-insensitive. diff --git a/src/node.cc b/src/node.cc index 656d132ec9fb32..60bc4c81973545 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2697,6 +2697,18 @@ static void ProcessTitleSetter(Local property, } +inline void RemovePropertyFromEnv(Isolate* isolate, Local property) { +#ifdef __POSIX__ + node::Utf8Value key(isolate, property); + unsetenv(*key); +#else + node::TwoByteValue key(isolate, property); + WCHAR* key_ptr = reinterpret_cast(*key); + SetEnvironmentVariableW(key_ptr, nullptr); +#endif +} + + static void EnvGetter(Local property, const PropertyCallbackInfo& info) { Isolate* isolate = info.GetIsolate(); @@ -2731,6 +2743,11 @@ static void EnvGetter(Local property, static void EnvSetter(Local property, Local value, const PropertyCallbackInfo& info) { + if (value->IsUndefined()) { + RemovePropertyFromEnv(info.GetIsolate(), property); + info.GetReturnValue().Set(value); + return; + } #ifdef __POSIX__ node::Utf8Value key(info.GetIsolate(), property); node::Utf8Value val(info.GetIsolate(), value); @@ -2780,14 +2797,7 @@ static void EnvQuery(Local property, static void EnvDeleter(Local property, const PropertyCallbackInfo& info) { if (property->IsString()) { -#ifdef __POSIX__ - node::Utf8Value key(info.GetIsolate(), property); - unsetenv(*key); -#else - node::TwoByteValue key(info.GetIsolate(), property); - WCHAR* key_ptr = reinterpret_cast(*key); - SetEnvironmentVariableW(key_ptr, nullptr); -#endif + RemovePropertyFromEnv(info.GetIsolate(), property); } // process.env never has non-configurable properties, so always diff --git a/test/parallel/test-process-env.js b/test/parallel/test-process-env.js index 69379f60061985..fe1cd0827581e6 100644 --- a/test/parallel/test-process-env.js +++ b/test/parallel/test-process-env.js @@ -100,3 +100,12 @@ if (common.isWindows) { assert.strictEqual(process.env.test, undefined); assert.strictEqual(process.env.teST, undefined); } + +{ + // Setting an environment variable to undefined should act like a delete. + process.env.UNDEF = 'test'; + assert.strictEqual(process.env.UNDEF, 'test'); + process.env.UNDEF = undefined; + assert.strictEqual(process.env.UNDEF, undefined); + assert.strictEqual('UNDEF' in process.env, false); +}