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

StatusOr.equals() cannot compare Status instances #11949

Open
panchenko opened this issue Mar 7, 2025 · 3 comments
Open

StatusOr.equals() cannot compare Status instances #11949

panchenko opened this issue Mar 7, 2025 · 3 comments
Milestone

Comments

@panchenko
Copy link
Contributor

StatusOr has been introduced in #11330
The implemented equals() method tries to compare value or status.
However, Status.equals() intentionally does not compare its fields.

* Equality on Statuses is not well defined. Instead, do comparison based on their Code with
* {@link #getCode}. The description and cause of the Status are unlikely to be stable, and
* additional fields may be added to Status in the future.
*/
@Override
public boolean equals(Object obj) {
return super.equals(obj);

The corresponding StatusOr test compares same Status instance and passes

public void equals_sameStatuses() {
assertThat(StatusOr.fromStatus(Status.ABORTED)).isEqualTo(StatusOr.fromStatus(Status.ABORTED));

but would fail if there is a description

String msg = "1";
assertThat(StatusOr.fromStatus(Status.ABORTED.withDescription(msg)))
    .isEqualTo(StatusOr.fromStatus(Status.ABORTED.withDescription(msg)));
@ejona86
Copy link
Member

ejona86 commented Mar 27, 2025

@kannanjgithub, what were you thinking the change here would be? Given the following would fail without using StatusOr, I don't really know what the expectation would be:

assertThat(Status.ABORTED.withDescription(msg))
    .isEqualTo(Status.ABORTED.withDescription(msg));

@kannanjgithub
Copy link
Contributor

@panchenko notice Eric's reply above. We kept Status.equals use references equality intentionally to avoid using it that way and instead do equality check on Status.code.
Is the concern you raised about StatusOr.equals failing if there is a description specifically about unit test, or in production code? If it is just about unit testing and you are using google.common.truth, we could make StatusOr expose a truth subject value with just the code so that the snippet you described works.

@panchenko
Copy link
Contributor Author

@kannanjgithub I am fine with the current Status.equals behaviour (which is a bit inconvenient in tests, but as you mentioned there ways to deal with that).
The concern is about this new StatusOr which could cause confusion,
I guess that could be addressed with more documentation for StatusOr.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants