Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Project: jackson-databind

-

2.16.1 (not yet released)

#4216: Primitive array deserializer cannot being captured by `DeserializerModifier`
(reported by @SakuraKoi)
(fix contributed by Joo-Hyuk K)

2.16.0 (15-Nov-2023)

#1770: Incorrect deserialization for `BigDecimal` numbers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1348,13 +1348,15 @@ public JsonDeserializer<?> createArrayDeserializer(DeserializationContext ctxt,
if (contentDeser == null) {
Class<?> raw = elemType.getRawClass();
if (elemType.isPrimitive()) {
return PrimitiveArrayDeserializers.forType(raw);
deser = PrimitiveArrayDeserializers.forType(raw);
}
if (raw == String.class) {
Copy link
Member

@cowtowncoder cowtowncoder Nov 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-> else if? I can change that actually. n/m

return StringArrayDeserializer.instance;
deser = StringArrayDeserializer.instance;
}
}
deser = new ObjectArrayDeserializer(type, contentDeser, elemTypeDeser);
if (deser == null) {
deser = new ObjectArrayDeserializer(type, contentDeser, elemTypeDeser);
}
}
// and then new with 2.2: ability to post-process it too (databind#120)
if (_factoryConfig.hasDeserializerModifiers()) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
package com.fasterxml.jackson.databind.deser;

import static com.fasterxml.jackson.databind.BaseMapTest.jsonMapperBuilder;
import static junit.framework.TestCase.assertEquals;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can use you use org.junit.Asserts?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or even use the Jupiter asserts, but put the params in the right order - the ones expected by the Jupiter (actual, expected)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, thank you for pointing out! Totally missed that.

Copy link
Member Author

@JooHyukKim JooHyukKim Nov 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was confused, so I looked into org.Junit.Assert.assertEquals(). It actually seems to be declared in exepected, actual order, so current format should be reasonable 🤔. If( not, could you lemme know if there is another Assert?

image

import com.fasterxml.jackson.databind.BeanDescription;
import com.fasterxml.jackson.databind.DeserializationConfig;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
import com.fasterxml.jackson.databind.type.ArrayType;
import java.util.concurrent.atomic.AtomicInteger;
import org.junit.jupiter.api.Test;

/**
* Unit test for [databind#4216] : Primitive array deserializer cannot being captured by DeserializerModifier
*/
public class BeanDeserializerModifier4216Test
{

static class WrapperBean4216 {
public Byte[] objArr;
public byte[] primArr;
}

@Test
public void testModifierCalledTwice() throws Exception
{
// Given : Configure and construct
AtomicInteger counter = new AtomicInteger(0);
ObjectMapper objectMapper = jsonMapperBuilder()
.addModules(getSimpleModuleWithCounter(counter))
.build();

// Given : Set-up data
WrapperBean4216 test = new WrapperBean4216();
test.primArr = new byte[]{(byte) 0x11};
test.objArr = new Byte[]{(byte) 0x11};
String sample = objectMapper.writeValueAsString(test);

// When
objectMapper.readValue(sample, WrapperBean4216.class);

// Then : modifyArrayDeserializer should be called twice
assertEquals(2, counter.get());
}

private static SimpleModule getSimpleModuleWithCounter(AtomicInteger counter) {
SimpleModule module = new SimpleModule();
module.setDeserializerModifier(
new BeanDeserializerModifier() {
@Override
public JsonDeserializer<?> modifyArrayDeserializer(DeserializationConfig config,
ArrayType valueType, BeanDescription beanDesc, JsonDeserializer<?> deserializer)
{
// Count invocations
counter.incrementAndGet();
return deserializer;
}
});
return module;
}
}