-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Mercateo/issue-18
issue-18: add JsonMappingExceptions
- Loading branch information
Showing
3 changed files
with
300 additions
and
1 deletion.
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
104 changes: 104 additions & 0 deletions
104
src/main/java/com/mercateo/rest/jersey/utils/exception/JsonMappingExceptionMapper.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,104 @@ | ||
package com.mercateo.rest.jersey.utils.exception; | ||
|
||
import static javax.ws.rs.core.Response.Status.BAD_REQUEST; | ||
|
||
import com.fasterxml.jackson.databind.JsonMappingException; | ||
import com.fasterxml.jackson.databind.exc.InvalidFormatException; | ||
|
||
import java.time.LocalDateTime; | ||
import java.time.OffsetDateTime; | ||
import java.util.Arrays; | ||
import java.util.Date; | ||
import java.util.List; | ||
import java.util.UUID; | ||
|
||
import javax.ws.rs.core.Response; | ||
import javax.ws.rs.ext.ExceptionMapper; | ||
|
||
public class JsonMappingExceptionMapper implements ExceptionMapper<JsonMappingException> { | ||
|
||
@Override | ||
public Response toResponse(JsonMappingException exception) { | ||
|
||
if (exception instanceof InvalidFormatException) { | ||
|
||
String fieldName = exception.getPath().iterator().next().getFieldName(); | ||
InvalidFormatException e = (InvalidFormatException) exception; | ||
Class<?> targetType = e.getTargetType(); | ||
|
||
if (targetType != null && targetType == UUID.class) { | ||
return createUuidResponse(fieldName); | ||
} else if (targetType != null && targetType.isEnum()) { | ||
return createResponseForWrongEnumValue(fieldName); | ||
} else { | ||
if (targetType != null && isWrongTypeMappableField(targetType)) { | ||
return createResponseForWrongType(fieldName); | ||
} | ||
} | ||
} | ||
|
||
return createDefaultResponse(exception); | ||
|
||
} | ||
|
||
private Response createUuidResponse(String field) { | ||
|
||
List<ValidationError> errors = Arrays.asList(new ValidationError( | ||
ValidationErrorCode.PATTERN.name(), "#/" + field, | ||
"^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$")); | ||
|
||
return createCustomResponse(errors); | ||
} | ||
|
||
private Response createResponseForWrongEnumValue(String field) { | ||
|
||
List<ValidationError> errors = Arrays.asList(new ValidationError( | ||
ValidationErrorCode.ENUM.name(), "#/" + field)); | ||
|
||
return createCustomResponse(errors); | ||
} | ||
|
||
private Response createResponseForWrongType(String field) { | ||
|
||
List<ValidationError> errors = Arrays.asList(new ValidationError( | ||
ValidationErrorCode.TYPE.name(), "#/" + field)); | ||
|
||
return createCustomResponse(errors); | ||
} | ||
|
||
private Response createCustomResponse(List<ValidationError> errors) { | ||
ValidationExceptionJson entity = new ValidationExceptionJson( | ||
"http://developers.unite.eu/errors/invalid", | ||
"Invalid", | ||
BAD_REQUEST.getStatusCode(), | ||
"The request body is syntactically correct, but is not accepted, because of its data.", | ||
errors); | ||
|
||
return Response | ||
.status(BAD_REQUEST) | ||
.entity(entity) | ||
.type("application/problem+json") | ||
.build(); | ||
} | ||
|
||
private boolean isWrongTypeMappableField(Class<?> targetType) { | ||
|
||
boolean isMappable = targetType == Integer.class | ||
|| targetType == int.class | ||
|| targetType == Long.class | ||
|| targetType == long.class | ||
|| targetType == Boolean.class | ||
|| targetType == boolean.class | ||
|| targetType == OffsetDateTime.class | ||
|| targetType == LocalDateTime.class | ||
|| targetType == Date.class; | ||
|
||
return isMappable; | ||
} | ||
|
||
private Response createDefaultResponse(Exception exception) { | ||
|
||
return Response.status(Response.Status.BAD_REQUEST).entity(exception.getMessage()).type( | ||
"text/plain").build(); | ||
} | ||
} |
195 changes: 195 additions & 0 deletions
195
src/test/java/com/mercateo/rest/jersey/utils/exception/JsonMappingExceptionMapperTest.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,195 @@ | ||
package com.mercateo.rest.jersey.utils.exception; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.when; | ||
|
||
import com.fasterxml.jackson.databind.JsonMappingException; | ||
import com.fasterxml.jackson.databind.JsonMappingException.Reference; | ||
import com.fasterxml.jackson.databind.exc.InvalidFormatException; | ||
import com.tngtech.java.junit.dataprovider.DataProvider; | ||
import com.tngtech.java.junit.dataprovider.DataProviderRunner; | ||
import com.tngtech.java.junit.dataprovider.UseDataProvider; | ||
|
||
import java.time.LocalDateTime; | ||
import java.time.OffsetDateTime; | ||
import java.util.Arrays; | ||
import java.util.Date; | ||
import java.util.List; | ||
import java.util.UUID; | ||
|
||
import javax.ws.rs.core.Response; | ||
|
||
import org.assertj.core.api.Assertions; | ||
import org.json.JSONObject; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
@SuppressWarnings("boxing") | ||
@RunWith(DataProviderRunner.class) | ||
public class JsonMappingExceptionMapperTest { | ||
|
||
private JsonMappingExceptionMapper uut = new JsonMappingExceptionMapper(); | ||
|
||
@Test | ||
public void test_ContentTypeHeader_defaultResponse() throws Exception { | ||
|
||
// given | ||
|
||
// when | ||
Response response = uut.toResponse(mock(JsonMappingException.class)); | ||
|
||
// then | ||
assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"text/plain"); | ||
} | ||
|
||
@Test | ||
public void test_ContentTypeHeader_noTargetType() throws Exception { | ||
|
||
// given | ||
JsonMappingException ex = mock(InvalidFormatException.class); | ||
Reference reference = new Reference(Object.class, "certainField"); | ||
List<Reference> references = Arrays.asList(reference); | ||
when(ex.getPath()).thenReturn(references); | ||
|
||
// when | ||
Response response = uut.toResponse(ex); | ||
|
||
// then | ||
Assertions.assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"text/plain"); | ||
} | ||
|
||
@Test | ||
public void test_Error_Uuid() throws Exception { | ||
|
||
// given | ||
InvalidFormatException ex = createExceptionWithTargetType(UUID.class); | ||
|
||
// when | ||
Response response = uut.toResponse(ex); | ||
|
||
// then | ||
JSONObject responseEntityJson = new JSONObject(response.getEntity()); | ||
|
||
Assertions.assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"application/problem+json"); | ||
assertThat(response.getStatus()).isEqualTo(400); | ||
assertThat(responseEntityJson.getString("title").equals("Invalid")); | ||
|
||
JSONObject errorJson = responseEntityJson | ||
.getJSONArray("errors") | ||
.getJSONObject(0); | ||
|
||
assertThat(errorJson.get("code").toString()).isEqualTo("PATTERN"); | ||
assertThat(errorJson.get("pattern").toString()).isEqualTo( | ||
"^[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$"); | ||
|
||
} | ||
|
||
@Test | ||
public void test_Error_Enum() throws Exception { | ||
|
||
// given | ||
InvalidFormatException ex = createExceptionWithTargetType(CountryCode.class); | ||
|
||
// when | ||
Response response = uut.toResponse(ex); | ||
|
||
// then | ||
JSONObject responseEntityJson = new JSONObject(response.getEntity()); | ||
|
||
Assertions.assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"application/problem+json"); | ||
assertThat(response.getStatus()).isEqualTo(400); | ||
assertThat(responseEntityJson.getString("title").equals("Invalid")); | ||
|
||
JSONObject errorJson = responseEntityJson | ||
.getJSONArray("errors") | ||
.getJSONObject(0); | ||
|
||
assertThat(errorJson.get("code").toString()).isEqualTo(ValidationErrorCode.ENUM.name()); | ||
assertThat(errorJson.get("path").toString()).isEqualTo("#/certainField"); | ||
|
||
} | ||
|
||
private InvalidFormatException createExceptionWithTargetType(Class<?> targetType) { | ||
InvalidFormatException ex = new InvalidFormatException(null, "msg", new Object(), | ||
targetType); | ||
Reference reference = new Reference(Object.class, "certainField"); | ||
ex.prependPath(reference); | ||
return ex; | ||
} | ||
|
||
@Test | ||
public void test_Error_MappableJsonField_LongAsExample() throws Exception { | ||
|
||
// given | ||
InvalidFormatException ex = createExceptionWithTargetType(Long.class); | ||
|
||
// when | ||
Response response = uut.toResponse(ex); | ||
|
||
// then | ||
JSONObject responseEntityJson = new JSONObject(response.getEntity()); | ||
Assertions.assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"application/problem+json"); | ||
assertThat(response.getStatus()).isEqualTo(400); | ||
assertThat(responseEntityJson.getString("title").equals("Invalid")); | ||
|
||
JSONObject errorJson = responseEntityJson | ||
.getJSONArray("errors") | ||
.getJSONObject(0); | ||
|
||
assertThat(errorJson.get("code").toString()).isEqualTo("TYPE"); | ||
|
||
} | ||
|
||
@DataProvider | ||
public static Object[][] fieldsForMappingTest() { | ||
return new Object[][] { | ||
// @formatter:off | ||
{ int.class,true }, | ||
{ Integer.class,true }, | ||
{ long.class,true }, | ||
{ Long.class,true }, | ||
{ Boolean.class,true }, | ||
{ boolean.class,true }, | ||
{ OffsetDateTime.class,true }, | ||
{ LocalDateTime.class ,true }, | ||
{ Date.class,true }, | ||
{ Object.class,false }, | ||
{ String.class,false }, | ||
// @formatter:on | ||
}; | ||
} | ||
|
||
@Test | ||
@UseDataProvider("fieldsForMappingTest") | ||
public void test_mappableFields(Class<?> targetType, boolean customError) throws Throwable { | ||
|
||
// given | ||
InvalidFormatException mock = createExceptionWithTargetType(targetType); | ||
Reference reference = new Reference(Object.class, "certainId"); | ||
mock.prependPath(reference); | ||
|
||
// when | ||
Response response = uut.toResponse(mock); | ||
|
||
// then | ||
if (customError) { | ||
assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"application/problem+json"); | ||
} else { | ||
assertThat(response.getHeaderString("Content-Type")).isEqualTo( | ||
"text/plain"); | ||
} | ||
|
||
} | ||
|
||
private enum CountryCode { | ||
DE, BE, CH, IT, FR, HU, ES, AT, CZ, SK, GB, IE, PL, NL | ||
} | ||
|
||
} |