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 Error handling and add test coverage for Thrift2ProtoAdapter #950

Merged
merged 1 commit into from
Nov 8, 2024

Conversation

natemort
Copy link
Member

@natemort natemort commented Nov 7, 2024

What changed?

  • Remove request logging from GrpcStubs. This was a debugging tool added during implementation and isn't generally useful.
  • Fix GRPC error handling for the handful of Async methods. These were previously being completed with an ExecutionException wrapping the StatusRuntimException rather than the StatusRuntimeException being mapped to the appropriate type.
  • Increase test coverage

Why?

How did you test it?

Potential risks

Release notes

Documentation Changes

Copy link

codecov bot commented Nov 7, 2024

Codecov Report

Attention: Patch coverage is 76.92308% with 3 lines in your changes missing coverage. Please review.

Project coverage is 77.57%. Comparing base (6d76d41) to head (8e2b988).
Report is 11 commits behind head on master.

Files with missing lines Patch % Lines
...ce/internal/compatibility/Thrift2ProtoAdapter.java 76.92% 1 Missing and 2 partials ⚠️
Additional details and impacted files
Files with missing lines Coverage Δ
...ce/internal/compatibility/Thrift2ProtoAdapter.java 93.14% <76.92%> (+93.14%) ⬆️

... and 19 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b5d8ef8...8e2b988. Read the comment docs.

@coveralls
Copy link

Pull Request Test Coverage Report for Build 2630

Details

  • 11 of 13 (84.62%) changed or added relevant lines in 1 file are covered.
  • 2 unchanged lines in 2 files lost coverage.
  • Overall coverage increased (+3.2%) to 82.827%

Changes Missing Coverage Covered Lines Changed/Added Lines %
src/main/java/com/uber/cadence/internal/compatibility/Thrift2ProtoAdapter.java 11 13 84.62%
Files with Coverage Reduction New Missed Lines %
src/main/java/com/uber/cadence/internal/testservice/TestWorkflowMutableStateImpl.java 1 85.33%
src/main/java/com/uber/cadence/internal/common/InternalUtils.java 1 79.61%
Totals Coverage Status
Change from base Build 2628: 3.2%
Covered Lines: 16042
Relevant Lines: 19368

💛 - Coveralls

Comment on lines 127 to 129
if (log.isTraceEnabled()) {
interceptedChannel = ClientInterceptors.intercept(interceptedChannel, tracingInterceptor);
}
Copy link
Member

Choose a reason for hiding this comment

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

I would probably just keep it. For unit test, we can just cover the lines without asserting as it's for debugging purposes.

Copy link
Member

Choose a reason for hiding this comment

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

Also seeing this pattern in multiple other entities. For example ActivityPollTask

Copy link
Member Author

Choose a reason for hiding this comment

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

Sounds good, readded with test coverage.

@natemort natemort force-pushed the proto branch 2 times, most recently from 0f000cd to 36aab95 Compare November 7, 2024 23:03
Comment on lines +1384 to +1385
RefreshWorkflowTasksResponse.getDefaultInstance();

Copy link
Member

Choose a reason for hiding this comment

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

I'm not 100% sure how much we care about these, but if we do care about them, is there some kind of assertion we can add to ensure that they're mapped for all future fields too? (maybe reflection?)

Copy link
Member Author

@natemort natemort Nov 8, 2024

Choose a reason for hiding this comment

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

For any type that we have a mapper for we use MapperTestUtil to assert that all fields are set (or a select set are missing if we haven't updated the mappers for them). We do similar things with some of the types contained within the requests(decisions and history events) as well as enums.

These types don't actually exist in thrift (the thrift APIs return void, something we never do in gRPC) so there aren't any mappers. It seems very unlikely we'd add fields to these types until after we completely remove thrift, at which point this Thrift2Proto layer won't exist at all. So I don't think it's worth testing these ones the way all the others are tested.

@natemort natemort merged commit cc571fc into cadence-workflow:master Nov 8, 2024
12 of 13 checks passed
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

Successfully merging this pull request may close these issues.

4 participants