use of com.apollographql.apollo.interceptor.ApolloInterceptorChain in project apollo-android by apollographql.
the class ApolloInterceptorTest method asyncApplicationInterceptorThrowsRuntimeException.
@Test
public void asyncApplicationInterceptorThrowsRuntimeException() throws TimeoutException, InterruptedException {
final String message = "RuntimeException";
EpisodeHeroNameQuery query = createHeroNameQuery();
ApolloInterceptor interceptor = new ApolloInterceptor() {
@Override
public void interceptAsync(@Nonnull InterceptorRequest request, @Nonnull ApolloInterceptorChain chain, @Nonnull Executor dispatcher, @Nonnull CallBack callBack) {
dispatcher.execute(new Runnable() {
@Override
public void run() {
throw new RuntimeException(message);
}
});
}
@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 throwable instanceof RuntimeException && message.equals(throwable.getMessage());
}
});
}
use of com.apollographql.apollo.interceptor.ApolloInterceptorChain in project apollo-android by apollographql.
the class ApolloInterceptorChainTest method onDisposeCalled_interceptorIsDisposed.
@Test
public void onDisposeCalled_interceptorIsDisposed() {
final AtomicInteger counter = new AtomicInteger(1);
ApolloInterceptor interceptor = new ApolloInterceptor() {
@Override
public void interceptAsync(@Nonnull InterceptorRequest request, @Nonnull ApolloInterceptorChain chain, @Nonnull Executor dispatcher, @Nonnull CallBack callBack) {
}
@Override
public void dispose() {
counter.decrementAndGet();
}
};
List<ApolloInterceptor> interceptors = Collections.singletonList(interceptor);
RealApolloInterceptorChain chain = new RealApolloInterceptorChain(interceptors);
chain.dispose();
if (counter.get() != 0) {
Assert.fail("Interceptor's dispose method not called");
}
}
use of com.apollographql.apollo.interceptor.ApolloInterceptorChain in project apollo-android by apollographql.
the class ApolloInterceptorChainTest method onProceedAsyncCalled_chainPassesControlToInterceptor.
@Test
public void onProceedAsyncCalled_chainPassesControlToInterceptor() throws TimeoutException, InterruptedException {
final AtomicInteger counter = new AtomicInteger(1);
EpisodeHeroNameQuery query = createQuery();
ApolloInterceptor interceptor = new ApolloInterceptor() {
@Override
public void interceptAsync(@Nonnull InterceptorRequest request, @Nonnull ApolloInterceptorChain chain, @Nonnull Executor dispatcher, @Nonnull CallBack callBack) {
counter.decrementAndGet();
}
@Override
public void dispose() {
}
};
List<ApolloInterceptor> interceptors = Collections.singletonList(interceptor);
RealApolloInterceptorChain chain = new RealApolloInterceptorChain(interceptors);
chain.proceedAsync(ApolloInterceptor.InterceptorRequest.builder(query).fetchFromCache(false).build(), Utils.immediateExecutor(), new CallBack() {
@Override
public void onResponse(@Nonnull InterceptorResponse response) {
}
@Override
public void onFailure(@Nonnull ApolloException e) {
}
@Override
public void onCompleted() {
}
@Override
public void onFetch(ApolloInterceptor.FetchSourceType sourceType) {
}
});
// which means the test should fail.
if (counter.get() != 0) {
Assert.fail("Control not passed to the interceptor");
}
}
Aggregations