Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions src/node_dotenv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,26 @@ Local<Object> Dotenv::ToObject(Environment* env) const {
return result;
}

// Removes space characters (spaces, tabs and newlines) from
// the start and end of a given input string
std::string_view trim_spaces(std::string_view input) {
if (input.empty()) return "";
if (input.front() == ' ') {
input.remove_prefix(input.find_first_not_of(' '));

auto pos_start = input.find_first_not_of(" \t\n");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this also include \r and \f?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sounds good to me 🙂, but I'm not sure how to test that, would you be ok with addition without dedicated tests for it?

if (pos_start == std::string_view::npos) {
return "";
}
if (!input.empty() && input.back() == ' ') {
input = input.substr(0, input.find_last_not_of(' ') + 1);

auto pos_end = input.find_last_not_of(" \t\n");
if (pos_end == std::string_view::npos) {
return input.substr(pos_start);
}
return input;

if (pos_start == pos_end) {
return "";
}

return input.substr(pos_start, pos_end - pos_start + 1);
}

void Dotenv::ParseContent(const std::string_view input) {
Expand Down
8 changes: 8 additions & 0 deletions test/fixtures/dotenv/lines-with-only-spaces.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

EMPTY_LINE='value after an empty line'

SPACES_LINE='value after a line with just some spaces'

TABS_LINE='value after a line with just some tabs'

SPACES_TABS_LINE='value after a line with just some spaces and tabs'
19 changes: 19 additions & 0 deletions test/parallel/test-dotenv-edge-cases.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
],
{ cwd: __dirname },
)));
assert.deepStrictEqual(children, Array.from({ length: 4 }, () => ({

Check failure on line 34 in test/parallel/test-dotenv-edge-cases.js

View workflow job for this annotation

GitHub Actions / test-linux

--- stdout --- Test failure: 'supports multiple declarations, including optional ones' Location: test/parallel/test-dotenv-edge-cases.js:15:3 AssertionError [ERR_ASSERTION]: Expected values to be strictly deep-equal: + actual - expected [ { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:447:60)\n' + + ' at evalFunction (node:internal/process/execution:280:30)\n' + + ' at evalTypeScript (node:internal/process/execution:292:3)\n' + + ' at node:internal/main/eval_string:71:3 {\n' + + ' generatedMessage: true,\n' + + " code: 'ERR_ASSERTION',\n" + + " actual: '',\n" + + " expected: '1',\n" + + " operator: 'strictEqual'\n" + + '}\n' + + '\n' + + 'Node.js v24.0.0-pre\n', - stderr: '', stdout: '' }, { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:447:60)\n' + + ' at evalFunction (node:internal/process/execution:280:30)\n' + + ' at evalTypeScript (node:internal/process/execution:292:3)\n' + + ' at node:internal/main/eval_string:71:3 {\n' + + ' generatedMessage: true,\n' + + " code: 'ERR_ASSERTION',\n" + + " actual: '',\n" + + " expected: '1',\n" + + " operator: 'strictEqual'\n" + + '}\n' + + '\n' + + 'Node.js v24.0.0-pre\n', - stderr: '', stdout: '' }, { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:447:60)\n' + + ' at evalFunction (node:internal/process/execution:280:30)\n' + + ' at evalTypeScript (node:internal/process/execution:292:3)\n' + + ' at node:internal/main/eval_string:71:3 {\n' + + ' generatedMessage: true,\n' + + " code: 'ERR_ASSERTION',\n" + + " actual: '',\n" + + " expected: '1',\n" + + " operator: 'strictEqual'\n" + + '}\n' + + '\n' + + 'Node.js v24.0.0-pre\n', - stderr: '', stdout: '' }, { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:4

Check failure on line 34 in test/parallel/test-dotenv-edge-cases.js

View workflow job for this annotation

GitHub Actions / test-macOS

--- stdout --- Test failure: 'supports multiple declarations, including optional ones' Location: test/parallel/test-dotenv-edge-cases.js:15:3 AssertionError [ERR_ASSERTION]: Expected values to be strictly deep-equal: + actual - expected [ { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:447:60)\n' + + ' at evalFunction (node:internal/process/execution:280:30)\n' + + ' at evalTypeScript (node:internal/process/execution:292:3)\n' + + ' at node:internal/main/eval_string:71:3 {\n' + + ' generatedMessage: true,\n' + + " code: 'ERR_ASSERTION',\n" + + " actual: '',\n" + + " expected: '1',\n" + + " operator: 'strictEqual'\n" + + '}\n' + + '\n' + + 'Node.js v24.0.0-pre\n', - stderr: '', stdout: '' }, { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:447:60)\n' + + ' at evalFunction (node:internal/process/execution:280:30)\n' + + ' at evalTypeScript (node:internal/process/execution:292:3)\n' + + ' at node:internal/main/eval_string:71:3 {\n' + + ' generatedMessage: true,\n' + + " code: 'ERR_ASSERTION',\n" + + " actual: '',\n" + + " expected: '1',\n" + + " operator: 'strictEqual'\n" + + '}\n' + + '\n' + + 'Node.js v24.0.0-pre\n', - stderr: '', stdout: '' }, { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:447:60)\n' + + ' at evalFunction (node:internal/process/execution:280:30)\n' + + ' at evalTypeScript (node:internal/process/execution:292:3)\n' + + ' at node:internal/main/eval_string:71:3 {\n' + + ' generatedMessage: true,\n' + + " code: 'ERR_ASSERTION',\n" + + " actual: '',\n" + + " expected: '1',\n" + + " operator: 'strictEqual'\n" + + '}\n' + + '\n' + + 'Node.js v24.0.0-pre\n', - stderr: '', stdout: '' }, { + code: 1, - code: 0, signal: null, + stderr: 'node:assert:128\n' + + ' throw new AssertionError(obj);\n' + + ' ^\n' + + '\n' + + 'AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:\n' + + '\n' + + "'' !== '1'\n" + + '\n' + + ' at [eval]:3:14\n' + + ' at runScriptInThisContext (node:internal/vm:209:10)\n' + + ' at node:internal/process/execution:449:12\n' + + ' at [eval]-wrapper:6:24\n' + + ' at runScriptInContext (node:internal/process/execution:4
code: 0,
signal: null,
stdout: '',
Expand Down Expand Up @@ -137,6 +137,25 @@
assert.strictEqual(child.code, 0);
});

it('should handle lines that come after lines with only spaces (and tabs)', async () => {
// Ref: https://github.com/nodejs/node/issues/56686
const code = `
process.loadEnvFile('./lines-with-only-spaces.env');
assert.strictEqual(process.env.EMPTY_LINE, 'value after an empty line');
assert.strictEqual(process.env.SPACES_LINE, 'value after a line with just some spaces');
assert.strictEqual(process.env.TABS_LINE, 'value after a line with just some tabs');
assert.strictEqual(process.env.SPACES_TABS_LINE, 'value after a line with just some spaces and tabs');
`.trim();
const child = await common.spawnPromisified(
process.execPath,
[ '--eval', code ],
{ cwd: fixtures.path('dotenv') },
);
assert.strictEqual(child.stdout, '');
assert.strictEqual(child.stderr, '');
assert.strictEqual(child.code, 0);
});

it('should handle when --env-file is passed along with --', async () => {
const child = await common.spawnPromisified(
process.execPath,
Expand Down
Loading