forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
eugenp
committed
Dec 23, 2013
1 parent
8118dd3
commit aa0030d
Showing
4 changed files
with
237 additions
and
148 deletions.
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
25 changes: 25 additions & 0 deletions
25
jackson/src/test/java/dtos/MyDtoNoAccessorsAndFieldVisibility.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,25 @@ | ||
package dtos; | ||
|
||
import com.fasterxml.jackson.annotation.JsonAutoDetect; | ||
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility; | ||
|
||
@JsonAutoDetect(fieldVisibility = Visibility.ANY) | ||
public class MyDtoNoAccessorsAndFieldVisibility { | ||
|
||
String stringValue; | ||
int intValue; | ||
boolean booleanValue; | ||
|
||
public MyDtoNoAccessorsAndFieldVisibility() { | ||
super(); | ||
} | ||
|
||
public MyDtoNoAccessorsAndFieldVisibility(final String stringValue, final int intValue, final boolean booleanValue) { | ||
super(); | ||
|
||
this.stringValue = stringValue; | ||
this.intValue = intValue; | ||
this.booleanValue = booleanValue; | ||
} | ||
|
||
} |
187 changes: 187 additions & 0 deletions
187
jackson/src/test/java/org/baeldung/jackson/test/JacksonSerializationIgnoreUnitTest.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,187 @@ | ||
package org.baeldung.jackson.test; | ||
|
||
import static org.hamcrest.Matchers.containsString; | ||
import static org.hamcrest.Matchers.not; | ||
import static org.junit.Assert.assertThat; | ||
|
||
import java.io.IOException; | ||
|
||
import org.junit.Test; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
import com.fasterxml.jackson.core.JsonGenerator; | ||
import com.fasterxml.jackson.core.JsonParseException; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import com.fasterxml.jackson.databind.SerializerProvider; | ||
import com.fasterxml.jackson.databind.ser.BeanPropertyWriter; | ||
import com.fasterxml.jackson.databind.ser.FilterProvider; | ||
import com.fasterxml.jackson.databind.ser.PropertyFilter; | ||
import com.fasterxml.jackson.databind.ser.PropertyWriter; | ||
import com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter; | ||
import com.fasterxml.jackson.databind.ser.impl.SimpleFilterProvider; | ||
|
||
import dtos.MyDto; | ||
import dtos.MyDtoIgnoreField; | ||
import dtos.MyDtoIgnoreFieldByName; | ||
import dtos.MyDtoIgnoreNull; | ||
import dtos.MyDtoIncludeNonDefault; | ||
import dtos.MyDtoWithFilter; | ||
import dtos.MyMixInForString; | ||
|
||
public class JacksonSerializationIgnoreUnitTest { | ||
|
||
// tests - single entity to json | ||
|
||
// ignore | ||
|
||
@Test | ||
public final void givenOnlyNonDefaultValuesAreSerializedAndDtoHasOnlyDefaultValues_whenSerializing_thenCorrect() throws JsonParseException, IOException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
final String dtoAsString = mapper.writeValueAsString(new MyDtoIncludeNonDefault()); | ||
|
||
assertThat(dtoAsString, not(containsString("intValue"))); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenOnlyNonDefaultValuesAreSerializedAndDtoHasNonDefaultValue_whenSerializing_thenCorrect() throws JsonParseException, IOException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
final MyDtoIncludeNonDefault dtoObject = new MyDtoIncludeNonDefault(); | ||
dtoObject.setBooleanValue(true); | ||
|
||
final String dtoAsString = mapper.writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, containsString("booleanValue")); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenFieldIsIgnoredByName_whenDtoIsSerialized_thenCorrect() throws JsonParseException, IOException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
final MyDtoIgnoreFieldByName dtoObject = new MyDtoIgnoreFieldByName(); | ||
dtoObject.setBooleanValue(true); | ||
|
||
final String dtoAsString = mapper.writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, not(containsString("intValue"))); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenFieldIsIgnoredDirectly_whenDtoIsSerialized_thenCorrect() throws JsonParseException, IOException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
final MyDtoIgnoreField dtoObject = new MyDtoIgnoreField(); | ||
|
||
final String dtoAsString = mapper.writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, not(containsString("intValue"))); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenFieldTypeIsIgnored_whenDtoIsSerialized_thenCorrect() throws JsonParseException, IOException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
mapper.addMixInAnnotations(String.class, MyMixInForString.class); | ||
final MyDto dtoObject = new MyDto(); | ||
dtoObject.setBooleanValue(true); | ||
|
||
final String dtoAsString = mapper.writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, containsString("intValue")); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
assertThat(dtoAsString, not(containsString("stringValue"))); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenTypeHasFilterThatIgnoresFieldByName_whenDtoIsSerialized_thenCorrect() throws JsonParseException, IOException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
final SimpleBeanPropertyFilter theFilter = SimpleBeanPropertyFilter.serializeAllExcept("intValue"); | ||
final FilterProvider filters = new SimpleFilterProvider().addFilter("myFilter", theFilter); | ||
|
||
final MyDtoWithFilter dtoObject = new MyDtoWithFilter(); | ||
dtoObject.setIntValue(12); | ||
|
||
final String dtoAsString = mapper.writer(filters).writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, not(containsString("intValue"))); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
assertThat(dtoAsString, containsString("stringValue")); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenTypeHasFilterThatIgnoresNegativeInt_whenDtoIsSerialized_thenCorrect() throws JsonParseException, IOException { | ||
final PropertyFilter theFilter = new SimpleBeanPropertyFilter() { | ||
@Override | ||
public final void serializeAsField(final Object pojo, final JsonGenerator jgen, final SerializerProvider provider, final PropertyWriter writer) throws Exception { | ||
if (include(writer)) { | ||
if (!writer.getName().equals("intValue")) { | ||
writer.serializeAsField(pojo, jgen, provider); | ||
return; | ||
} | ||
|
||
final int intValue = ((MyDtoWithFilter) pojo).getIntValue(); | ||
if (intValue >= 0) { | ||
writer.serializeAsField(pojo, jgen, provider); | ||
} | ||
} else if (!jgen.canOmitFields()) { // since 2.3 | ||
writer.serializeAsOmittedField(pojo, jgen, provider); | ||
} | ||
} | ||
|
||
@Override | ||
protected final boolean include(final BeanPropertyWriter writer) { | ||
return true; | ||
} | ||
|
||
@Override | ||
protected final boolean include(final PropertyWriter writer) { | ||
return true; | ||
} | ||
}; | ||
final FilterProvider filters = new SimpleFilterProvider().addFilter("myFilter", theFilter); | ||
|
||
final MyDtoWithFilter dtoObject = new MyDtoWithFilter(); | ||
dtoObject.setIntValue(-1); | ||
|
||
final ObjectMapper mapper = new ObjectMapper(); | ||
final String dtoAsString = mapper.writer(filters).writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, not(containsString("intValue"))); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
assertThat(dtoAsString, containsString("stringValue")); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenIgnoringNullFieldsOnClass_whenWritingObjectWithNullField_thenFieldIsIgnored() throws JsonProcessingException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
final MyDtoIgnoreNull dtoObject = new MyDtoIgnoreNull(); | ||
|
||
final String dtoAsString = mapper.writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, containsString("intValue")); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
assertThat(dtoAsString, not(containsString("stringValue"))); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
@Test | ||
public final void givenIgnoringNullFieldsGlobally_whenWritingObjectWithNullField_thenIgnored() throws JsonProcessingException { | ||
final ObjectMapper mapper = new ObjectMapper(); | ||
mapper.setSerializationInclusion(Include.NON_NULL); | ||
final MyDto dtoObject = new MyDto(); | ||
|
||
final String dtoAsString = mapper.writeValueAsString(dtoObject); | ||
|
||
assertThat(dtoAsString, containsString("intValue")); | ||
assertThat(dtoAsString, containsString("booleanValue")); | ||
assertThat(dtoAsString, not(containsString("stringValue"))); | ||
System.out.println(dtoAsString); | ||
} | ||
|
||
} |
Oops, something went wrong.