This is an automated email from the ASF dual-hosted git repository.
rmannibucau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/johnzon.git
The following commit(s) were added to refs/heads/master by this push:
new 589fb9e Fixed [JOHNZON-277]
589fb9e is described below
commit 589fb9e2b8732a0033f99d162b1209082d0de019
Author: Markus KARG <[email protected]>
AuthorDate: Thu Sep 19 13:25:34 2019 +0000
Fixed [JOHNZON-277]
Custom deserializer fails with inner empty JSON block {} / [] at
START_OBJECT /
START_ARRAY.
Signed-off-by: Markus KARG <[email protected]>
---
.../serializer/JohnzonDeserializationContext.java | 4 +
.../serializer/DeserializationContextTest.java | 89 ++++++++++++++++++++++
2 files changed, 93 insertions(+)
diff --git
a/johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/serializer/JohnzonDeserializationContext.java
b/johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/serializer/JohnzonDeserializationContext.java
index a3b58dd..c531449 100644
---
a/johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/serializer/JohnzonDeserializationContext.java
+++
b/johnzon-jsonb/src/main/java/org/apache/johnzon/jsonb/serializer/JohnzonDeserializationContext.java
@@ -63,6 +63,10 @@ public class JohnzonDeserializationContext implements
DeserializationContext {
parseObject(null, parser, objectBuilder);
return objectBuilder.build();
}
+ case END_OBJECT:
+ return JsonValue.EMPTY_JSON_OBJECT;
+ case END_ARRAY:
+ return JsonValue.EMPTY_JSON_ARRAY;
case START_ARRAY:
final JsonArrayBuilder arrayBuilder =
builderFactory.createArrayBuilder();
parseArray(parser, arrayBuilder);
diff --git
a/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
new file mode 100644
index 0000000..ddb0ec1
--- /dev/null
+++
b/johnzon-jsonb/src/test/java/org/apache/johnzon/jsonb/serializer/DeserializationContextTest.java
@@ -0,0 +1,89 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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 org.apache.johnzon.jsonb.serializer;
+
+import static org.junit.Assert.assertNotNull;
+
+import java.lang.reflect.Type;
+
+import javax.json.bind.Jsonb;
+import javax.json.bind.JsonbBuilder;
+import javax.json.bind.JsonbConfig;
+import javax.json.bind.serializer.DeserializationContext;
+import javax.json.bind.serializer.JsonbDeserializer;
+import javax.json.stream.JsonParser;
+
+import org.junit.Test;
+
+public class DeserializationContextTest {
+
+ /**
+ * Test Case for <a
href="https://issues.apache.org/jira/browse/JOHNZON-277">JOHNZON-277</a>
+ *
+ * According to
https://github.com/eclipse-ee4j/jsonb-api/blob/master/api/src/main/java/javax/json/bind/serializer/DeserializationContext.java#L34-L35
a
+ * deserialization context must be able to deserialize an object EVEN IN
CASE the parser cursor is at {@code START_OBJECT} or {@code START_ARRAY}.
+ *
+ * Quote: "JsonParser cursor have to be at KEY_NAME before START_OBJECT /
START_ARRAY, or at START_OBJECT / START_ARRAY 35 * to call this method."
+ *
+ * The latter case, "...or at START_OBJECT..." seems to fail in case the
inner JSON to parse is an empty block "{}" (also for empty arrays).
+ */
+ @Test
+ public void issue277() throws Exception {
+ try (final Jsonb jsonb = JsonbBuilder.create()) {
+ // CAN create Bar and Bar[] instance from empty JSON inside of Foo
+ final Foo foo = jsonb.fromJson("{\"bar\":{},\"bars\":[]}",
Foo.class);
+ assertNotNull(foo);
+ assertNotNull(foo.bar);
+ // assertNotNull(foo.bars); <- There seems to be a nother bug as
this one fails even without custom deserialization!
+ }
+
+ try (final Jsonb jsonb = JsonbBuilder.create(new
JsonbConfig().withDeserializers(new CustomDeserializer()))) {
+ // CANNOT create Bar nor Bar[] instance from empty JSON when
parser cursor is at START_OBJECT => Bug in Johnzon
+ final Foo foo = jsonb.fromJson("{\"bar\":{},\"bars\":[]}",
Foo.class); // throws exception "Unknown structure: END_OBJECT / END_ARRAY"
+ assertNotNull(foo);
+ assertNotNull(foo.bar);
+ assertNotNull(foo.bars);
+ }
+ }
+
+ public static class CustomDeserializer implements JsonbDeserializer<Foo> {
+ @Override
+ public Foo deserialize(final JsonParser parser, final
DeserializationContext ctx, final Type rtType) {
+ parser.next(); // now cursor is at START_OBJECT of outer Foo, so
let's create empty Foo...
+ final Foo foo = new Foo();
+ parser.next(); // now cursor is at KEY_NAME "bar"
+ parser.next(); // now cursor is at START_OBJECT of inner Bar, so
let's fill Foo.bar...
+ foo.bar = ctx.deserialize(Bar.class, parser);
+ parser.next(); // now cursor is at KEY_NAME "bars"
+ parser.next(); // now cursor is at START_ARRAY of inner Bar[], so
let's fill Foo.bars...
+ foo.bars = ctx.deserialize(Bar[].class, parser);
+ return foo;
+ }
+ }
+
+ public static class Foo {
+ public Bar bar;
+ public Bar[] bars;
+ }
+
+ public static class Bar {
+ // intentionally left blank
+ }
+
+}