Skip to content

Commit 01a37a0

Browse files
committed
Handle nulls gracefully
1 parent bfcb79f commit 01a37a0

File tree

5 files changed

+58
-24
lines changed

5 files changed

+58
-24
lines changed

form-binding/src/main/java/com/github/exabrial/formbinding/impl/DefaultFormBindingReader.java

+19-14
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,27 @@ public class DefaultFormBindingReader implements FormBindingReader {
1818

1919
@Override
2020
public <ReturnType> ReturnType read(String input, Class<ReturnType> returnTypeClazz) {
21-
try {
22-
Set<Field> boundFields = extractBoundFields(returnTypeClazz);
23-
ReturnType returnValue = returnTypeClazz.newInstance();
24-
Map<String, String> valueMap = splitQuery(input);
25-
for (String key : valueMap.keySet()) {
26-
Field field = findMatchingField(key, boundFields);
27-
if (field != null) {
28-
field.setAccessible(true);
29-
Class<?> type = field.getType();
30-
Object object = CommonCode.cub.convert(valueMap.get(key), type);
31-
field.set(returnValue, object);
21+
if (returnTypeClazz != null && input != null) {
22+
input = input.trim();
23+
try {
24+
Set<Field> boundFields = extractBoundFields(returnTypeClazz);
25+
ReturnType returnValue = returnTypeClazz.newInstance();
26+
Map<String, String> valueMap = splitQuery(input);
27+
for (String key : valueMap.keySet()) {
28+
Field field = findMatchingField(key, boundFields);
29+
if (field != null) {
30+
field.setAccessible(true);
31+
Class<?> type = field.getType();
32+
Object object = CommonCode.cub.convert(valueMap.get(key), type);
33+
field.set(returnValue, object);
34+
}
3235
}
36+
return returnValue;
37+
} catch (InstantiationException | IllegalAccessException e) {
38+
throw new RuntimeException(e);
3339
}
34-
return returnValue;
35-
} catch (InstantiationException | IllegalAccessException e) {
36-
throw new RuntimeException(e);
40+
} else {
41+
return null;
3742
}
3843
}
3944

form-binding/src/main/java/com/github/exabrial/formbinding/impl/DefaultFormBindingWriter.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@
1515
public class DefaultFormBindingWriter implements FormBindingWriter {
1616
@Override
1717
public String write(Object object) {
18-
Set<Field> boundFields = extractBoundFields(object.getClass());
19-
Map<String, String> values = convertToMap(object, boundFields);
20-
String result = convertMapToString(values);
21-
return result;
18+
if (object == null) {
19+
return null;
20+
} else {
21+
Set<Field> boundFields = extractBoundFields(object.getClass());
22+
Map<String, String> values = convertToMap(object, boundFields);
23+
String result = convertMapToString(values);
24+
return result;
25+
}
2226
}
2327

2428
private Map<String, String> convertToMap(Object object, Set<Field> boundFields) {

form-binding/src/test/java/com/github/exabrial/formbinding/impl/DefaultFormBindingReaderTest.java

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package com.github.exabrial.formbinding.impl;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertNotNull;
5+
import static org.junit.jupiter.api.Assertions.assertNull;
46

57
import java.math.BigDecimal;
68

@@ -13,11 +15,14 @@ class DefaultFormBindingReaderTest {
1315
private DefaultFormBindingReader reader = new DefaultFormBindingReader();
1416

1517
@Test
16-
void testRead_mixedAnnnotations() {
17-
String payload = "ThisIsATest";
18-
String input = "differentName=" + payload;
19-
MixedAnnotations mixedAnnotations = reader.read(input, MixedAnnotations.class);
20-
assertEquals(payload, mixedAnnotations.getHeresAField());
18+
void testRead_null() {
19+
assertNull(reader.read(null, MixedAnnotations.class));
20+
assertNull(reader.read("a=b", null));
21+
}
22+
23+
@Test
24+
void testRead_empty() {
25+
assertNotNull(reader.read("", MixedAnnotations.class));
2126
}
2227

2328
@Test
@@ -29,8 +34,9 @@ void testRead_VeryComplexObject() {
2934
object.testDouble = 4.2;
3035
object.stringParam = "testParam";
3136
VeryComplexObject readValue = reader.read(
32-
"date=Wed+Dec+31+18%3A00%3A00+CST+1969&stringParam=testParam&testInt=-1&wrapperLong=42&bigDecimal=1234&testDouble=4.2",
37+
"ignored=true&date=Wed+Dec+31+18%3A00%3A00+CST+1969&stringParam=testParam&testInt=-1&wrapperLong=42&bigDecimal=1234&testDouble=4.2",
3338
VeryComplexObject.class);
3439
assertEquals(object, readValue);
40+
assertNull(readValue.ignored);
3541
}
3642
}

form-binding/src/test/java/com/github/exabrial/formbinding/impl/DefaultFormBindingWriterTest.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.github.exabrial.formbinding.impl;
22

33
import static org.junit.jupiter.api.Assertions.assertEquals;
4+
import static org.junit.jupiter.api.Assertions.assertNull;
45

56
import java.math.BigDecimal;
67

@@ -15,6 +16,11 @@
1516
class DefaultFormBindingWriterTest {
1617
private DefaultFormBindingWriter writer = new DefaultFormBindingWriter();
1718

19+
@Test
20+
void testRead_null() {
21+
assertNull(writer.write(null));
22+
}
23+
1824
@Test
1925
void testWrite_MixedAnnotations() {
2026
String value = writer.write(new MixedAnnotations());
@@ -48,6 +54,7 @@ void testWrite_VeryComplexObject() {
4854
object.bigDecimal = BigDecimal.valueOf(1234L);
4955
object.testDouble = 4.2;
5056
object.stringParam = "testParam";
57+
object.ignored = true;
5158
String value = writer.write(object);
5259
assertEquals("stringParam=testParam&testInt=-1&wrapperLong=42&bigDecimal=1234&testDouble=4.2", value);
5360
}

form-binding/src/test/java/com/github/exabrial/formbinding/test/model/VeryComplexObject.java

+12
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,23 @@
22

33
import java.math.BigDecimal;
44

5+
import com.github.exabrial.formbinding.FormBindingTransient;
6+
57
public class VeryComplexObject {
68
public int testInt;
79
public Integer wrapperLong;
810
public BigDecimal bigDecimal;
911
public double testDouble;
1012
public String stringParam;
13+
@FormBindingTransient
14+
public Boolean ignored;
1115

1216
@Override
1317
public int hashCode() {
1418
final int prime = 31;
1519
int result = 1;
1620
result = prime * result + ((bigDecimal == null) ? 0 : bigDecimal.hashCode());
21+
result = prime * result + ((ignored == null) ? 0 : ignored.hashCode());
1722
result = prime * result + ((stringParam == null) ? 0 : stringParam.hashCode());
1823
long temp;
1924
temp = Double.doubleToLongBits(testDouble);
@@ -42,6 +47,13 @@ public boolean equals(Object obj) {
4247
} else if (!bigDecimal.equals(other.bigDecimal)) {
4348
return false;
4449
}
50+
if (ignored == null) {
51+
if (other.ignored != null) {
52+
return false;
53+
}
54+
} else if (!ignored.equals(other.ignored)) {
55+
return false;
56+
}
4557
if (stringParam == null) {
4658
if (other.stringParam != null) {
4759
return false;

0 commit comments

Comments
 (0)