Skip to content

Commit

Permalink
Merge branch '2.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 12, 2020
2 parents 1970329 + a179e1f commit 544ee1f
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 61 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ protected final boolean _parseBooleanPrimitive(DeserializationContext ctxt,

// may accept ints too, (0 == false, otherwise true)
if (t == JsonToken.VALUE_NUMBER_INT) {
Boolean b = _coerceBooleanFromInt(ctxt, p, Boolean.TYPE);
Boolean b = _coerceBooleanFromInt(ctxt, p, targetType);
// may get `null`, Boolean.TRUE or Boolean.FALSE so:
return (b == Boolean.TRUE);
}
Expand Down Expand Up @@ -367,7 +367,7 @@ protected final Boolean _parseBoolean(DeserializationContext ctxt,
}
// may accept ints too, (0 == false, otherwise true)
if (t == JsonToken.VALUE_NUMBER_INT) {
return _coerceBooleanFromInt(ctxt, p, Boolean.class);
return _coerceBooleanFromInt(ctxt, p, targetType);
}
// And finally, let's allow Strings to be converted too
if (t == JsonToken.VALUE_STRING) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,84 +1,89 @@
package com.fasterxml.jackson.databind.convert;

import java.math.BigInteger;

import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.exc.MismatchedInputException;

public class CoerceFloatToIntTest extends BaseMapTest
{
private final ObjectMapper MAPPER = sharedMapper();
private final ObjectReader R = MAPPER.reader().without(DeserializationFeature.ACCEPT_FLOAT_AS_INT);
private final ObjectMapper DEFAULT_MAPPER = sharedMapper();
private final ObjectReader READER_LEGACY_FAIL = DEFAULT_MAPPER.reader()
.without(DeserializationFeature.ACCEPT_FLOAT_AS_INT);

public void testDoubleToInt() throws Exception
/*
/********************************************************
/* Test methods, defaults (legacy)
/********************************************************
*/

public void testLegacyDoubleToIntCoercion() throws Exception
{
// by default, should be ok
Integer I = MAPPER.readValue(" 1.25 ", Integer.class);
Integer I = DEFAULT_MAPPER.readValue(" 1.25 ", Integer.class);
assertEquals(1, I.intValue());
IntWrapper w = MAPPER.readValue("{\"i\":-2.25 }", IntWrapper.class);
assertEquals(-2, w.i);
int[] arr = MAPPER.readValue("[ 1.25 ]", int[].class);
assertEquals(1, arr[0]);

try {
R.forType(Integer.class).readValue("1.5");
fail("Should not pass");
} catch (JsonMappingException e) {
verifyException(e, "Cannot coerce a floating-point");
}
try {
R.forType(Integer.TYPE).readValue("1.5");
fail("Should not pass");
} catch (JsonMappingException e) {
verifyException(e, "Cannot coerce a floating-point");
}
try {
R.forType(IntWrapper.class).readValue("{\"i\":-2.25 }");
fail("Should not pass");
} catch (JsonMappingException e) {
verifyException(e, "Cannot coerce a floating-point");
{
IntWrapper w = DEFAULT_MAPPER.readValue("{\"i\":-2.25 }", IntWrapper.class);
assertEquals(-2, w.i);
int[] arr = DEFAULT_MAPPER.readValue("[ 1.25 ]", int[].class);
assertEquals(1, arr[0]);
}
try {
R.forType(int[].class).readValue("[ 2.5 ]");
fail("Should not pass");
} catch (JsonMappingException e) {
verifyException(e, "Cannot coerce a floating-point");

Long L = DEFAULT_MAPPER.readValue(" 3.33 ", Long.class);
assertEquals(3L, L.longValue());
{
LongWrapper w = DEFAULT_MAPPER.readValue("{\"l\":-2.25 }", LongWrapper.class);
assertEquals(-2L, w.l);
long[] arr = DEFAULT_MAPPER.readValue("[ 1.25 ]", long[].class);
assertEquals(1, arr[0]);
}

Short S = DEFAULT_MAPPER.readValue("42.33", Short.class);
assertEquals(42, S.intValue());

BigInteger biggie = DEFAULT_MAPPER.readValue("95.3", BigInteger.class);
assertEquals(95L, biggie.longValue());
}

public void testDoubleToLong() throws Exception
public void testLegacyFailDoubleToInt() throws Exception
{
// by default, should be ok
Long L = MAPPER.readValue(" 3.33 ", Long.class);
assertEquals(3L, L.longValue());
LongWrapper w = MAPPER.readValue("{\"l\":-2.25 }", LongWrapper.class);
assertEquals(-2L, w.l);
long[] arr = MAPPER.readValue("[ 1.25 ]", long[].class);
assertEquals(1, arr[0]);
_verifyCoerceFail(READER_LEGACY_FAIL, Integer.class, "1.5");
_verifyCoerceFail(READER_LEGACY_FAIL, Integer.TYPE, "1.5");
_verifyCoerceFail(READER_LEGACY_FAIL, IntWrapper.class, "{\"i\":-2.25 }");
_verifyCoerceFail(READER_LEGACY_FAIL, int[].class, "[ 2.5 ]");

try {
R.forType(Long.class).readValue("1.5");
fail("Should not pass");
} catch (MismatchedInputException e) {
verifyException(e, "Cannot coerce a floating-point");
}
_verifyCoerceFail(READER_LEGACY_FAIL, Long.class, "0.5");
_verifyCoerceFail(READER_LEGACY_FAIL, Long.TYPE, "-2.5");
_verifyCoerceFail(READER_LEGACY_FAIL, LongWrapper.class, "{\"l\": 7.7 }");
_verifyCoerceFail(READER_LEGACY_FAIL, long[].class, "[ -1.35 ]");

_verifyCoerceFail(READER_LEGACY_FAIL, Short.class, "0.5");
_verifyCoerceFail(READER_LEGACY_FAIL, Short.TYPE, "-2.5");
_verifyCoerceFail(READER_LEGACY_FAIL, short[].class, "[ -1.35 ]");

_verifyCoerceFail(READER_LEGACY_FAIL, BigInteger.class, "25236.256");
}

private void _verifyCoerceFail(ObjectReader r, Class<?> targetType,
String doc) throws Exception
{
try {
R.forType(Long.TYPE).readValue("1.5");
fail("Should not pass");
} catch (MismatchedInputException e) {
verifyException(e, "Cannot coerce a floating-point");
}

try {
R.forType(LongWrapper.class).readValue("{\"l\": 7.7 }");
fail("Should not pass");
} catch (MismatchedInputException e) {
verifyException(e, "Cannot coerce a floating-point");
}
try {
R.forType(long[].class).readValue("[ 2.5 ]");
r.forType(targetType).readValue(doc);
fail("Should not pass");
} catch (MismatchedInputException e) {
verifyException(e, "Cannot coerce a floating-point");
}
}

public void testDoubleToLong() throws Exception
{

}

/*
/********************************************************
/* Test methods, CoerceConfig
/********************************************************
*/

}

0 comments on commit 544ee1f

Please sign in to comment.