use of com.apollographql.apollo.exception.ApolloException in project apollo-android by apollographql.
the class ApolloInterceptorTest method onApolloCallCanceledAsyncApolloInterceptorIsDisposed.
@Test
public void onApolloCallCanceledAsyncApolloInterceptorIsDisposed() throws ApolloException, TimeoutException, InterruptedException, IOException {
server.enqueue(mockResponse(FILE_EPISODE_HERO_NAME_WITH_ID));
EpisodeHeroNameQuery query = createHeroNameQuery();
SpyingApolloInterceptor interceptor = new SpyingApolloInterceptor();
Utils.TestExecutor testExecutor = new Utils.TestExecutor();
client = createApolloClient(interceptor, testExecutor);
ApolloCall<EpisodeHeroNameQuery.Data> apolloCall = client.query(query);
apolloCall.enqueue(new ApolloCall.Callback<EpisodeHeroNameQuery.Data>() {
@Override
public void onResponse(@Nonnull Response<EpisodeHeroNameQuery.Data> response) {
}
@Override
public void onFailure(@Nonnull ApolloException e) {
}
});
apolloCall.cancel();
testExecutor.triggerActions();
assertThat(interceptor.isDisposed).isTrue();
}
use of com.apollographql.apollo.exception.ApolloException in project apollo-android by apollographql.
the class ApolloInterceptorTest method asyncApplicationInterceptorThrowsApolloException.
@Test
public void asyncApplicationInterceptorThrowsApolloException() throws Exception {
final String message = "ApolloException";
EpisodeHeroNameQuery query = createHeroNameQuery();
ApolloInterceptor interceptor = new ApolloInterceptor() {
@Override
public void interceptAsync(@Nonnull InterceptorRequest request, @Nonnull ApolloInterceptorChain chain, @Nonnull Executor dispatcher, @Nonnull CallBack callBack) {
ApolloException apolloException = new ApolloParseException(message);
callBack.onFailure(apolloException);
}
@Override
public void dispose() {
}
};
client = createApolloClient(interceptor);
Rx2Apollo.from(client.query(query)).test().assertError(new Predicate<Throwable>() {
@Override
public boolean test(Throwable throwable) throws Exception {
return message.equals(throwable.getMessage()) && throwable instanceof ApolloParseException;
}
});
}
use of com.apollographql.apollo.exception.ApolloException in project apollo-android by apollographql.
the class ApolloInterceptorTest method onShortCircuitingResponseSubsequentInterceptorsAreNotCalled.
@Test
public void onShortCircuitingResponseSubsequentInterceptorsAreNotCalled() throws IOException, ApolloException {
EpisodeHeroNameQuery query = createHeroNameQuery();
final InterceptorResponse expectedResponse = prepareInterceptorResponse(query);
ApolloInterceptor firstInterceptor = createShortcutInterceptor(expectedResponse);
ApolloInterceptor secondInterceptor = createChainInterceptor();
client = ApolloClient.builder().serverUrl(server.url("/")).okHttpClient(okHttpClient).addApplicationInterceptor(firstInterceptor).addApplicationInterceptor(secondInterceptor).build();
assertResponse(client.query(query), new Predicate<Response<EpisodeHeroNameQuery.Data>>() {
@Override
public boolean test(Response<EpisodeHeroNameQuery.Data> response) throws Exception {
assertThat(expectedResponse.parsedResponse.get()).isEqualTo(response);
return true;
}
});
}
use of com.apollographql.apollo.exception.ApolloException in project apollo-android by apollographql.
the class ApolloInterceptorTest method asyncApplicationInterceptorRewritesResponsesFromServer.
@Test
public void asyncApplicationInterceptorRewritesResponsesFromServer() throws Exception {
server.enqueue(mockResponse(FILE_EPISODE_HERO_NAME_WITH_ID));
EpisodeHeroNameQuery query = createHeroNameQuery();
final InterceptorResponse rewrittenResponse = prepareInterceptorResponse(query);
ApolloInterceptor interceptor = new ApolloInterceptor() {
@Override
public void interceptAsync(@Nonnull InterceptorRequest request, @Nonnull ApolloInterceptorChain chain, @Nonnull Executor dispatcher, @Nonnull final CallBack callBack) {
chain.proceedAsync(request, dispatcher, new CallBack() {
@Override
public void onResponse(@Nonnull InterceptorResponse response) {
callBack.onResponse(rewrittenResponse);
}
@Override
public void onFailure(@Nonnull ApolloException e) {
throw new RuntimeException(e);
}
@Override
public void onCompleted() {
callBack.onCompleted();
}
@Override
public void onFetch(FetchSourceType sourceType) {
callBack.onFetch(sourceType);
}
});
}
@Override
public void dispose() {
}
};
client = createApolloClient(interceptor);
Rx2Apollo.from(client.query(query)).test().assertValue(rewrittenResponse.parsedResponse.get());
}
use of com.apollographql.apollo.exception.ApolloException in project apollo-android by apollographql.
the class ApolloPrefetchTest method prefetchDefault.
@Test
public void prefetchDefault() throws IOException, ApolloException {
server.enqueue(mockResponse("HttpCacheTestAllPlanets.json"));
prefetch(apolloClient.prefetch(new AllPlanetsQuery()));
checkCachedResponse("HttpCacheTestAllPlanets.json");
assertResponse(apolloClient.query(new AllPlanetsQuery()).httpCachePolicy(HttpCachePolicy.CACHE_ONLY.expireAfter(2, TimeUnit.SECONDS)), new Predicate<Response<AllPlanetsQuery.Data>>() {
@Override
public boolean test(Response<AllPlanetsQuery.Data> dataResponse) throws Exception {
return !dataResponse.hasErrors();
}
});
}
Aggregations