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

Fix Optional#get() and string comparison bugs in JobService #804

Merged
merged 2 commits into from
Jun 18, 2020

Conversation

ches
Copy link
Member

@ches ches commented Jun 18, 2020

What this PR does / why we need it:

Fixes some bugs in the Ingestion Job Management service.

Cleaning house a bit and I had a todo from here about the get() calls that will always fail. These don't actually have much impact since get() already throws NoSuchElementException which we're doing anyway, but we'd lose the message we try to set.

Actually perhaps more concerning is a bunch of == comparisons on strings, those might be a source of more functionally significant bugs for filtering in the list jobs API. I'm surprised that no tests trip something here—a little short on time to look more closely at the existing tests now, apologies.

These issues are all flagged by IntelliJ. The == and this. receiver for all class member references smell like the author was writing mostly Python at the time 😉 I'm sympathetic to not always liking IDEs, but if you use a lighter editor I'd recommend setting up something like the SpotBugs Maven plugin, which would be nice to do anyway IMO.

Does this PR introduce a user-facing change?:

NONE

ches added 2 commits June 18, 2020 22:31
Clears a FIXME left from #650, get() uses that will always fail.

Also fixes a bunch of == comparisons on strings, reference equality is
not what you want there.
It makes trying to read output in GitHub Actions horrible. Seeing
failures in red is kind of nice, so `--no-transfer-progress` keeps
colors unlike `--batch-mode`.
@ches
Copy link
Member Author

ches commented Jun 18, 2020

/assign @zhilingc

Comment on lines +343 to +346
@Test(expected = NoSuchElementException.class)
public void testStopJobForUnknownId() {
var request = StopIngestionJobRequest.newBuilder().setId("bogusJobId").build();
jobService.stopJob(request);
Copy link
Member Author

Choose a reason for hiding this comment

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

This didn't fail before the fix since it was the same exception type anyway. I don't think there's an easy way to assert on a thrown exception's message in JUnit 4.

Copy link
Contributor

Choose a reason for hiding this comment

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

We are potentially adding JUnit 5 dependency to our fork, if you would like to do it now and use assertThrows to validate the message.

JUnit 5 does work well with 4, so no need to upgrade all tests when adding it.

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 think Gojek folks tried/wanted to before—the Java SDK already uses it—but there was some reason it could not or should not be done? IIRC either @davidheryanto or @zhilingc mentioned it to me somewhere awhile back.

@pyalex
Copy link
Collaborator

pyalex commented Jun 18, 2020

/lgtm

@feast-ci-bot
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ches, pyalex

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ches
Copy link
Member Author

ches commented Jun 18, 2020

/retest

@feast-ci-bot feast-ci-bot merged commit f117b65 into master Jun 18, 2020
@ches ches deleted the jobservice-exception-fix branch June 18, 2020 18:20
@mrzzy
Copy link
Collaborator

mrzzy commented Jun 19, 2020

Thanks for fixing my bad code practices. 😥

These issues are all flagged by IntelliJ. The == and this. receiver for all class member references smell like the author was writing mostly Python at the time.

This was pretty much on point 😮, this is my first stab at writing Java in a production system. How did you know?

I'm sympathetic to not always liking IDEs, but if you use a lighter editor I'd recommend setting up something like the SpotBugs Maven plugin, which would be nice to do anyway IMO.

Will check that out.

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

Successfully merging this pull request may close these issues.

None yet

6 participants