I'm pretty new to unit testing but having trouble testing or mocking HttpURLConnection. All the code does is test if valid URL was entered and the pings back if online.
public boolean verifyConnection(final String url) {
boolean result;
final int timeout = getConnectionTimeout();
if (timeout < 0) {
log.info("No need to verify connection to client. Supplied timeout = {}", timeout);
result = true;
} else {
try {
log.debug("URL: {} Timeout: {} ", url, timeout);
final URL targetUrl = new URL(url);
final HttpURLConnection connection = (HttpURLConnection) targetUrl.openConnection();
connection.setConnectTimeout(timeout);
connection.connect();
result = true;
} catch (ConnectException e) {
log.warn("Could not connect to client supplied url: " + url, e);
result = false;
} catch (MalformedURLException e) {
log.error("Malformed client supplied url: " + url, e);
result = false;
} catch (IOException e) {
log.warn("Could not connect to client supplied url: " + url, e);
result = false;
}
}
return result;
}
Here is my test code so far:
@Test
//@Ignore
public void verifyActiveConnection() throws IOException {
String strUrl = ("http://www.google.com");
TestableWebClient client = new TestableWebClient();
client.setHttpURLConnection(mockURLC);
//mockURLC.setConnectTimeout(2000);
boolean result = client.verifyConnection(strUrl);
assertEquals(result, cct.verifyConnection(strUrl));
//expect(mockURL.openConnection()).andStubReturn(mockURLC);
// EasyMock.replay();
// cct.verifyConnection(strUrl);
// EasyMock.verify();
// assertEquals(true, cct.verifyConnection(strUrl));
}
@Test
@Ignore
public void testVerifyNoConnection() {
String strUrl = "http://1.2.3.4";
assertEquals(false, cct.verifyConnection(strUrl));
}
private class TestableWebClient extends ClientConnectionTester {
private HttpURLConnection connection;
public void setHttpURLConnection(HttpURLConnection connection) {
this.connection = connection;
}
public HttpURLConnection createHttpURLConnection(URL url)
throws IOException {
return this.connection;
}
}