Skip to content
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

test: verify detail exception messages in addons-napi/test_constructor #14318

Closed
wants to merge 1 commit into from

Conversation

vincentcn
Copy link
Contributor

@vincentcn vincentcn commented Jul 17, 2017

[JSConf CN Code&Learn] Verify detail exception messages in addons-napi/test_constructor.

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • commit message follows commit guidelines
Affected core subsystem(s)

no, just update tests.

@nodejs-github-bot nodejs-github-bot added node-api Issues and PRs related to the Node-API. test Issues and PRs related to the tests. labels Jul 17, 2017
@vincentcn vincentcn changed the title test: verify the detail exception messages in addons-napi/test_constructor test: verify detail exception messages in addons-napi/test_constructor Jul 17, 2017
Copy link
Member

@Trott Trott left a comment

Choose a reason for hiding this comment

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

LGTM if CI is green.

@gireeshpunathil
Copy link
Member

@gabrielschulhof gabrielschulhof self-assigned this Aug 10, 2017
@gabrielschulhof
Copy link
Contributor

Landed in e6eb5c0.

gabrielschulhof pushed a commit that referenced this pull request Aug 13, 2017
Test errors thrown in addons-napi/test_constructor more specifically.

PR-URL: #14318
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
@Trott Trott added the code-and-learn Issues related to the Code-and-Learn events and PRs submitted during the events. label Aug 13, 2017
addaleax pushed a commit that referenced this pull request Aug 14, 2017
Test errors thrown in addons-napi/test_constructor more specifically.

PR-URL: #14318
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
@addaleax addaleax mentioned this pull request Aug 14, 2017
@MSLaguana
Copy link
Contributor

What's the reasoning behind this change? When using node-chakracore this test was succeeding but now it fails since the specific error message reported by the engine is different. Does N-API intend to specify the particular error messages that are raised?

@Trott
Copy link
Member

Trott commented Aug 18, 2017

What's the reasoning behind this change?

The project treats Error message changes as breaking changes. This is because people often need to sniff error message text in production code to make a determination of what to do with a caught error.

The hope is that we can eventually drop that stance after there's been sufficient time given for the code property in the new internal error system to gain widespread usage.*

But we're not there yet.

Until then, we encourage checking specific error messages in the tests so that the tests break when the messages change (and we can flag the change as a breaking change).

Can't speak for other Collaborators, but I'd certainly consider** (for example) a proposal that we relax that for error types that are more specific than Error, if the tradeoff is making Chakracore maintenance less of a burden. In general, I think the interest of end users trump those of the maintainers, but a case could certainly be made that multiple VMs is in the end user's interest and that people who are relying on error message text likely know that it's a brittle practice to begin with.

* At least, that seems to be the hope among most folks. I'm personally on the fence. A code for invalid argument type will still require the end user to sniff the message text to figure out which argument is invalid, thus making changes to messages still a potentially breaking change for responsibly-written code.

** No promise of supporting the proposal, of course. But I'd certainly give it an honest look!

@MSLaguana
Copy link
Contributor

Thanks for the response.

I've already tweaked the test in the node-chakracore repo to account for different error strings (see nodejs/node-chakracore@2f9535c?w=1) but it is good to know that error strings are considered to be part of the API surface. I'm not sure that sniffing strings will always be useful though, since as you can see from the change I made the error message that chakracore gives is significantly different to the error given by v8.

@digitalinfinity
Copy link
Contributor

While I understand that error message changes are currently treated as breaking changes, I was under the impression (based on PRs like #13988 from @mhdawson) that the intent was to move the community away from relying on them and instead to rely on error codes. Is that not the case (apologies for hijacking this PR- please let me know if I should just open another issue for this discussion)

@Trott
Copy link
Member

Trott commented Aug 19, 2017

@digitalinfinity You're exactly right. That is the intention.

@Trott
Copy link
Member

Trott commented Aug 19, 2017

@MSLaguana Actually, this raises an important point. I think we concluded that error messages that were generated by V8 would be exempted from the "breaking change if the message changes" rule because we can't really control what V8 does with its error messages.

@nodejs/ctc Am I right to recall that?

If so, then a case could certainly be made that these really should just check for TypeError. (And I have to rethink a small number of my planned Code & Learn tasks for Vancouver in October. :-D )

@targos
Copy link
Member

targos commented Aug 28, 2017

@Trott you are right. See the last paragraph of https://github.com/nodejs/node/blob/master/COLLABORATOR_GUIDE.md#breaking-changes:

Note that errors thrown, along with behaviors and APIs implemented by dependencies of Node.js (e.g. those originating from V8) are generally not under the control of Node.js and therefore are not directly subject to this policy. However, care should still be taken when landing updates to dependencies when it is known or expected that breaking changes to error handling may have been made. Additional CI testing may be required.

gabrielschulhof pushed a commit to gabrielschulhof/node that referenced this pull request Apr 10, 2018
Test errors thrown in addons-napi/test_constructor more specifically.

PR-URL: nodejs#14318
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
MylesBorins pushed a commit that referenced this pull request Apr 16, 2018
Test errors thrown in addons-napi/test_constructor more specifically.

Backport-PR-URL: #19447
PR-URL: #14318
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
@MylesBorins MylesBorins mentioned this pull request Apr 16, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
code-and-learn Issues related to the Code-and-Learn events and PRs submitted during the events. node-api Issues and PRs related to the Node-API. test Issues and PRs related to the tests.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet