diff --git a/httpclient/src/test/java/org/apache/http/auth/TestAuthScope.java b/httpclient/src/test/java/org/apache/http/auth/TestAuthScope.java
new file mode 100644
index 000000000..1e87668b1
--- /dev/null
+++ b/httpclient/src/test/java/org/apache/http/auth/TestAuthScope.java
@@ -0,0 +1,168 @@
+/*
+ * ====================================================================
+ * 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
+ * .
+ *
+ */
+package org.apache.http.auth;
+
+import org.apache.http.HttpHost;
+import org.junit.Assert;
+import org.junit.Test;
+
+/**
+ * Tests for {@link org.apache.http.auth.AuthScope}.
+ */
+public class TestAuthScope {
+
+ @Test
+ public void testBasics() {
+ final AuthScope authscope = new AuthScope("somehost", 80, "somerealm", "somescheme");
+ Assert.assertEquals("SOMESCHEME", authscope.getScheme());
+ Assert.assertEquals("somehost", authscope.getHost());
+ Assert.assertEquals(80, authscope.getPort());
+ Assert.assertEquals("somerealm", authscope.getRealm());
+ Assert.assertEquals("SOMESCHEME 'somerealm'@somehost:80", authscope.toString());
+ }
+
+ @Test
+ public void testBasicsOptionalRealm() {
+ final AuthScope authscope = new AuthScope("somehost", 80, AuthScope.ANY_REALM, "somescheme");
+ Assert.assertEquals("SOMESCHEME", authscope.getScheme());
+ Assert.assertEquals("somehost", authscope.getHost());
+ Assert.assertEquals(80, authscope.getPort());
+ Assert.assertEquals(null, authscope.getRealm());
+ Assert.assertEquals("SOMESCHEME @somehost:80", authscope.toString());
+ }
+
+ @Test
+ public void testBasicsOptionalScheme() {
+ final AuthScope authscope = new AuthScope("somehost", 80, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME);
+ Assert.assertEquals(null, authscope.getScheme());
+ Assert.assertEquals("somehost", authscope.getHost());
+ Assert.assertEquals(80, authscope.getPort());
+ Assert.assertEquals(null, authscope.getRealm());
+ Assert.assertEquals("@somehost:80", authscope.toString());
+ }
+
+ @Test
+ public void testBasicsOptionalPort() {
+ final AuthScope authscope = new AuthScope("somehost", AuthScope.ANY_PORT, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME);
+ Assert.assertEquals(null, authscope.getScheme());
+ Assert.assertEquals("somehost", authscope.getHost());
+ Assert.assertEquals(-1, authscope.getPort());
+ Assert.assertEquals(null, authscope.getRealm());
+ Assert.assertEquals("@somehost", authscope.toString());
+ }
+
+ @Test
+ public void testByOrigin() {
+ final HttpHost host = new HttpHost("somehost", 8080, "http");
+ final AuthScope authscope = new AuthScope(host);
+ Assert.assertEquals(null, authscope.getScheme());
+ Assert.assertEquals("somehost", authscope.getHost());
+ Assert.assertEquals(8080, authscope.getPort());
+ Assert.assertEquals(null, authscope.getRealm());
+ Assert.assertEquals(host, authscope.getOrigin());
+ Assert.assertEquals("@somehost:8080", authscope.toString());
+ }
+
+ @Test
+ public void testBasicsOptionalHost() {
+ final AuthScope authscope = new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME);
+ Assert.assertEquals(null, authscope.getScheme());
+ Assert.assertEquals(null, authscope.getHost());
+ Assert.assertEquals(-1, authscope.getPort());
+ Assert.assertEquals(null, authscope.getRealm());
+ Assert.assertEquals("", authscope.toString());
+ }
+
+ @Test
+ public void testScopeMatching() {
+ final AuthScope authscope1 = new AuthScope("somehost", 80, "somerealm", "somescheme");
+ final AuthScope authscope2 = new AuthScope("someotherhost", 80, "somerealm", "somescheme");
+ Assert.assertTrue(authscope1.match(authscope2) < 0);
+
+ int m1 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, "somescheme"));
+ int m2 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm", AuthScope.ANY_SCHEME));
+ Assert.assertTrue(m2 > m1);
+
+ m1 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, "somescheme"));
+ m2 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm", AuthScope.ANY_SCHEME));
+ Assert.assertTrue(m2 > m1);
+
+ m1 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm", "somescheme"));
+ m2 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, 80, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME));
+ Assert.assertTrue(m2 > m1);
+
+ m1 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, 80, "somerealm", "somescheme"));
+ m2 = authscope1.match(
+ new AuthScope("somehost", AuthScope.ANY_PORT, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME));
+ Assert.assertTrue(m2 > m1);
+
+ m1 = authscope1.match(AuthScope.ANY);
+ m2 = authscope1.match(
+ new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, "somescheme"));
+ Assert.assertTrue(m2 > m1);
+ }
+
+ @Test
+ public void testEquals() {
+ final AuthScope authscope1 = new AuthScope("somehost", 80, "somerealm", "somescheme");
+ final AuthScope authscope2 = new AuthScope("someotherhost", 80, "somerealm", "somescheme");
+ final AuthScope authscope3 = new AuthScope("somehost", 80, "somerealm", "somescheme");
+ final AuthScope authscope4 = new AuthScope("somehost", 8080, "somerealm", "somescheme");
+ final AuthScope authscope5 = new AuthScope("somehost", 80, "someotherrealm", "somescheme");
+ final AuthScope authscope6 = new AuthScope("somehost", 80, "somerealm", "someotherscheme");
+ Assert.assertTrue(authscope1.equals(authscope1));
+ Assert.assertFalse(authscope1.equals(authscope2));
+ Assert.assertTrue(authscope1.equals(authscope3));
+ Assert.assertFalse(authscope1.equals(authscope4));
+ Assert.assertFalse(authscope1.equals(authscope5));
+ Assert.assertFalse(authscope1.equals(authscope6));
+ }
+
+ @Test
+ public void testHash() {
+ final AuthScope authscope1 = new AuthScope("somehost", 80, "somerealm", "somescheme");
+ final AuthScope authscope2 = new AuthScope("someotherhost", 80, "somerealm", "somescheme");
+ final AuthScope authscope3 = new AuthScope("somehost", 80, "somerealm", "somescheme");
+ final AuthScope authscope4 = new AuthScope("somehost", 8080, "somerealm", "somescheme");
+ final AuthScope authscope5 = new AuthScope("somehost", 80, "someotherrealm", "somescheme");
+ final AuthScope authscope6 = new AuthScope("somehost", 80, "somerealm", "someotherscheme");
+ Assert.assertTrue(authscope1.hashCode() == authscope1.hashCode());
+ Assert.assertFalse(authscope1.hashCode() == authscope2.hashCode());
+ Assert.assertTrue(authscope1.hashCode() == authscope3.hashCode());
+ Assert.assertFalse(authscope1.hashCode() == authscope4.hashCode());
+ Assert.assertFalse(authscope1.hashCode() == authscope5.hashCode());
+ Assert.assertFalse(authscope1.hashCode() == authscope6.hashCode());
+ }
+
+}
diff --git a/httpclient/src/test/java/org/apache/http/impl/client/TestBasicCredentialsProvider.java b/httpclient/src/test/java/org/apache/http/impl/client/TestBasicCredentialsProvider.java
index a50c8a919..2665a64fd 100644
--- a/httpclient/src/test/java/org/apache/http/impl/client/TestBasicCredentialsProvider.java
+++ b/httpclient/src/test/java/org/apache/http/impl/client/TestBasicCredentialsProvider.java
@@ -124,42 +124,6 @@ public class TestBasicCredentialsProvider {
Assert.assertNotSame(cred, got);
}
- @Test
- public void testScopeMatching() {
- final AuthScope authscope1 = new AuthScope("somehost", 80, "somerealm", "somescheme");
- final AuthScope authscope2 = new AuthScope("someotherhost", 80, "somerealm", "somescheme");
- Assert.assertTrue(authscope1.match(authscope2) < 0);
-
- int m1 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, "somescheme"));
- int m2 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm", AuthScope.ANY_SCHEME));
- Assert.assertTrue(m2 > m1);
-
- m1 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, "somescheme"));
- m2 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm", AuthScope.ANY_SCHEME));
- Assert.assertTrue(m2 > m1);
-
- m1 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, "somerealm", "somescheme"));
- m2 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, 80, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME));
- Assert.assertTrue(m2 > m1);
-
- m1 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, 80, "somerealm", "somescheme"));
- m2 = authscope1.match(
- new AuthScope("somehost", AuthScope.ANY_PORT, AuthScope.ANY_REALM, AuthScope.ANY_SCHEME));
- Assert.assertTrue(m2 > m1);
-
- m1 = authscope1.match(AuthScope.ANY);
- m2 = authscope1.match(
- new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM, "somescheme"));
- Assert.assertTrue(m2 > m1);
- }
-
@Test
public void testCredentialsMatching() {
final Credentials creds1 = new UsernamePasswordCredentials("name1", "pass1");