我正在尝试为我的JestClient包装器编写单元测试。为此,我创建了一个JestResult对象,在其中设置了具有预期输出的自定义JsonObject。但是,JestResult无法解析我的JsonObject。问题出在以下JestResult方法中:
protected <T> T createSourceObject(JsonElement source, Class<T> type) {
T obj = null;
try {
String json = source.toString();
obj = gson.fromJson(json, type);
// Check if JestId is visible
Field[] fields = type.getDeclaredFields();
for (Field field : fields) {
if (field.isAnnotationPresent(JestId.class)) {
try {
field.setAccessible(true);
Object value = field.get(obj);
if (value == null) {
Class<?> fieldType = field.getType();
JsonElement id = ((JsonObject) source).get(ES_METADATA_ID);
field.set(obj, getAs(id, fieldType));
}
} catch (IllegalAccessException e) {
log.error("Unhandled exception occurred while getting annotated id from source");
}
break;
}
}
} catch (Exception e) {
log.error("Unhandled exception occurred while converting source to the object ." + type.getCanonicalName(), e);
}
return obj;
}
具体来说,行
obj = gson.fromJson(json, type);
此行将obj的所有字段设置为null。但是,如果我在自己的代码中使用相同的行,则所有字段都已正确初始化。我正在使用
Jest:0.1.6
Gson:2.3.1