StreamSerializerTest.java
package tools.jackson.databind.ext.jdk8;
import java.util.*;
import java.util.stream.Stream;
import org.junit.jupiter.api.Test;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import tools.jackson.core.type.TypeReference;
import tools.jackson.databind.MapperFeature;
import tools.jackson.databind.ObjectMapper;
import tools.jackson.databind.testutil.DatabindTestUtil;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class StreamSerializerTest extends StreamTestBase
{
static class TestBean
{
public int foo;
public String bar;
@JsonCreator
public TestBean(@JsonProperty("foo") int foo, @JsonProperty("bar") String bar)
{
this.foo = foo;
this.bar = bar;
}
@Override
public boolean equals(Object obj)
{
if (obj.getClass() != getClass()) {
return false;
}
TestBean castObj = (TestBean) obj;
return castObj.foo == foo && Objects.equals(castObj.bar, bar);
}
@Override
public int hashCode() {
return foo ^ bar.hashCode();
}
}
static class StringStreamWrapper {
public Stream<String> value;
public StringStreamWrapper() { }
StringStreamWrapper(Stream<String> v) { value = v; }
}
static final class FinalValueBean {
public int x;
public FinalValueBean() { }
FinalValueBean(int x) { this.x = x; }
@Override
public boolean equals(Object o) {
return (o instanceof FinalValueBean) && ((FinalValueBean) o).x == x;
}
@Override
public int hashCode() { return x; }
}
final static TestBean[] empty = {};
final static TestBean testBean1 = new TestBean(1, "one");
final static TestBean testBean2 = new TestBean(2, "two");
final static TestBean[] single = { testBean1 };
final static TestBean[] multipleValues = { testBean1, testBean2 };
@Test
public void testEmptyStream() throws Exception {
assertArrayEquals(empty, this.roundTrip(Stream.empty(), TestBean[].class));
}
@Test
public void testNestedStreamEmptyElement() throws Exception {
final List<NestedStream<String,List<String>>> expected = Arrays.asList(new NestedStream<>(new ArrayList<>()));
final Collection<NestedStream<String, List<String>>> actual = roundTrip(expected.stream(), new TypeReference<Collection<NestedStream<String,List<String>>>>() {});
assertEquals(expected,actual);
}
@Test
public void testSingleElement() throws Exception {
assertArrayEquals(single, roundTrip(Stream.of(single), TestBean[].class));
}
@Test
public void testNestedStreamSingleElement() throws Exception {
final List<NestedStream<String,List<String>>> nestedStream = Arrays.asList(new NestedStream<>(Arrays.asList("foo")));
final Collection<NestedStream<String, List<String>>> roundTrip = roundTrip(nestedStream.stream(), new TypeReference<Collection<NestedStream<String,List<String>>>>() {});
assertEquals(roundTrip,nestedStream);
}
@Test
public void testMultiElements() throws Exception {
assertArrayEquals(multipleValues, roundTrip(Stream.of(multipleValues), TestBean[].class));
}
@Test
public void testNestedStreamMultiElements() throws Exception {
final List<NestedStream<String,List<String>>> expected = Arrays.asList(new NestedStream<>(Arrays.asList("foo")),new NestedStream<>(Arrays.asList("bar")));
final Collection<NestedStream<String, List<String>>> actual = roundTrip(expected.stream(), new TypeReference<Collection<NestedStream<String,List<String>>>>() {});
assertEquals(expected,actual);
}
@Test
public void testStreamCloses() throws Exception {
assertClosesOnSuccess(Stream.of(multipleValues), stream -> roundTrip(stream, TestBean[].class));
}
@Test
public void testStreamWithStaticTyping() throws Exception
{
ObjectMapper mapper = DatabindTestUtil.jsonMapperBuilder()
.enable(MapperFeature.USE_STATIC_TYPING)
.build();
String json = mapper.writeValueAsString(
new StringStreamWrapper(Stream.of("a", "b", "c")));
assertEquals(DatabindTestUtil.a2q("{'value':['a','b','c']}"), json);
}
@Test
public void testStreamWithFinalElementType() throws Exception
{
// FinalValueBean is a final class, so createContextual() should
// resolve a specific content serializer even without USE_STATIC_TYPING
Stream<FinalValueBean> stream = Stream.of(
new FinalValueBean(1), new FinalValueBean(2));
String json = objectMapper.writeValueAsString(stream);
assertEquals(DatabindTestUtil.a2q("[{'x':1},{'x':2}]"), json);
}
@Test
public void testStreamOfStrings() throws Exception
{
assertEquals("[\"hello\",\"world\"]",
objectMapper.writeValueAsString(Stream.of("hello", "world")));
}
@Test
public void testStreamOfIntegers() throws Exception
{
assertEquals("[1,2,3]", objectMapper.writeValueAsString(Stream.of(1, 2, 3)));
}
private <T, R> R[] roundTrip(Stream<T> stream, Class<R[]> clazz) {
String json = objectMapper.writeValueAsString(stream);
return objectMapper.readValue(json, clazz);
}
private <T, R> R roundTrip(Stream<T> stream, TypeReference<R> tr) {
return objectMapper.readValue(objectMapper.writeValueAsString(stream), tr);
}
/**
* Test class to verify nested streams are handled, even though, in general, this is likely a risky thing to do.
*
* @param <T> the type of the container contents
* @param <C> the container type.
*/
static class NestedStream<T,C extends Collection<T>> {
C values;
NestedStream(){};
public NestedStream(C values) {
super();
this.values = values;
}
public Stream<T> getValues(){
return values.stream();
}
protected void setValues(C values) {
this.values = values;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((values == null) ? 0 : values.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
@SuppressWarnings("rawtypes")
NestedStream other = (NestedStream) obj;
if (values == null) {
if (other.values != null)
return false;
} else if (!values.equals(other.values))
return false;
return true;
}
@Override
public String toString() {
return "NestedStream [values=" + this.values + "]";
}
}
}