📄 authzimplattributetest.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.taglibs.velocity;import junit.framework.TestCase;import org.acegisecurity.GrantedAuthority;import org.acegisecurity.GrantedAuthorityImpl;import org.acegisecurity.context.SecurityContextHolder;import org.acegisecurity.providers.TestingAuthenticationToken;import javax.servlet.jsp.JspException;/** * DOCUMENT ME! */public class AuthzImplAttributeTest extends TestCase { //~ Instance fields ================================================================================================ private final Authz authz = new AuthzImpl(); private TestingAuthenticationToken currentUser; //~ Methods ======================================================================================================== protected void setUp() throws Exception { super.setUp(); currentUser = new TestingAuthenticationToken("abc", "123", new GrantedAuthority[] { new GrantedAuthorityImpl("ROLE_SUPERVISOR"), new GrantedAuthorityImpl("ROLE_RESTRICTED"), }); SecurityContextHolder.getContext().setAuthentication(currentUser); } protected void tearDown() throws Exception { SecurityContextHolder.clearContext(); } public void testAssertsIfAllGrantedSecond() { boolean r1 = authz.allGranted("ROLE_SUPERVISOR,ROLE_SUPERTELLER"); boolean r2 = authz.anyGranted("ROLE_RESTRICTED"); //prevents request - principal is missing ROLE_SUPERTELLE assertFalse(r1 && r2); } public void testAssertsIfAnyGrantedLast() { boolean r2 = authz.anyGranted("ROLE_BANKER"); // prevents request - principal is missing ROLE_BANKER assertFalse(r2); } public void testAssertsIfNotGrantedFirst() { boolean r1 = authz.allGranted("ROLE_SUPERVISOR,ROLE_RESTRICTED"); boolean r2 = authz.noneGranted("ROLE_RESTRICTED"); boolean r3 = authz.anyGranted("ROLE_SUPERVISOR"); //prevents request - principal has ROLE_RESTRICTED assertFalse(r1 && r2 && r3); } public void testAssertsIfNotGrantedIgnoresWhitespaceInAttribute() { //allows request - principal has ROLE_SUPERVISOR assertTrue(authz.anyGranted("\tROLE_SUPERVISOR \t, \r\n\t ROLE_TELLER ")); } public void testIfAllGrantedIgnoresWhitespaceInAttribute() { //allows request - principal has ROLE_RESTRICTED and ROLE_SUPERVISOR assertTrue(authz.allGranted("\nROLE_SUPERVISOR\t,ROLE_RESTRICTED\t\n\r ")); } public void testIfNotGrantedIgnoresWhitespaceInAttribute() throws JspException { //prevents request - principal does not have ROLE_TELLER assertFalse(authz.allGranted(" \t ROLE_TELLER \r")); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -