forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: refactor and harden
ProcessEmitWarning()
- Handle exceptions when getting `process.emitWarning` or when calling it properly - Add `Maybe<bool>` to the return type, like the V8 API uses it to indicate failure conditions - Update call sites to account for that and clean up/return to JS when encountering an error - Add an internal `ProcessEmitDeprecationWarning()` sibling for use in nodejs#17417, with common code extracted to a helper function - Allow the warning to contain non-Latin-1 characters. Since the message will usually be a template string containing data passed from the user, this is the right thing to do. - Add tests for the failure modes (except string creation failures) and UTF-8 warning messages. PR-URL: nodejs#17420 Refs: nodejs#17417 Reviewed-By: Andreas Madsen <amwebdk@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
- Loading branch information
Showing
6 changed files
with
140 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
if (common.hasFipsCrypto) | ||
common.skip('crypto.createCipher() is not supported in FIPS mode'); | ||
|
||
const crypto = require('crypto'); | ||
const key = '0123456789'; | ||
|
||
{ | ||
common.expectWarning('Warning', | ||
'Use Cipheriv for counter mode of aes-256-gcm'); | ||
|
||
// Emits regular warning expected by expectWarning() | ||
crypto.createCipher('aes-256-gcm', key); | ||
} | ||
|
||
const realEmitWarning = process.emitWarning; | ||
|
||
{ | ||
// It's a good idea to make this overridable from userland. | ||
process.emitWarning = () => { throw new Error('foo'); }; | ||
assert.throws(() => { | ||
crypto.createCipher('aes-256-gcm', key); | ||
}, /^Error: foo$/); | ||
} | ||
|
||
{ | ||
Object.defineProperty(process, 'emitWarning', { | ||
get() { throw new Error('bar'); }, | ||
configurable: true | ||
}); | ||
assert.throws(() => { | ||
crypto.createCipher('aes-256-gcm', key); | ||
}, /^Error: bar$/); | ||
} | ||
|
||
// Reset back to default after the test. | ||
Object.defineProperty(process, 'emitWarning', { | ||
value: realEmitWarning, | ||
configurable: true, | ||
writable: true | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters