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

assert: improve the strict equal messages #23056

Closed
wants to merge 3 commits into from

Conversation

BridgeAR
Copy link
Member

In case reference (un)equal objects fail in assertion, it should be
clear that it is about the reference equality and not about the
object properties. This is fixed by improving the message in such
cases.

Refs: #22763

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • tests and/or benchmarks are included
  • documentation is changed or added
  • commit message follows commit guidelines

In case reference (un)equal objects fail in assertion, it should be
clear that it is about the reference equality and not about the
object properties. This is fixed by improving the message in such
cases.

Refs: nodejs#22763
@nodejs-github-bot nodejs-github-bot added the assert Issues and PRs related to the assert subsystem. label Sep 24, 2018
@@ -13,10 +13,13 @@ let white = '';
const kReadableOperator = {
deepStrictEqual: 'Expected inputs to be strictly deep-equal:',
strictEqual: 'Expected inputs to be strictly equal:',
strictEqualObject: 'Expected reference equal inputs but got:',
Copy link
Contributor

Choose a reason for hiding this comment

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

One small suggestion here, can't we have:

Expected "actual" reference to be equal to "expected" but got:. For me the word inputs (why we use plural word here?) is bit confusing and also the counter part message (notStrictEqualObject) uses the term "actual" and "expected", so it would make sense to use the same here too.

Copy link
Member Author

Choose a reason for hiding this comment

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

You are right that either notStrictEqualObject should be 'Expected inputs not to be reference equal:' or that this message should be changed.

I used inputs instead of naming the variables because the message itself is significantly shorter that way. But I personally have no strong opinion on it. Maybe others can weight in? :)

@Trott @vsemozhetbyt it would be good if you could also have a look :)

Copy link
Member

Choose a reason for hiding this comment

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

If the current wording remains, maybe this should be reference-equal since it’s used as a single adjective? I’ve also always been wondering about inputs in these error messages … it makes sense from the PoV of the assert module, but for me something more generic like values would seem more intuitive?

Copy link
Contributor

Choose a reason for hiding this comment

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

No strong opinion)

Copy link
Member

Choose a reason for hiding this comment

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

No strong opinion from me either. Maybe @nodejs/documentation even though this isn't a doc question?

Copy link
Member Author

Choose a reason for hiding this comment

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

I decided to go for a more verbose version and I also added the dash in reference-equal.

I also added another commit to switch from inputs to values.

@BridgeAR
Copy link
Member Author

BridgeAR commented Sep 25, 2018

The wording seems clearer when using `values` instead of `inputs`.
@BridgeAR
Copy link
Member Author

BridgeAR commented Sep 25, 2018

Resumed build: https://ci.nodejs.org/job/node-test-pull-request/17430/ ✔️ (besides Windows)

@nodejs/util PTAL

@BridgeAR
Copy link
Member Author

@mcollina mcollina added the semver-major PRs that contain breaking changes and should be released in the next major version. label Sep 26, 2018
@mcollina
Copy link
Member

I think this is semver-major, as the change to those message could lead to test breakage in the ecosystem.

Copy link
Member

@mcollina mcollina left a comment

Choose a reason for hiding this comment

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

LGTM

@BridgeAR
Copy link
Member Author

@mcollina any change to the message could theoretically break the ecosystem but we did not handle it that way in almost all cases. This was an issue in a few cases before but all known ones were already fixed not to rely on the message in that way anymore. So if at all, it would already be broken and should not break any more. That's why I do not think that it's semver-major.

@BridgeAR BridgeAR added the author ready PRs that have at least one approval, no pending requests for changes, and a CI started. label Sep 26, 2018
@BridgeAR
Copy link
Member Author

@nodejs/tsc PTAL

@mcollina mcollina removed the semver-major PRs that contain breaking changes and should be released in the next major version. label Sep 26, 2018
@mcollina
Copy link
Member

Ok

@mcollina
Copy link
Member

Can you please confirm with a CITGM run?

@BridgeAR
Copy link
Member Author

BridgeAR commented Sep 26, 2018

CITGM (this PR) https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/1561/
CITGM (other PR) https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/1560

(when looking at the current citgm failures it seems like we introduced something bad recently since the failures were normally significantly lower)

Update: I did not find anything but it is difficult to look through everything due to the many failures in general at the moment.

@Trott
Copy link
Member

Trott commented Sep 26, 2018

The wording changes look good to me.

Copy link
Contributor

@ryzokuken ryzokuken left a comment

Choose a reason for hiding this comment

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

LGTM.

@BridgeAR
Copy link
Member Author

@BridgeAR
Copy link
Member Author

BridgeAR commented Sep 26, 2018

Rebuild Windows again: https://ci.nodejs.org/job/node-test-commit-windows-fanned/21052/ ✔️

BridgeAR added a commit to BridgeAR/node that referenced this pull request Sep 27, 2018
In case reference (un)equal objects fail in assertion, it should be
clear that it is about the reference equality and not about the
object properties. This is fixed by improving the message in such
cases.

Refs: nodejs#22763

PR-URL: nodejs#23056
Refs: nodejs#22763
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
BridgeAR added a commit to BridgeAR/node that referenced this pull request Sep 27, 2018
The wording seems clearer when using `values` instead of `inputs`.

PR-URL: nodejs#23056
Refs: nodejs#22763
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
@BridgeAR
Copy link
Member Author

Landed in be26c76 and b8a8eed.

@BethGriggs
Copy link
Member

@BridgeAR, is this still something that should be backported to v10.x?

@BridgeAR BridgeAR deleted the improve-strict-equal-message branch January 20, 2020 11:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
assert Issues and PRs related to the assert subsystem. author ready PRs that have at least one approval, no pending requests for changes, and a CI started.
Projects
None yet
Development

Successfully merging this pull request may close these issues.