⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 remembermeauthenticationtokentests.java

📁 acegi构造安全的java系统
💻 JAVA
字号:
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited * * Licensed 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. */package org.acegisecurity.providers.rememberme;import junit.framework.TestCase;import org.acegisecurity.GrantedAuthority;import org.acegisecurity.GrantedAuthorityImpl;import org.acegisecurity.providers.UsernamePasswordAuthenticationToken;/** * Tests {@link RememberMeAuthenticationToken}. * * @author Ben Alex * @version $Id: RememberMeAuthenticationTokenTests.java 1877 2007-05-25 05:33:06Z benalex $ */public class RememberMeAuthenticationTokenTests extends TestCase {    //~ Constructors ===================================================================================================    public RememberMeAuthenticationTokenTests() {        super();    }    public RememberMeAuthenticationTokenTests(String arg0) {        super(arg0);    }    //~ Methods ========================================================================================================    public static void main(String[] args) {        junit.textui.TestRunner.run(RememberMeAuthenticationTokenTests.class);    }    public final void setUp() throws Exception {        super.setUp();    }    public void testConstructorRejectsNulls() {        try {            new RememberMeAuthenticationToken(null, "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});            fail("Should have thrown IllegalArgumentException");        } catch (IllegalArgumentException expected) {            assertTrue(true);        }        try {            new RememberMeAuthenticationToken("key", null,                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});            fail("Should have thrown IllegalArgumentException");        } catch (IllegalArgumentException expected) {            assertTrue(true);        }        try {            new RememberMeAuthenticationToken("key", "Test", new GrantedAuthority[] {null});            fail("Should have thrown IllegalArgumentException");        } catch (IllegalArgumentException expected) {            assertTrue(true);        }    }    public void testEqualsWhenEqual() {        RememberMeAuthenticationToken token1 = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        RememberMeAuthenticationToken token2 = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        assertEquals(token1, token2);    }    public void testGetters() {        RememberMeAuthenticationToken token = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        assertEquals("key".hashCode(), token.getKeyHash());        assertEquals("Test", token.getPrincipal());        assertEquals("", token.getCredentials());        assertEquals("ROLE_ONE", token.getAuthorities()[0].getAuthority());        assertEquals("ROLE_TWO", token.getAuthorities()[1].getAuthority());        assertTrue(token.isAuthenticated());    }    public void testNoArgConstructorDoesntExist() {        Class clazz = RememberMeAuthenticationToken.class;        try {            clazz.getDeclaredConstructor((Class[]) null);            fail("Should have thrown NoSuchMethodException");        } catch (NoSuchMethodException expected) {            assertTrue(true);        }    }    public void testNotEqualsDueToAbstractParentEqualsCheck() {        RememberMeAuthenticationToken token1 = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        RememberMeAuthenticationToken token2 = new RememberMeAuthenticationToken("key", "DIFFERENT_PRINCIPAL",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        assertFalse(token1.equals(token2));    }    public void testNotEqualsDueToDifferentAuthenticationClass() {        RememberMeAuthenticationToken token1 = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        UsernamePasswordAuthenticationToken token2 = new UsernamePasswordAuthenticationToken("Test", "Password",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        assertFalse(token1.equals(token2));    }    public void testNotEqualsDueToKey() {        RememberMeAuthenticationToken token1 = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        RememberMeAuthenticationToken token2 = new RememberMeAuthenticationToken("DIFFERENT_KEY", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        assertFalse(token1.equals(token2));    }    public void testSetAuthenticatedIgnored() {        RememberMeAuthenticationToken token = new RememberMeAuthenticationToken("key", "Test",                new GrantedAuthority[] {new GrantedAuthorityImpl("ROLE_ONE"), new GrantedAuthorityImpl("ROLE_TWO")});        assertTrue(token.isAuthenticated());        token.setAuthenticated(false);        assertTrue(!token.isAuthenticated());    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -