-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Chain cause in ComputeException.translateAndThrow, add tests #948
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
gcloud-java-compute/src/test/java/com/google/gcloud/compute/ComputeExceptionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* Copyright 2016 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.gcloud.compute; | ||
|
||
import static org.easymock.EasyMock.createMock; | ||
import static org.easymock.EasyMock.expect; | ||
import static org.easymock.EasyMock.replay; | ||
import static org.easymock.EasyMock.verify; | ||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertFalse; | ||
import static org.junit.Assert.assertNull; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
import com.google.gcloud.BaseServiceException; | ||
import com.google.gcloud.RetryHelper.RetryHelperException; | ||
|
||
import org.junit.Test; | ||
|
||
import java.io.IOException; | ||
import java.net.SocketTimeoutException; | ||
|
||
public class ComputeExceptionTest { | ||
|
||
@Test | ||
public void testResourceManagerException() { | ||
ComputeException exception = new ComputeException(500, "message"); | ||
assertEquals(500, exception.code()); | ||
assertEquals("message", exception.getMessage()); | ||
assertNull(exception.reason()); | ||
assertTrue(exception.retryable()); | ||
assertTrue(exception.idempotent()); | ||
|
||
exception = new ComputeException(403, "message"); | ||
assertEquals(403, exception.code()); | ||
assertEquals("message", exception.getMessage()); | ||
assertNull(exception.reason()); | ||
assertFalse(exception.retryable()); | ||
assertTrue(exception.idempotent()); | ||
|
||
IOException cause = new SocketTimeoutException(); | ||
exception = new ComputeException(cause); | ||
assertNull(exception.reason()); | ||
assertNull(exception.getMessage()); | ||
assertTrue(exception.retryable()); | ||
assertTrue(exception.idempotent()); | ||
assertEquals(cause, exception.getCause()); | ||
} | ||
|
||
@Test | ||
public void testTranslateAndThrow() throws Exception { | ||
Exception cause = new ComputeException(500, "message"); | ||
RetryHelperException exceptionMock = createMock(RetryHelperException.class); | ||
expect(exceptionMock.getCause()).andReturn(cause).times(2); | ||
replay(exceptionMock); | ||
try { | ||
ComputeException.translateAndThrow(exceptionMock); | ||
} catch (BaseServiceException ex) { | ||
assertEquals(500, ex.code()); | ||
assertEquals("message", ex.getMessage()); | ||
assertTrue(ex.retryable()); | ||
assertTrue(ex.idempotent()); | ||
} finally { | ||
verify(exceptionMock); | ||
} | ||
cause = new IllegalArgumentException("message"); | ||
exceptionMock = createMock(RetryHelperException.class); | ||
expect(exceptionMock.getMessage()).andReturn("message").times(1); | ||
expect(exceptionMock.getCause()).andReturn(cause).times(2); | ||
replay(exceptionMock); | ||
try { | ||
ComputeException.translateAndThrow(exceptionMock); | ||
} catch (BaseServiceException ex) { | ||
assertEquals(ComputeException.UNKNOWN_CODE, ex.code()); | ||
assertEquals("message", ex.getMessage()); | ||
assertFalse(ex.retryable()); | ||
assertTrue(ex.idempotent()); | ||
assertEquals(cause, ex.getCause()); | ||
} finally { | ||
verify(exceptionMock); | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.