@SuppressWarnings("unchecked")
@Test public void
providesGeneralRequestInformation() throws IOException {
final Map<String, String> info = new HashMap<String, String>();
server.run(new Application() {
public void handle(Request request, Response response) throws Exception {
info.put("uri", request.uri());
info.put("path", request.path());
info.put("ip", request.remoteIp());
info.put("hostname", request.remoteHost());