Android通过单元测试网络请求问题
单元测试中想使用okhttp 但是发现okhttp 回调方法不执行,发现网络请求是异步请求原因,导致断点不能拦截,
解决办法需要调用okhttp 的同步请求方式进行网络请求,然后单元测试时选择debug 模式执行,运行速度相对慢一些,可以得到Response,最后对Response进行操作就可以了。
下面是示例:
代码比较老,用的是对okhttp 进行封装的库:
https://github.com/hongyangAndroid/okhttputils
这个库的同步请求和异步请求查看git 中的文档,execute 中传不传callback 回调进行区分
同步请求只需要获取到Response 就可以了
异步请求:
Map map = new HashMap();
map.put("username", "name");
map.put("password", "pwd");
MyOkHttpUtils.postJson().encrypt(true).url(URL).json(map).build().execute(new MyStringCallback() {
@Override
public void onError(Call call, Exception e, int id) {
}
@Override
public void onResponse(String response, int id) {
}
@Override
public String parseNetworkResponse(Response response, int id) throws IOException {
AesUtil aesUtil = new AesUtil();
return aesUtil.getDecryptString(response);
}
});
同步请求:
Map map = new HashMap();
map.put("username", "name");
map.put("password", "pwd");
Response response = MyOkHttpUtils.postJson().encrypt(true).url(URl).json(map).build().execute();
AesUtil aesUtil = new AesUtil();
String body = aesUtil.getDecryptString(response);
|