Removed System.err calls.

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1522 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Simone Bordet 2010-04-16 16:55:00 +00:00
parent 95430a1b33
commit eca849d9dc
2 changed files with 0 additions and 22 deletions

View File

@ -69,7 +69,6 @@ public class ProxyHandlerConnectSSLTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
// Be sure the buffered input does not have anything buffered
@ -90,7 +89,6 @@ public class ProxyHandlerConnectSSLTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("GET /echo", response.getBody());
}
@ -123,7 +121,6 @@ public class ProxyHandlerConnectSSLTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
// Be sure the buffered input does not have anything buffered
@ -148,7 +145,6 @@ public class ProxyHandlerConnectSSLTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("POST /echo?param=" + i + "\r\nHELLO", response.getBody());
}
@ -212,7 +208,6 @@ public class ProxyHandlerConnectSSLTest extends AbstractProxyHandlerTest
baos.write(read);
baos.close();
System.err.println("server echoing:\r\n" + builder);
ServletOutputStream output = httpResponse.getOutputStream();
output.println(builder.toString());
output.write(baos.toByteArray());

View File

@ -44,7 +44,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
}
finally
@ -71,7 +70,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
request = "" +
@ -82,7 +80,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("GET /echo", response.getBody());
}
@ -113,12 +110,10 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
// The pipelined request must have gone up to the server as is
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("GET /echo", response.getBody());
}
@ -146,7 +141,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
for (int i = 0; i < 10; ++i)
@ -159,7 +153,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("GET /echo", response.getBody());
}
@ -188,7 +181,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
request = "" +
@ -199,7 +191,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("GET /echo", response.getBody());
@ -234,7 +225,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
request = "" +
@ -271,7 +261,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
request = "" +
@ -284,7 +273,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("POST /echo\r\nHELLO", response.getBody());
@ -296,7 +284,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("GET /echo", response.getBody());
}
@ -324,7 +311,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
// Expect 200 OK from the CONNECT request
Response response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
StringBuilder body = new StringBuilder();
@ -342,7 +328,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
output.flush();
response = readResponse(input);
System.err.println(response);
assertEquals("200", response.getCode());
assertEquals("POST /echo\r\n" + body, response.getBody());
}
@ -373,7 +358,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
baos.write(read);
baos.close();
System.err.println("server echoing:\r\n" + builder);
ServletOutputStream output = httpResponse.getOutputStream();
output.println(builder.toString());
output.write(baos.toByteArray());
@ -381,7 +365,6 @@ public class ProxyHandlerConnectTest extends AbstractProxyHandlerTest
else if ("/close".equals(uri))
{
request.getConnection().getEndPoint().close();
System.err.println("server closed");
}
else
{