Add TODOs for code that needs looking at
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1604892 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a80b4533b3
commit
4006d7e4f2
|
@ -6049,7 +6049,7 @@ public class TestProtocolRequirements extends AbstractProtocolTest {
|
||||||
// received-by
|
// received-by
|
||||||
if (!Pattern.matches(tokenRegexp, parts[1])) {
|
if (!Pattern.matches(tokenRegexp, parts[1])) {
|
||||||
// host : port
|
// host : port
|
||||||
new HttpHost(parts[1]);
|
new HttpHost(parts[1]); // TODO - unused - is this a test bug? else use Assert.assertNotNull
|
||||||
}
|
}
|
||||||
|
|
||||||
// comment
|
// comment
|
||||||
|
|
|
@ -177,7 +177,7 @@ public class HttpAuthenticator {
|
||||||
final HttpContext context) throws HttpException, IOException {
|
final HttpContext context) throws HttpException, IOException {
|
||||||
AuthScheme authScheme = authState.getAuthScheme();
|
AuthScheme authScheme = authState.getAuthScheme();
|
||||||
Credentials creds = authState.getCredentials();
|
Credentials creds = authState.getCredentials();
|
||||||
switch (authState.getState()) {
|
switch (authState.getState()) { // TODO add UNCHALLENGED and HANDSHAKE cases
|
||||||
case FAILURE:
|
case FAILURE:
|
||||||
return;
|
return;
|
||||||
case SUCCESS:
|
case SUCCESS:
|
||||||
|
|
|
@ -176,6 +176,7 @@ public class TestSSLSocketFactory {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testClientAuthSSLAliasChoice() throws Exception {
|
public void testClientAuthSSLAliasChoice() throws Exception {
|
||||||
|
// TODO unused - is there a bug in the test?
|
||||||
final PrivateKeyStrategy aliasStrategy = new PrivateKeyStrategy() {
|
final PrivateKeyStrategy aliasStrategy = new PrivateKeyStrategy() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue