mirror of
https://github.com/apache/httpcomponents-client.git
synced 2025-02-09 03:25:28 +00:00
Added basic CookieStore and CredentialsProvider impls based on old HttpState class
git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@558148 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
329a7c3f52
commit
7ea84c4be4
@ -58,7 +58,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Request interceptor that matches cookies available in the current
|
* Request interceptor that matches cookies available in the current
|
||||||
* {@link HttpState} to the request being executed and generates
|
* {@link CookieStore} to the request being executed and generates
|
||||||
* corresponding cookierequest headers.
|
* corresponding cookierequest headers.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
import org.apache.http.protocol.HttpContext;
|
import org.apache.http.protocol.HttpContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Response interceptor that populates the current {@link HttpState} with data
|
* Response interceptor that populates the current {@link CookieStore} with data
|
||||||
* contained in response cookies received in the given the HTTP response.
|
* contained in response cookies received in the given the HTTP response.
|
||||||
*
|
*
|
||||||
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
||||||
|
@ -0,0 +1,161 @@
|
|||||||
|
/*
|
||||||
|
* $HeadURL$
|
||||||
|
* $Revision$
|
||||||
|
* $Date$
|
||||||
|
*
|
||||||
|
* ====================================================================
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
* ====================================================================
|
||||||
|
*
|
||||||
|
* This software consists of voluntary contributions made by many
|
||||||
|
* individuals on behalf of the Apache Software Foundation. For more
|
||||||
|
* information on the Apache Software Foundation, please see
|
||||||
|
* <http://www.apache.org/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.apache.http.impl.client;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Comparator;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.Iterator;
|
||||||
|
|
||||||
|
import org.apache.http.client.CookieStore;
|
||||||
|
import org.apache.http.cookie.Cookie;
|
||||||
|
import org.apache.http.cookie.CookieIdentityComparator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default implementation of {@link CookieStore}
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:remm@apache.org">Remy Maucherat</a>
|
||||||
|
* @author Rodney Waldhoff
|
||||||
|
* @author <a href="mailto:jsdever@apache.org">Jeff Dever</a>
|
||||||
|
* @author Sean C. Sullivan
|
||||||
|
* @author <a href="mailto:becke@u.washington.edu">Michael Becke</a>
|
||||||
|
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
||||||
|
* @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
|
||||||
|
* @author <a href="mailto:adrian@intencha.com">Adrian Sutton</a>
|
||||||
|
*
|
||||||
|
* @since 4.0
|
||||||
|
*/
|
||||||
|
public class BasicCookieStore implements CookieStore {
|
||||||
|
|
||||||
|
private final ArrayList cookies;
|
||||||
|
|
||||||
|
private final Comparator cookieComparator;
|
||||||
|
|
||||||
|
// -------------------------------------------------------- Class Variables
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default constructor.
|
||||||
|
*/
|
||||||
|
public BasicCookieStore() {
|
||||||
|
super();
|
||||||
|
this.cookies = new ArrayList();
|
||||||
|
this.cookieComparator = new CookieIdentityComparator();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds an {@link Cookie HTTP cookie}, replacing any existing equivalent cookies.
|
||||||
|
* If the given cookie has already expired it will not be added, but existing
|
||||||
|
* values will still be removed.
|
||||||
|
*
|
||||||
|
* @param cookie the {@link Cookie cookie} to be added
|
||||||
|
*
|
||||||
|
* @see #addCookies(Cookie[])
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public synchronized void addCookie(Cookie cookie) {
|
||||||
|
if (cookie != null) {
|
||||||
|
// first remove any old cookie that is equivalent
|
||||||
|
for (Iterator it = cookies.iterator(); it.hasNext();) {
|
||||||
|
Cookie tmp = (Cookie) it.next();
|
||||||
|
if (cookieComparator.compare(cookie, tmp) == 0) {
|
||||||
|
it.remove();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!cookie.isExpired(new Date())) {
|
||||||
|
cookies.add(cookie);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds an array of {@link Cookie HTTP cookies}. Cookies are added individually and
|
||||||
|
* in the given array order. If any of the given cookies has already expired it will
|
||||||
|
* not be added, but existing values will still be removed.
|
||||||
|
*
|
||||||
|
* @param cookies the {@link Cookie cookies} to be added
|
||||||
|
*
|
||||||
|
* @see #addCookie(Cookie)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public synchronized void addCookies(Cookie[] cookies) {
|
||||||
|
if (cookies != null) {
|
||||||
|
for (int i = 0; i < cookies.length; i++) {
|
||||||
|
this.addCookie(cookies[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an array of {@link Cookie cookies} that this HTTP
|
||||||
|
* state currently contains.
|
||||||
|
*
|
||||||
|
* @return an array of {@link Cookie cookies}.
|
||||||
|
*/
|
||||||
|
public synchronized Cookie[] getCookies() {
|
||||||
|
return (Cookie[]) (cookies.toArray(new Cookie[cookies.size()]));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes all of {@link Cookie cookies} in this HTTP state
|
||||||
|
* that have expired by the specified {@link java.util.Date date}.
|
||||||
|
*
|
||||||
|
* @return true if any cookies were purged.
|
||||||
|
*
|
||||||
|
* @see Cookie#isExpired(Date)
|
||||||
|
*/
|
||||||
|
public synchronized boolean clearExpired(final Date date) {
|
||||||
|
if (date == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
boolean removed = false;
|
||||||
|
Iterator it = cookies.iterator();
|
||||||
|
while (it.hasNext()) {
|
||||||
|
if (((Cookie) (it.next())).isExpired(date)) {
|
||||||
|
it.remove();
|
||||||
|
removed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return removed;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return cookies.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clears all cookies.
|
||||||
|
*/
|
||||||
|
public synchronized void clear() {
|
||||||
|
cookies.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,141 @@
|
|||||||
|
/*
|
||||||
|
* $HeadURL$
|
||||||
|
* $Revision$
|
||||||
|
* $Date$
|
||||||
|
*
|
||||||
|
* ====================================================================
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
* (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
* ====================================================================
|
||||||
|
*
|
||||||
|
* This software consists of voluntary contributions made by many
|
||||||
|
* individuals on behalf of the Apache Software Foundation. For more
|
||||||
|
* information on the Apache Software Foundation, please see
|
||||||
|
* <http://www.apache.org/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.apache.http.impl.client;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Iterator;
|
||||||
|
|
||||||
|
import org.apache.http.auth.AuthScope;
|
||||||
|
import org.apache.http.auth.Credentials;
|
||||||
|
import org.apache.http.client.CredentialsProvider;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default implementation of {@link CredentialsProvider}
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:remm@apache.org">Remy Maucherat</a>
|
||||||
|
* @author Rodney Waldhoff
|
||||||
|
* @author <a href="mailto:jsdever@apache.org">Jeff Dever</a>
|
||||||
|
* @author Sean C. Sullivan
|
||||||
|
* @author <a href="mailto:becke@u.washington.edu">Michael Becke</a>
|
||||||
|
* @author <a href="mailto:oleg at ural.ru">Oleg Kalnichevski</a>
|
||||||
|
* @author <a href="mailto:mbowler@GargoyleSoftware.com">Mike Bowler</a>
|
||||||
|
* @author <a href="mailto:adrian@intencha.com">Adrian Sutton</a>
|
||||||
|
*
|
||||||
|
* @since 4.0
|
||||||
|
*/
|
||||||
|
public class BasicCredentialsProvider implements CredentialsProvider {
|
||||||
|
|
||||||
|
private final HashMap credMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default constructor.
|
||||||
|
*/
|
||||||
|
public BasicCredentialsProvider() {
|
||||||
|
super();
|
||||||
|
this.credMap = new HashMap();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the {@link Credentials credentials} for the given authentication
|
||||||
|
* scope. Any previous credentials for the given scope will be overwritten.
|
||||||
|
*
|
||||||
|
* @param authscope the {@link AuthScope authentication scope}
|
||||||
|
* @param credentials the authentication {@link Credentials credentials}
|
||||||
|
* for the given scope.
|
||||||
|
*
|
||||||
|
* @see #getCredentials(AuthScope)
|
||||||
|
*/
|
||||||
|
public synchronized void setCredentials(final AuthScope authscope, final Credentials credentials) {
|
||||||
|
if (authscope == null) {
|
||||||
|
throw new IllegalArgumentException("Authentication scope may not be null");
|
||||||
|
}
|
||||||
|
credMap.put(authscope, credentials);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find matching {@link Credentials credentials} for the given authentication scope.
|
||||||
|
*
|
||||||
|
* @param map the credentials hash map
|
||||||
|
* @param token the {@link AuthScope authentication scope}
|
||||||
|
* @return the credentials
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private static Credentials matchCredentials(final HashMap map, final AuthScope authscope) {
|
||||||
|
// see if we get a direct hit
|
||||||
|
Credentials creds = (Credentials)map.get(authscope);
|
||||||
|
if (creds == null) {
|
||||||
|
// Nope.
|
||||||
|
// Do a full scan
|
||||||
|
int bestMatchFactor = -1;
|
||||||
|
AuthScope bestMatch = null;
|
||||||
|
Iterator items = map.keySet().iterator();
|
||||||
|
while (items.hasNext()) {
|
||||||
|
AuthScope current = (AuthScope)items.next();
|
||||||
|
int factor = authscope.match(current);
|
||||||
|
if (factor > bestMatchFactor) {
|
||||||
|
bestMatchFactor = factor;
|
||||||
|
bestMatch = current;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (bestMatch != null) {
|
||||||
|
creds = (Credentials)map.get(bestMatch);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return creds;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the {@link Credentials credentials} for the given authentication scope.
|
||||||
|
*
|
||||||
|
* @param authscope the {@link AuthScope authentication scope}
|
||||||
|
* @return the credentials
|
||||||
|
*
|
||||||
|
* @see #setCredentials(AuthScope, Credentials)
|
||||||
|
*/
|
||||||
|
public synchronized Credentials getCredentials(final AuthScope authscope) {
|
||||||
|
if (authscope == null) {
|
||||||
|
throw new IllegalArgumentException("Authentication scope may not be null");
|
||||||
|
}
|
||||||
|
return matchCredentials(this.credMap, authscope);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return credMap.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clears all credentials.
|
||||||
|
*/
|
||||||
|
public synchronized void clear() {
|
||||||
|
this.credMap.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -55,7 +55,6 @@ public static Test suite() {
|
|||||||
suite.addTest(TestAllConn.suite());
|
suite.addTest(TestAllConn.suite());
|
||||||
suite.addTest(TestAllConnImpl.suite());
|
suite.addTest(TestAllConnImpl.suite());
|
||||||
suite.addTest(TestAllSSL.suite());
|
suite.addTest(TestAllSSL.suite());
|
||||||
suite.addTest(TestHttpState.suite());
|
|
||||||
return suite;
|
return suite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -245,6 +245,7 @@ public void testInvalidArguments() {
|
|||||||
// for reference: this one should succeed
|
// for reference: this one should succeed
|
||||||
HttpRoute route = new HttpRoute(TARGET1, null, chain1,
|
HttpRoute route = new HttpRoute(TARGET1, null, chain1,
|
||||||
false, true, false);
|
false, true, false);
|
||||||
|
assertNotNull(route);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
route = new HttpRoute(null, null, chain1,
|
route = new HttpRoute(null, null, chain1,
|
||||||
|
@ -32,8 +32,6 @@
|
|||||||
|
|
||||||
|
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Iterator;
|
|
||||||
|
|
||||||
import junit.framework.Test;
|
import junit.framework.Test;
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
@ -199,7 +197,6 @@ public void testProxyChain() {
|
|||||||
HttpHost[] chainA = { PROXY1 };
|
HttpHost[] chainA = { PROXY1 };
|
||||||
HttpHost[] chainB = { PROXY1, PROXY2 };
|
HttpHost[] chainB = { PROXY1, PROXY2 };
|
||||||
HttpHost[] chainC = { PROXY2, PROXY1 };
|
HttpHost[] chainC = { PROXY2, PROXY1 };
|
||||||
HttpHost[] chainD = { PROXY2 };
|
|
||||||
|
|
||||||
RouteDirector rowdy = new RouteDirector();
|
RouteDirector rowdy = new RouteDirector();
|
||||||
HttpRoute route1cA = new HttpRoute(TARGET1, null, chainA,
|
HttpRoute route1cA = new HttpRoute(TARGET1, null, chainA,
|
||||||
@ -210,7 +207,6 @@ public void testProxyChain() {
|
|||||||
false, false, false);
|
false, false, false);
|
||||||
HttpRoute route1cD = new HttpRoute(TARGET1, null, chainC,
|
HttpRoute route1cD = new HttpRoute(TARGET1, null, chainC,
|
||||||
false, false, false);
|
false, false, false);
|
||||||
HttpRoute route1c0 = new HttpRoute(TARGET1, null, false);
|
|
||||||
|
|
||||||
int step = rowdy.nextStep(route1cA, null);
|
int step = rowdy.nextStep(route1cA, null);
|
||||||
assertEquals("wrong step to route1cA",
|
assertEquals("wrong step to route1cA",
|
||||||
|
@ -42,6 +42,7 @@ public TestAllHttpClientImpl(String testName) {
|
|||||||
|
|
||||||
public static Test suite() {
|
public static Test suite() {
|
||||||
TestSuite suite = new TestSuite();
|
TestSuite suite = new TestSuite();
|
||||||
|
suite.addTest(TestBasicCredentialsProvider.suite());
|
||||||
return suite;
|
return suite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
* <http://www.apache.org/>.
|
* <http://www.apache.org/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.apache.http.client;
|
package org.apache.http.impl.client;
|
||||||
|
|
||||||
import org.apache.http.auth.AuthScope;
|
import org.apache.http.auth.AuthScope;
|
||||||
import org.apache.http.auth.Credentials;
|
import org.apache.http.auth.Credentials;
|
||||||
@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Simple tests for {@link HttpState}.
|
* Simple tests for {@link BasicCredentialsProvider}.
|
||||||
*
|
*
|
||||||
* @author Rodney Waldhoff
|
* @author Rodney Waldhoff
|
||||||
* @author <a href="mailto:jsdever@apache.org">Jeff Dever</a>
|
* @author <a href="mailto:jsdever@apache.org">Jeff Dever</a>
|
||||||
@ -46,7 +46,7 @@
|
|||||||
* @version $Id$
|
* @version $Id$
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class TestHttpState extends TestCase {
|
public class TestBasicCredentialsProvider extends TestCase {
|
||||||
|
|
||||||
public final static Credentials CREDS1 =
|
public final static Credentials CREDS1 =
|
||||||
new UsernamePasswordCredentials("user1", "pass1");
|
new UsernamePasswordCredentials("user1", "pass1");
|
||||||
@ -64,40 +64,40 @@ public class TestHttpState extends TestCase {
|
|||||||
|
|
||||||
|
|
||||||
// ------------------------------------------------------------ Constructor
|
// ------------------------------------------------------------ Constructor
|
||||||
public TestHttpState(String testName) {
|
public TestBasicCredentialsProvider(String testName) {
|
||||||
super(testName);
|
super(testName);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------- Main
|
// ------------------------------------------------------------------- Main
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
String[] testCaseName = { TestHttpState.class.getName() };
|
String[] testCaseName = { TestBasicCredentialsProvider.class.getName() };
|
||||||
junit.textui.TestRunner.main(testCaseName);
|
junit.textui.TestRunner.main(testCaseName);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------- TestCase Methods
|
// ------------------------------------------------------- TestCase Methods
|
||||||
|
|
||||||
public static Test suite() {
|
public static Test suite() {
|
||||||
return new TestSuite(TestHttpState.class);
|
return new TestSuite(TestBasicCredentialsProvider.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ----------------------------------------------------------- Test Methods
|
// ----------------------------------------------------------- Test Methods
|
||||||
|
|
||||||
public void testHttpStateCredentials() {
|
public void testBasicCredentialsProviderCredentials() {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
state.setCredentials(SCOPE1, CREDS1);
|
state.setCredentials(SCOPE1, CREDS1);
|
||||||
state.setCredentials(SCOPE2, CREDS2);
|
state.setCredentials(SCOPE2, CREDS2);
|
||||||
assertEquals(CREDS1, state.getCredentials(SCOPE1));
|
assertEquals(CREDS1, state.getCredentials(SCOPE1));
|
||||||
assertEquals(CREDS2, state.getCredentials(SCOPE2));
|
assertEquals(CREDS2, state.getCredentials(SCOPE2));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testHttpStateNoCredentials() {
|
public void testBasicCredentialsProviderNoCredentials() {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
assertEquals(null, state.getCredentials(BOGUS));
|
assertEquals(null, state.getCredentials(BOGUS));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testHttpStateDefaultCredentials() {
|
public void testBasicCredentialsProviderDefaultCredentials() {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
state.setCredentials(AuthScope.ANY, CREDS1);
|
state.setCredentials(AuthScope.ANY, CREDS1);
|
||||||
state.setCredentials(SCOPE2, CREDS2);
|
state.setCredentials(SCOPE2, CREDS2);
|
||||||
assertEquals(CREDS1, state.getCredentials(BOGUS));
|
assertEquals(CREDS1, state.getCredentials(BOGUS));
|
||||||
@ -106,7 +106,7 @@ public void testHttpStateDefaultCredentials() {
|
|||||||
// --------------------------------- Test Methods for Selecting Credentials
|
// --------------------------------- Test Methods for Selecting Credentials
|
||||||
|
|
||||||
public void testDefaultCredentials() throws Exception {
|
public void testDefaultCredentials() throws Exception {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
||||||
state.setCredentials(AuthScope.ANY, expected);
|
state.setCredentials(AuthScope.ANY, expected);
|
||||||
Credentials got = state.getCredentials(DEFSCOPE);
|
Credentials got = state.getCredentials(DEFSCOPE);
|
||||||
@ -114,7 +114,7 @@ public void testDefaultCredentials() throws Exception {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testRealmCredentials() throws Exception {
|
public void testRealmCredentials() throws Exception {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
||||||
state.setCredentials(DEFSCOPE, expected);
|
state.setCredentials(DEFSCOPE, expected);
|
||||||
Credentials got = state.getCredentials(DEFSCOPE);
|
Credentials got = state.getCredentials(DEFSCOPE);
|
||||||
@ -122,7 +122,7 @@ public void testRealmCredentials() throws Exception {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testHostCredentials() throws Exception {
|
public void testHostCredentials() throws Exception {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
||||||
state.setCredentials(
|
state.setCredentials(
|
||||||
new AuthScope("host", AuthScope.ANY_PORT, AuthScope.ANY_REALM), expected);
|
new AuthScope("host", AuthScope.ANY_PORT, AuthScope.ANY_REALM), expected);
|
||||||
@ -131,7 +131,7 @@ public void testHostCredentials() throws Exception {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testWrongHostCredentials() throws Exception {
|
public void testWrongHostCredentials() throws Exception {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
Credentials expected = new UsernamePasswordCredentials("name", "pass");
|
||||||
state.setCredentials(
|
state.setCredentials(
|
||||||
new AuthScope("host1", AuthScope.ANY_PORT, "realm"), expected);
|
new AuthScope("host1", AuthScope.ANY_PORT, "realm"), expected);
|
||||||
@ -141,7 +141,7 @@ public void testWrongHostCredentials() throws Exception {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testWrongRealmCredentials() throws Exception {
|
public void testWrongRealmCredentials() throws Exception {
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
Credentials cred = new UsernamePasswordCredentials("name", "pass");
|
Credentials cred = new UsernamePasswordCredentials("name", "pass");
|
||||||
state.setCredentials(
|
state.setCredentials(
|
||||||
new AuthScope("host", AuthScope.ANY_PORT, "realm1"), cred);
|
new AuthScope("host", AuthScope.ANY_PORT, "realm1"), cred);
|
||||||
@ -196,7 +196,7 @@ public void testCredentialsMatching() {
|
|||||||
AuthScope scope2 = new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm");
|
AuthScope scope2 = new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm");
|
||||||
AuthScope scope3 = new AuthScope("somehost", AuthScope.ANY_PORT, AuthScope.ANY_REALM);
|
AuthScope scope3 = new AuthScope("somehost", AuthScope.ANY_PORT, AuthScope.ANY_REALM);
|
||||||
|
|
||||||
HttpState state = new HttpState();
|
BasicCredentialsProvider state = new BasicCredentialsProvider();
|
||||||
state.setCredentials(scope1, creds1);
|
state.setCredentials(scope1, creds1);
|
||||||
state.setCredentials(scope2, creds2);
|
state.setCredentials(scope2, creds2);
|
||||||
state.setCredentials(scope3, creds3);
|
state.setCredentials(scope3, creds3);
|
@ -197,7 +197,9 @@ public void testMaxConnTotal() {
|
|||||||
HttpRoute route2 = new HttpRoute(target2, null, false);
|
HttpRoute route2 = new HttpRoute(target2, null, false);
|
||||||
|
|
||||||
ManagedClientConnection conn1 = mgr.getConnection(route1);
|
ManagedClientConnection conn1 = mgr.getConnection(route1);
|
||||||
|
assertNotNull(conn1);
|
||||||
ManagedClientConnection conn2 = mgr.getConnection(route2);
|
ManagedClientConnection conn2 = mgr.getConnection(route2);
|
||||||
|
assertNotNull(conn2);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// this should fail quickly, connection has not been released
|
// this should fail quickly, connection has not been released
|
||||||
@ -242,8 +244,11 @@ public void testMaxConnPerHost() throws Exception {
|
|||||||
|
|
||||||
// route 3, limit 3
|
// route 3, limit 3
|
||||||
ManagedClientConnection conn1 = mgr.getConnection(route3, 10L);
|
ManagedClientConnection conn1 = mgr.getConnection(route3, 10L);
|
||||||
|
assertNotNull(conn1);
|
||||||
ManagedClientConnection conn2 = mgr.getConnection(route3, 10L);
|
ManagedClientConnection conn2 = mgr.getConnection(route3, 10L);
|
||||||
|
assertNotNull(conn2);
|
||||||
ManagedClientConnection conn3 = mgr.getConnection(route3, 10L);
|
ManagedClientConnection conn3 = mgr.getConnection(route3, 10L);
|
||||||
|
assertNotNull(conn3);
|
||||||
try {
|
try {
|
||||||
// should fail quickly, connection has not been released
|
// should fail quickly, connection has not been released
|
||||||
mgr.getConnection(route3, 10L);
|
mgr.getConnection(route3, 10L);
|
||||||
|
@ -31,12 +31,8 @@
|
|||||||
package org.apache.http.mockup;
|
package org.apache.http.mockup;
|
||||||
|
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.InetAddress;
|
|
||||||
|
|
||||||
import org.apache.http.conn.SecureSocketFactory;
|
import org.apache.http.conn.SecureSocketFactory;
|
||||||
import org.apache.http.params.HttpParams;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link SecureSocketFactory} mockup implementation.
|
* {@link SecureSocketFactory} mockup implementation.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user