アプリの主要部分がAPIcalls.javaクラスであるAndroidアプリがあります。ここで、サーバーからデータを取得し、アプリにデータを表示するためのhttpリクエストを作成します。
アプリの大部分を占めるこの Java クラスの単体テストを作成したかったのです。サーバーからデータを取得する方法は次のとおりです。
StringBuilder sb = new StringBuilder();
try {
httpclient = new DefaultHttpClient();
Httpget httpget = new HttpGet(url);
HttpEntity entity = null;
try {
HttpResponse response = httpclient.execute(httpget);
entity = response.getEntity();
} catch (Exception e) {
Log.d("Exception", e);
}
if (entity != null) {
InputStream is = null;
is = entity.getContent();
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
reader.close();
} catch (IOException e) {
throw e;
} catch (RuntimeException e) {
httpget.abort();
throw e;
} finally {
is.close();
}
httpclient.getConnectionManager().shutdown();
}
} catch (Exception e) {
Log.d("Exception", e);
}
String result = sb.toString().trim();
return result;
次のようなテストから簡単な API 呼び出しを行うことができると思いました。
api.get("www.example.com")
しかし、テストからいくつかの http 呼び出しを行うたびに、エラーが発生します。
Unexpected HTTP call GET
ここで何か間違ったことをしていることは知っていますが、Androidでこのクラスを適切にテストするにはどうすればよいか教えてもらえますか?