我希望使用 Junit 和 Mockito 测试以下代码。
测试代码:
Header header = new BasicHeader(HttpHeaders.AUTHORIZATION,AUTH_PREAMBLE + token);
List<Header> headers = new ArrayList<Header>();
headers.add(header);
HttpClient client = HttpClients.custom().setDefaultHeaders(headers).build();
HttpGet get = new HttpGet("real REST API here"));
HttpResponse response = client.execute(get);
String json_string_response = EntityUtils.toString(response.getEntity());
和测试
protected static HttpClient mockHttpClient;
protected static HttpGet mockHttpGet;
protected static HttpResponse mockHttpResponse;
protected static StatusLine mockStatusLine;
protected static HttpEntity mockHttpEntity;
@BeforeClass
public static void setup() throws ClientProtocolException, IOException {
mockHttpGet = Mockito.mock(HttpGet.class);
mockHttpClient = Mockito.mock(HttpClient.class);
mockHttpResponse = Mockito.mock(HttpResponse.class);
mockStatusLine = Mockito.mock(StatusLine.class);
mockHttpEntity = Mockito.mock(HttpEntity.class);
Mockito.when(mockHttpClient.execute(Mockito.isA(HttpGet.class))).thenReturn(mockHttpResponse);
Mockito.when(mockHttpResponse.getStatusLine()).thenReturn(mockStatusLine);
Mockito.when(mockStatusLine.getStatusCode()).thenReturn(HttpStatus.SC_OK);
Mockito.when(mockHttpResponse.getEntity()).thenReturn(mockHttpEntity);
}
@Test
underTest = new UnderTest(initialize with fake API (api));
//Trigger method to test
这给了我一个错误:
java.net.UnknownHostException: api: nodename or servname provided, or not known
为什么不像'client.execute(get)'
设置中那样模拟呼叫?