-
-
Notifications
You must be signed in to change notification settings - Fork 32k
assert: wrap original err on ifError
fail
#12820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
It might be the smallest semver-major ever, but I would still say semver-major. Imagine the impact on someone reading the stack traces if they run the same test on different versions of Node.js (which is what someone might do if they suspect they are triggering a bug in Node.js itself). If |
Is this a good idea, though? I think I would usually be more interested in the original stack trace (and apart from that, I think that this won’t work if somebody accessed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should add a test for this..
I'm not sure this is a good change to make. The errors are created elsewhere and passed here. Changing the stack trace would definitely be a breaking change (even if a mild one). I don't think this is behavior anyone would expect. |
One could argue that if you want the original stack, just throw it. If you use assert, you want to knwo which asset failed...
|
I think we should either throw the existing error, as is, or throw a new assertion error. This hybrid seems confusing. |
Bingo! |
Changed to wrapping the original |
ifError
fail
Wrapping in the AssertionError works. We will definitely want to run some CITGM tests on this tho |
@@ -546,4 +546,7 @@ function doesNotThrow(block, /*optional*/error, /*optional*/message) { | |||
_throws(false, block, error, message); | |||
} | |||
|
|||
assert.ifError = function ifError(err) { if (err) throw err; }; | |||
assert.ifError = function ifError(err, message) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
message
isn't used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack.
Forgot to carry it over into the last commit.
Ping @nodejs/testing |
I now kinda hate the current 1307 parallel/test-util-callbackify
duration_ms 0.89
severity fail
stack ->
assert.js:586
assert.ifError = function ifError(err) { if (err) throw err; };
^
function () {
context.actual++;
return fn.apply(this, arguments);
} |
|
||
Throws an `AssertionError` if `value` is truthy. This is useful when testing the | ||
`error` argument in callbacks. If the `message` parameter is undefined, a | ||
default error message is assigned, and `value` is be appended to it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel this is somewhat contradicting each other. If it should be used in callbacks, there should always either be an error or the result but never both at the same time.
common.expectsError({ | ||
code: 'ERR_ASSERTION', | ||
type: a.AssertionError, | ||
message: /^Error: test_error_slug$/m |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure how this is any different from the test above. I actually would expect this test to fail because I would have expected it to be wrapped in the ifError failed
part.
assert.ifError = function ifError(err) { if (err) throw err; }; | ||
assert.ifError = function ifError(err, message) { | ||
if (!err) return; | ||
message = message || `ifError failed. Original error:\n${err}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, is ifError
really failing here? Maybe smth. like ifError encountered unexpected error: ...
might be more intuitive?
Ping @refack |
I am closing this due to the long inactivity. @refack please reopen if you would like to pursue this further. |
For
assert.ifError
fails, wrap the original err in a new AssertionErrorInspiration: #12803 (comment)
/cc @nodejs/testing
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
test, assert