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

Chain cause exception to service exception in translateAndThrow #946

Merged
merged 3 commits into from
Apr 21, 2016
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,15 @@ public class BigQueryException extends BaseServiceException {
private final BigQueryError error;

public BigQueryException(int code, String message) {

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

this(code, message, null);
this(code, message, (Throwable) null);
}

public BigQueryException(int code, String message, BigQueryError error) {
BigQueryException(int code, String message, Throwable cause) {
super(code, message, null, true, cause);
this.error = null;
}

BigQueryException(int code, String message, BigQueryError error) {
super(code, message, error != null ? error.reason() : null, true);
this.error = error;
}
Expand Down Expand Up @@ -100,6 +105,6 @@ public int hashCode() {
*/
static BaseServiceException translateAndThrow(RetryHelperException ex) {
BaseServiceException.translateAndPropagateIfPossible(ex);
throw new BigQueryException(UNKNOWN_CODE, ex.getMessage());
throw new BigQueryException(UNKNOWN_CODE, ex.getMessage(), ex.getCause());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;

import com.google.cloud.BaseServiceException;
Expand Down Expand Up @@ -86,18 +87,29 @@ public void testBigqueryException() {
assertTrue(exception.retryable());
assertTrue(exception.idempotent());

IOException cause = new SocketTimeoutException();
IOException cause = new SocketTimeoutException("socketTimeoutMessage");
exception = new BigQueryException(cause);
assertEquals(BigQueryException.UNKNOWN_CODE, exception.code());
assertNull(exception.reason());
assertNull(exception.getMessage());
assertEquals("socketTimeoutMessage", exception.getMessage());
assertEquals(cause, exception.getCause());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertEquals(cause, exception.getCause());
assertSame(cause, exception.getCause());

exception = new BigQueryException(504, "message", cause);
assertEquals(504, exception.code());
assertEquals("message", exception.getMessage());
assertNull(exception.reason());
assertNull(exception.error());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());
}

@Test
public void testTranslateAndThrow() throws Exception {
BigQueryException cause = new BigQueryException(503, "message");
Exception cause = new BigQueryException(503, "message");
RetryHelperException exceptionMock = createMock(RetryHelperException.class);
expect(exceptionMock.getCause()).andReturn(cause).times(2);
replay(exceptionMock);
Expand All @@ -111,5 +123,21 @@ public void testTranslateAndThrow() throws Exception {
} 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 {
BigQueryException.translateAndThrow(exceptionMock);
} catch (BaseServiceException ex) {
assertEquals(BigQueryException.UNKNOWN_CODE, ex.code());
assertEquals("message", ex.getMessage());
assertFalse(ex.retryable());
assertTrue(ex.idempotent());
assertSame(cause, ex.getCause());
} finally {
verify(exceptionMock);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ public class DatastoreException extends BaseServiceException {
new Error(10, "ABORTED"), new Error(4, "DEADLINE_EXCEEDED"), new Error(14, "UNAVAILABLE"));
private static final long serialVersionUID = 2663750991205874435L;

public DatastoreException(int code, String message, String reason, Throwable cause) {
super(code, message, reason, true, cause);
DatastoreException(int code, String message, String reason) {
this(code, message, reason, null);
}

public DatastoreException(int code, String message, String reason) {
super(code, message, reason, true);
public DatastoreException(int code, String message, String reason, Throwable cause) {
super(code, message, reason, true, cause);
}

public DatastoreException(IOException exception) {
Expand All @@ -63,7 +63,7 @@ protected Set<Error> retryableErrors() {
*/
static DatastoreException translateAndThrow(RetryHelperException ex) {
BaseServiceException.translateAndPropagateIfPossible(ex);
throw new DatastoreException(UNKNOWN_CODE, ex.getMessage(), null);
throw new DatastoreException(UNKNOWN_CODE, ex.getMessage(), null, ex.getCause());
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

Expand Down Expand Up @@ -66,18 +67,28 @@ public void testDatastoreException() throws Exception {
assertFalse(exception.retryable());
assertTrue(exception.idempotent());

IOException cause = new SocketTimeoutException();
IOException cause = new SocketTimeoutException("socketTimeoutMessage");
exception = new DatastoreException(cause);
assertEquals(DatastoreException.UNKNOWN_CODE, exception.code());
assertNull(exception.reason());
assertNull(exception.getMessage());
assertEquals("socketTimeoutMessage", exception.getMessage());
assertEquals(cause, exception.getCause());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

exception = new DatastoreException(2, "message", "INTERNAL", cause);
assertEquals(2, exception.code());
assertEquals("INTERNAL", exception.reason());
assertEquals("message", exception.getMessage());
assertFalse(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());
}

@Test
public void testTranslateAndThrow() throws Exception {
DatastoreException cause = new DatastoreException(14, "message", "UNAVAILABLE");
Exception cause = new DatastoreException(14, "message", "UNAVAILABLE");
RetryHelper.RetryHelperException exceptionMock =
createMock(RetryHelper.RetryHelperException.class);
expect(exceptionMock.getCause()).andReturn(cause).times(2);
Expand All @@ -92,6 +103,22 @@ public void testTranslateAndThrow() throws Exception {
} finally {
verify(exceptionMock);
}
cause = new IllegalArgumentException("message");
exceptionMock = createMock(RetryHelper.RetryHelperException.class);
expect(exceptionMock.getMessage()).andReturn("message").times(1);
expect(exceptionMock.getCause()).andReturn(cause).times(2);
replay(exceptionMock);
try {
DatastoreException.translateAndThrow(exceptionMock);
} catch (BaseServiceException ex) {
assertEquals(DatastoreException.UNKNOWN_CODE, ex.code());
assertEquals("message", ex.getMessage());
assertFalse(ex.retryable());
assertTrue(ex.idempotent());
assertSame(cause, ex.getCause());
} finally {
verify(exceptionMock);
}
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public DnsException(GoogleJsonError error, boolean idempotent) {
super(error, idempotent);
}

private DnsException(int code, String message) {
super(code, message, null, true);
DnsException(int code, String message, Throwable cause) {
super(code, message, null, true, cause);
}

@Override
Expand All @@ -66,6 +66,6 @@ protected Set<Error> retryableErrors() {
*/
static DnsException translateAndThrow(RetryHelperException ex) {
BaseServiceException.translateAndPropagateIfPossible(ex);
throw new DnsException(UNKNOWN_CODE, ex.getMessage());
throw new DnsException(UNKNOWN_CODE, ex.getMessage(), ex.getCause());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
/*
* 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.cloud.dns;

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.assertSame;
import static org.junit.Assert.assertTrue;

import com.google.api.client.googleapis.json.GoogleJsonError;
import com.google.cloud.BaseServiceException;
import com.google.cloud.RetryHelper.RetryHelperException;

import org.junit.Test;

import java.io.IOException;
import java.net.SocketTimeoutException;

public class DnsExceptionTest {

@Test
public void testDnsException() throws Exception {
IOException cause = new SocketTimeoutException("socketTimeoutMessage");
DnsException exception = new DnsException(500, "message", cause);
assertEquals(500, exception.code());
assertEquals("message", exception.getMessage());
assertNull(exception.reason());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

exception = new DnsException(502, "message", cause);
assertEquals(502, exception.code());
assertEquals("message", exception.getMessage());
assertNull(exception.reason());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

exception = new DnsException(503, "message", cause);
assertEquals(503, exception.code());
assertEquals("message", exception.getMessage());
assertNull(exception.reason());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

exception = new DnsException(429, "message", cause);
assertEquals(429, exception.code());
assertEquals("message", exception.getMessage());
assertNull(exception.reason());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

exception = new DnsException(404, "message", cause);
assertEquals(404, exception.code());
assertEquals("message", exception.getMessage());
assertNull(exception.reason());
assertFalse(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

exception = new DnsException(cause, true);
assertEquals(DnsException.UNKNOWN_CODE, exception.code());
assertNull(exception.reason());
assertEquals("socketTimeoutMessage", exception.getMessage());
assertEquals(cause, exception.getCause());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
assertSame(cause, exception.getCause());

GoogleJsonError error = new GoogleJsonError();
error.setCode(503);
error.setMessage("message");
exception = new DnsException(error, true);
assertEquals(503, exception.code());
assertEquals("message", exception.getMessage());
assertTrue(exception.retryable());
assertTrue(exception.idempotent());
}

@Test
public void testTranslateAndThrow() throws Exception {
IOException timeoutException = new SocketTimeoutException("message");
Exception cause = new DnsException(timeoutException, true);
RetryHelperException exceptionMock = createMock(RetryHelperException.class);
expect(exceptionMock.getCause()).andReturn(cause).times(2);
replay(exceptionMock);
try {
DnsException.translateAndThrow(exceptionMock);
} catch (BaseServiceException ex) {
assertEquals(DnsException.UNKNOWN_CODE, ex.code());
assertNull(ex.reason());
assertEquals("message", ex.getMessage());
assertEquals(timeoutException, ex.getCause());
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 {
DnsException.translateAndThrow(exceptionMock);
} catch (BaseServiceException ex) {
assertEquals(DnsException.UNKNOWN_CODE, ex.code());
assertEquals("message", ex.getMessage());
assertFalse(ex.retryable());
assertTrue(ex.idempotent());
assertSame(cause, ex.getCause());
} finally {
verify(exceptionMock);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,12 @@ public class ResourceManagerException extends BaseServiceException {
new Error(403, "variableTermLimitExceeded"));
private static final long serialVersionUID = -9207194488966554136L;

public ResourceManagerException(int code, String message) {
super(code, message, null, true);
ResourceManagerException(int code, String message) {
this(code, message, null);
}

ResourceManagerException(int code, String message, Throwable cause) {
super(code, message, null, true, cause);
}

public ResourceManagerException(IOException exception) {
Expand All @@ -70,6 +74,6 @@ protected Set<Error> retryableErrors() {
*/
static ResourceManagerException translateAndThrow(RetryHelperException ex) {
BaseServiceException.translateAndPropagateIfPossible(ex);
throw new ResourceManagerException(UNKNOWN_CODE, ex.getMessage());
throw new ResourceManagerException(UNKNOWN_CODE, ex.getMessage(), ex.getCause());
}
}
Loading