-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathJsonNullableBasicTest.java
More file actions
298 lines (247 loc) · 10.6 KB
/
JsonNullableBasicTest.java
File metadata and controls
298 lines (247 loc) · 10.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package org.openapitools.jackson.nullable;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.List;
import static org.junit.jupiter.api.Assertions.*;
class JsonNullableBasicTest extends ModuleTestBase {
public static final class JsonNullableData {
public JsonNullable<String> myString;
}
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public static final class JsonNullableGenericData<T> {
private JsonNullable<T> myData;
}
@JsonIdentityInfo(generator= ObjectIdGenerators.IntSequenceGenerator.class)
public static class Unit
{
public JsonNullable<Unit> baseUnit;
public Unit() {
}
public Unit(final JsonNullable<Unit> u) {
baseUnit = u;
}
public void link(final Unit u) {
baseUnit = JsonNullable.of(u);
}
}
// To test handling of polymorphic value types
public static class Container {
public JsonNullable<Contained> contained;
}
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY)
@JsonSubTypes({
@JsonSubTypes.Type(name = "ContainedImpl", value = ContainedImpl.class),
})
public static interface Contained { }
public static class ContainedImpl implements Contained { }
/*
/**********************************************************
/* Test methods
/**********************************************************
*/
private final ObjectMapper MAPPER = mapperWithModule();
private final ObjectMapper MAPPER_BLANK_TO_NULL = mapperWithModule(new JsonNullableModule().mapBlankStringToNull(true));
@Test
void testJsonNullableTypeResolution() {
// With 2.6, we need to recognize it as ReferenceType
JavaType t = MAPPER.constructType(JsonNullable.class);
assertNotNull(t);
assertEquals(JsonNullable.class, t.getRawClass());
assertTrue(t.isReferenceType());
}
@Test
void testDeserAbsent() throws Exception {
JsonNullable<?> value = MAPPER.readValue("null",
new TypeReference<JsonNullable<String>>() {
});
assertNull(value.get());
}
@Test
void testDeserSimpleString() throws Exception {
JsonNullable<?> value = MAPPER.readValue("\"simpleString\"",
new TypeReference<JsonNullable<String>>() {
});
assertTrue(value.isPresent());
assertEquals("simpleString", value.get());
}
@Test
void testDeserInsideObject() throws Exception {
JsonNullableData data = MAPPER.readValue("{\"myString\":\"simpleString\"}",
JsonNullableData.class);
assertTrue(data.myString.isPresent());
assertEquals("simpleString", data.myString.get());
}
@Test
void testDeserComplexObject() throws Exception {
TypeReference<JsonNullable<JsonNullableData>> type = new TypeReference<JsonNullable<JsonNullableData>>() {
};
JsonNullable<JsonNullableData> data = MAPPER.readValue(
"{\"myString\":\"simpleString\"}", type);
assertTrue(data.isPresent());
assertTrue(data.get().myString.isPresent());
assertEquals("simpleString", data.get().myString.get());
}
@Test
void testDeserGeneric() throws Exception {
TypeReference<JsonNullable<JsonNullableGenericData<String>>> type = new TypeReference<JsonNullable<JsonNullableGenericData<String>>>() {
};
JsonNullable<JsonNullableGenericData<String>> data = MAPPER.readValue(
"{\"myData\":\"simpleString\"}", type);
assertTrue(data.isPresent());
assertTrue(data.get().myData.isPresent());
assertEquals("simpleString", data.get().myData.get());
}
@Test
void testSerAbsent() throws Exception {
String value = MAPPER.writeValueAsString(JsonNullable.undefined());
assertEquals("null", value);
}
@Test
void testSerSimpleString() throws Exception {
String value = MAPPER.writeValueAsString(JsonNullable.of("simpleString"));
assertEquals("\"simpleString\"", value);
}
@Test
void testSerInsideObject() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = JsonNullable.of("simpleString");
String value = MAPPER.writeValueAsString(data);
assertEquals("{\"myString\":\"simpleString\"}", value);
}
@Test
void testSerComplexObject() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = JsonNullable.of("simpleString");
String value = MAPPER.writeValueAsString(JsonNullable.of(data));
assertEquals("{\"myString\":\"simpleString\"}", value);
}
@Test
void testSerGeneric() throws Exception {
JsonNullableGenericData<String> data = new JsonNullableGenericData<String>();
data.myData = JsonNullable.of("simpleString");
String value = MAPPER.writeValueAsString(JsonNullable.of(data));
assertEquals("{\"myData\":\"simpleString\"}", value);
}
@Test
void testSerOptDefault() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = JsonNullable.undefined();
String value = mapperWithModule().setDefaultPropertyInclusion(
JsonInclude.Include.ALWAYS).writeValueAsString(data);
assertEquals("{}", value);
}
@Test
void testSerOptNull() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = null;
String value = mapperWithModule().setDefaultPropertyInclusion(
JsonInclude.Include.NON_NULL).writeValueAsString(data);
assertEquals("{}", value);
}
@Test
void testSerOptNullNulled() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = JsonNullable.of(null);
String value = mapperWithModule().setDefaultPropertyInclusion(
JsonInclude.Include.NON_NULL).writeValueAsString(data);
assertEquals("{\"myString\":null}", value);
}
@Test
void testSerOptAbsent() throws Exception {
final JsonNullableData data = new JsonNullableData();
data.myString = JsonNullable.undefined();
ObjectMapper mapper = mapperWithModule()
.setDefaultPropertyInclusion(JsonInclude.Include.NON_NULL);
assertEquals("{}", mapper.writeValueAsString(data));
// but do exclude with NON_EMPTY
mapper = mapperWithModule()
.setDefaultPropertyInclusion(JsonInclude.Include.NON_EMPTY);
assertEquals("{}", mapper.writeValueAsString(data));
// and with new (2.6) NON_ABSENT
mapper = mapperWithModule()
.setDefaultPropertyInclusion(JsonInclude.Include.NON_ABSENT);
assertEquals("{}", mapper.writeValueAsString(data));
}
@Test
void testSerOptAbsentNull() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = JsonNullable.of(null);
String value = mapperWithModule().setDefaultPropertyInclusion(
JsonInclude.Include.NON_ABSENT).writeValueAsString(data);
assertEquals("{\"myString\":null}", value);
}
@Test
void testSerOptNonEmpty() throws Exception {
JsonNullableData data = new JsonNullableData();
data.myString = null;
String value = mapperWithModule().setDefaultPropertyInclusion(
JsonInclude.Include.NON_EMPTY).writeValueAsString(data);
assertEquals("{}", value);
}
@Test
void testWithTypingEnabled() throws Exception {
final ObjectMapper objectMapper = mapperWithModule();
// ENABLE TYPING
objectMapper
.activateDefaultTyping(objectMapper.getPolymorphicTypeValidator(), ObjectMapper.DefaultTyping.OBJECT_AND_NON_CONCRETE);
final JsonNullableData myData = new JsonNullableData();
myData.myString = JsonNullable.of("abc");
final String json = objectMapper.writeValueAsString(myData);
final JsonNullableData deserializedMyData = objectMapper.readValue(json,
JsonNullableData.class);
assertEquals(myData.myString, deserializedMyData.myString);
}
@Test
void testObjectId() throws Exception {
final Unit input = new Unit();
input.link(input);
String json = MAPPER.writeValueAsString(input);
Unit result = MAPPER.readValue(json, Unit.class);
assertNotNull(result);
assertNotNull(result.baseUnit);
assertTrue(result.baseUnit.isPresent());
Unit base = result.baseUnit.get();
assertSame(result, base);
}
@Test
void testJsonNullableCollection() throws Exception {
TypeReference<List<JsonNullable<String>>> typeReference = new TypeReference<List<JsonNullable<String>>>() {
};
List<JsonNullable<String>> list = new ArrayList<JsonNullable<String>>();
list.add(JsonNullable.of("2014-1-22"));
list.add(JsonNullable.<String>of(null));
list.add(JsonNullable.of("2014-1-23"));
String str = MAPPER.writeValueAsString(list);
assertEquals("[\"2014-1-22\",null,\"2014-1-23\"]", str);
List<JsonNullable<String>> result = MAPPER.readValue(str, typeReference);
assertEquals(list.size(), result.size());
for (int i = 0; i < list.size(); ++i) {
assertEquals(list.get(i), result.get(i),"Entry #" + i);
}
}
@Test
void testDeserEmptyStringForNonStringType() throws Exception {
JsonNullable<?> value = MAPPER.readValue("\"\"", new TypeReference<JsonNullable<Integer>>() {});
assertFalse(value.isPresent());
}
@Test
void testDeserEmptyStringForNonStringTypeWithMapBlankStringToNull() throws Exception {
JsonNullable<?> value = MAPPER_BLANK_TO_NULL.readValue("\"\"", new TypeReference<JsonNullable<Integer>>() {});
assertTrue(value.isPresent());
assertNull(value.get());
}
@Test
void testPolymorphic() throws Exception {
final Container dto = new Container();
dto.contained = JsonNullable.of((Contained) new ContainedImpl());
final String json = MAPPER.writeValueAsString(dto);
final Container fromJson = MAPPER.readValue(json, Container.class);
assertNotNull(fromJson.contained);
assertTrue(fromJson.contained.isPresent());
assertSame(ContainedImpl.class, fromJson.contained.get().getClass());
}
}