use of com.apollographql.apollo.internal.response.RealResponseReader in project apollo-android by apollographql.
the class ResponseReaderTest method readObject.
@Test
public void readObject() throws Exception {
final Object responseObject1 = new Object();
final Object responseObject2 = new Object();
ResponseField successField = ResponseField.forObject("successFieldResponseName", "successFieldName", null, false, NO_CONDITIONS);
ResponseField classCastExceptionField = ResponseField.forObject("classCastExceptionFieldResponseName", "classCastExceptionFieldName", null, false, NO_CONDITIONS);
Map<String, Object> recordSet = new HashMap<>();
recordSet.put("successFieldResponseName", responseObject1);
recordSet.put("successFieldName", responseObject2);
recordSet.put("classCastExceptionFieldResponseName", "anything");
RealResponseReader<Map<String, Object>> responseReader = responseReader(recordSet);
assertThat(responseReader.readObject(successField, new ResponseReader.ObjectReader<Object>() {
@Override
public Object read(ResponseReader reader) {
return responseObject1;
}
})).isEqualTo(responseObject1);
try {
responseReader.readObject(classCastExceptionField, new ResponseReader.ObjectReader<Object>() {
@Override
public Object read(ResponseReader reader) {
return reader.readString(ResponseField.forString("anything", "anything", null, true, NO_CONDITIONS));
}
});
fail("expected ClassCastException");
} catch (ClassCastException expected) {
// expected
}
}
use of com.apollographql.apollo.internal.response.RealResponseReader in project apollo-android by apollographql.
the class ResponseReaderTest method readConditional.
@Test
public void readConditional() throws Exception {
final Object responseObject1 = new Object();
final Object responseObject2 = new Object();
ResponseField successField = ResponseField.forFragment("successFieldResponseName", "successFieldName", Collections.<String>emptyList());
ResponseField classCastExceptionField = ResponseField.forFragment("classCastExceptionFieldResponseName", "classCastExceptionFieldName", Collections.<String>emptyList());
Map<String, Object> recordSet = new HashMap<>();
recordSet.put("successFieldResponseName", "responseObject1");
recordSet.put("successFieldName", "responseObject2");
recordSet.put("classCastExceptionFieldResponseName", 1);
RealResponseReader<Map<String, Object>> responseReader = responseReader(recordSet);
assertThat(responseReader.readConditional(successField, new ResponseReader.ConditionalTypeReader<Object>() {
@Override
public Object read(String conditionalType, ResponseReader reader) {
if (conditionalType.equals("responseObject1")) {
return responseObject1;
} else {
return responseObject2;
}
}
})).isEqualTo(responseObject1);
try {
responseReader.readConditional(classCastExceptionField, new ResponseReader.ConditionalTypeReader<Object>() {
@Override
public Object read(String conditionalType, ResponseReader reader) {
return null;
}
});
fail("expected ClassCastException");
} catch (ClassCastException expected) {
// expected
}
}
use of com.apollographql.apollo.internal.response.RealResponseReader in project apollo-android by apollographql.
the class ResponseReaderTest method readDoubleList.
@Test
public void readDoubleList() throws Exception {
ResponseField successField = ResponseField.forList("successFieldResponseName", "successFieldName", null, false, NO_CONDITIONS);
ResponseField classCastExceptionField = ResponseField.forList("classCastExceptionFieldResponseName", "classCastExceptionFieldName", null, false, NO_CONDITIONS);
final Map<String, Object> recordSet = new HashMap<>();
recordSet.put("successFieldResponseName", asList(BigDecimal.valueOf(1), BigDecimal.valueOf(2), BigDecimal.valueOf(3)));
recordSet.put("successFieldName", asList(BigDecimal.valueOf(4), BigDecimal.valueOf(5)));
recordSet.put("classCastExceptionFieldResponseName", "anything");
RealResponseReader<Map<String, Object>> responseReader = responseReader(recordSet);
assertThat(responseReader.readList(successField, new ResponseReader.ListReader() {
@Override
public Object read(ResponseReader.ListItemReader reader) {
return reader.readDouble();
}
})).isEqualTo(asList(1D, 2D, 3D));
try {
responseReader.readList(classCastExceptionField, new ResponseReader.ListReader() {
@Override
public Object read(ResponseReader.ListItemReader reader) {
return null;
}
});
fail("expected ClassCastException");
} catch (ClassCastException expected) {
// expected
}
}
use of com.apollographql.apollo.internal.response.RealResponseReader in project apollo-android by apollographql.
the class ResponseReaderTest method read_object_list_with_nulls.
@Test
public void read_object_list_with_nulls() throws Exception {
final ResponseField listField = ResponseField.forList("list", "list", null, false, NO_CONDITIONS);
final ResponseField indexField = ResponseField.forList("index", "index", null, false, NO_CONDITIONS);
final List responseObjects = asList(new Object(), new Object(), new Object());
final Map<String, Object> recordSet = new HashMap<>();
recordSet.put("list", asList(null, new UnmodifiableMapBuilder<String, Object>(1).put("index", "0").build(), new UnmodifiableMapBuilder<String, Object>(1).put("index", "1").build(), null, new UnmodifiableMapBuilder<String, Object>(1).put("index", "2").build(), null));
RealResponseReader<Map<String, Object>> responseReader = responseReader(recordSet);
assertThat(responseReader.readList(listField, new ResponseReader.ListReader() {
@Override
public Object read(ResponseReader.ListItemReader reader) {
return reader.readObject(new ResponseReader.ObjectReader<Object>() {
@Override
public Object read(ResponseReader reader) {
return responseObjects.get(Integer.parseInt(reader.readString(indexField)));
}
});
}
})).isEqualTo(responseObjects);
}
use of com.apollographql.apollo.internal.response.RealResponseReader in project apollo-android by apollographql.
the class ResponseReaderTest method readCustomListWithDecodedNull.
@Test
public void readCustomListWithDecodedNull() throws Exception {
final Map<String, Object> recordSet = new HashMap<>();
recordSet.put("responseName", asList("http://", "http://"));
RealResponseReader<Map<String, Object>> responseReader = responseReader(recordSet);
ResponseField field = ResponseField.forList("responseName", "fieldName", null, false, NO_CONDITIONS);
Truth.assertThat(responseReader.readList(field, new ResponseReader.ListReader() {
@Override
public Object read(ResponseReader.ListItemReader reader) {
return reader.readCustomType(URL_CUSTOM_TYPE);
}
})).isEmpty();
}
Aggregations