@Test
public void testBasicSSLHandshake() throws Exception {
String uri = "localhost:" + SSL_PORT;
String path = "/basicSSL";
Request req = new SimpleRequest(Method.GET, uri, path);
Response execute = transport.execute(req);
String content = IOUtils.asString(execute.body());
assertEquals(path, content);
}