Test cases for AuthScope
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1665996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2220d106c1
commit
f1e0f669f1
|
@ -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
|
||||
* <http://www.apache.org/>.
|
||||
*
|
||||
*/
|
||||
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 <any realm>@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("<any realm>@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("<any realm>@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("<any realm>@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("<any realm>", 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());
|
||||
}
|
||||
|
||||
}
|
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue