Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

fix: Fix com.google.rpc.Code to StatusCode.Code conversion logic#1508

Merged
vam-google merged 4 commits intogoogleapis:mainfrom
vam-google:master
Oct 13, 2021
Merged

fix: Fix com.google.rpc.Code to StatusCode.Code conversion logic#1508
vam-google merged 4 commits intogoogleapis:mainfrom
vam-google:master

Conversation

@vam-google
Copy link
Contributor

Also add tests for HTTP status code conversion (according to the current implementation, which may change in the future).

Also add tests for HTTP status code conversion (according to the current implementation, which may change in the future).
@vam-google vam-google requested review from a team October 11, 2021 21:49
@google-cla google-cla bot added the cla: yes This human has signed the Contributor License Agreement. label Oct 11, 2021
@vam-google vam-google requested a review from chanseokoh October 11, 2021 21:50
@vam-google
Copy link
Contributor Author

@viacheslav-rostovtsev FYI

*/
package com.google.api.gax.httpjson;

import static org.junit.Assert.*;
Copy link
Contributor

Choose a reason for hiding this comment

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

Expand the imports?

StatusCode.Code.DEADLINE_EXCEEDED,
HttpJsonStatusCode.httpStatusToStatusCode(504, "anything"));

try {
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: recommending assertThrows. I found one example in this repo, but you will want a lambda:

assertThrows(IllegalStateException.class, () -> HttpJsonStatusCode.httpStatusToStatusCode(411, "anything"));

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

cla: yes This human has signed the Contributor License Agreement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants