3031323334353637383940
HttpChannel ch = clientCon.get("localhost", port); ch.getRequest().setRequestURI("/index.html"); ch.getRequest().send(); BBuffer res = ch.readAll(null, 0); assertTrue(res.toString(), res.toString().indexOf("<title>Apache Tomcat</title>") >= 0); }