use of okhttp3.mockwebserver.Dispatcher in project okhttp by square.
the class CallTest method cancelInFlightBeforeResponseReadThrowsIOE.
@Test
public void cancelInFlightBeforeResponseReadThrowsIOE() throws Exception {
Request request = new Request.Builder().url(server.url("/a")).build();
final Call call = client.newCall(request);
server.setDispatcher(new Dispatcher() {
@Override
public MockResponse dispatch(RecordedRequest request) {
call.cancel();
return new MockResponse().setBody("A");
}
});
try {
call.execute();
fail();
} catch (IOException expected) {
}
}
use of okhttp3.mockwebserver.Dispatcher in project okhttp by square.
the class InterceptorTest method networkInterceptorReturnsNull.
@Test
public void networkInterceptorReturnsNull() throws Exception {
server.enqueue(new MockResponse());
Interceptor interceptor = new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
chain.proceed(chain.request());
return null;
}
};
client = client.newBuilder().addNetworkInterceptor(interceptor).build();
ExceptionCatchingExecutor executor = new ExceptionCatchingExecutor();
client = client.newBuilder().dispatcher(new Dispatcher(executor)).build();
Request request = new Request.Builder().url(server.url("/")).build();
try {
client.newCall(request).execute();
fail();
} catch (NullPointerException expected) {
assertEquals("interceptor " + interceptor + " returned null", expected.getMessage());
}
}
use of okhttp3.mockwebserver.Dispatcher in project okhttp by square.
the class InterceptorTest method interceptorThrowsRuntimeExceptionAsynchronous.
/**
* When an interceptor throws an unexpected exception, asynchronous callers are left hanging. The
* exception goes to the uncaught exception handler.
*/
private void interceptorThrowsRuntimeExceptionAsynchronous(boolean network) throws Exception {
addInterceptor(network, new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
throw new RuntimeException("boom!");
}
});
ExceptionCatchingExecutor executor = new ExceptionCatchingExecutor();
client = client.newBuilder().dispatcher(new Dispatcher(executor)).build();
Request request = new Request.Builder().url(server.url("/")).build();
client.newCall(request).enqueue(callback);
assertEquals("boom!", executor.takeException().getMessage());
}
use of okhttp3.mockwebserver.Dispatcher in project amhttp by Eddieyuan123.
the class OnDownloadListener method parseNetworkResponse.
@Override
public void parseNetworkResponse(final Response response, FileCard fileCard) throws Throwable {
ResponseBody body = response.body();
if (body == null) {
throw new NullPointerException("response body is null");
} else {
final Dispatcher dispatcher = Dispatcher.getDispatcher(Looper.getMainLooper());
InputStream is = body.byteStream();
long contentLength = body.contentLength();
final File file = FileUtils.saveFile(is, contentLength, fileCard, new OnSaveListener() {
@Override
public void OnProgress(final long progress, final long total) {
dispatcher.dispatchToUIThread(new Runnable() {
@Override
public void run() {
onProgressChanged(progress, total);
}
});
}
});
dispatcher.dispatchToUIThread(new Runnable() {
@Override
public void run() {
onResponseSuccess((T) file);
}
});
}
}
use of okhttp3.mockwebserver.Dispatcher in project amhttp by Eddieyuan123.
the class OnFindListener method parseNetworkResponse.
@Override
public void parseNetworkResponse(Response response, FileCard fileCard) throws Throwable {
ResponseBody responseBody = response.body();
String responseStr = null;
if (responseBody != null) {
responseStr = responseBody.string();
}
Type type = ClassUtils.getType(OnFindListener.this.getClass());
T bean = null;
if (type != null) {
if (TextUtils.equals(type.toString(), "class java.lang.String"))
bean = (T) responseStr;
else
bean = new Gson().fromJson(responseStr, type);
}
final T finalBean = bean;
Dispatcher dispatcher = Dispatcher.getDispatcher(Looper.getMainLooper());
dispatcher.dispatchToUIThread(new Runnable() {
@Override
public void run() {
onResponseSuccess(finalBean);
}
});
}
Aggregations