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

📄 methoddefinitionsourceadvisortests.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.intercept.method.aopalliance;import junit.framework.TestCase;import org.acegisecurity.TargetObject;import org.acegisecurity.intercept.method.MethodDefinitionMap;import org.acegisecurity.intercept.method.MethodDefinitionSourceEditor;import org.springframework.aop.framework.AopConfigException;import java.lang.reflect.Method;/** * Tests {@link MethodDefinitionSourceAdvisor}. * * @author Ben Alex * @version $Id: MethodDefinitionSourceAdvisorTests.java 1496 2006-05-23 13:38:33Z benalex $ */public class MethodDefinitionSourceAdvisorTests extends TestCase {    //~ Constructors ===================================================================================================    public MethodDefinitionSourceAdvisorTests() {        super();    }    public MethodDefinitionSourceAdvisorTests(String arg0) {        super(arg0);    }    //~ Methods ========================================================================================================    private MethodSecurityInterceptor getInterceptor() {        MethodDefinitionSourceEditor editor = new MethodDefinitionSourceEditor();        editor.setAsText("org.acegisecurity.TargetObject.countLength=ROLE_NOT_USED");        MethodDefinitionMap map = (MethodDefinitionMap) editor.getValue();        MethodSecurityInterceptor msi = new MethodSecurityInterceptor();        msi.setObjectDefinitionSource(map);        return msi;    }    public static void main(String[] args) {        junit.textui.TestRunner.run(MethodDefinitionSourceAdvisorTests.class);    }    public final void setUp() throws Exception {        super.setUp();    }    public void testAdvisorReturnsFalseWhenMethodInvocationNotDefined()        throws Exception {        Class clazz = TargetObject.class;        Method method = clazz.getMethod("makeLowerCase", new Class[] {String.class});        MethodDefinitionSourceAdvisor advisor = new MethodDefinitionSourceAdvisor(getInterceptor());        assertFalse(advisor.matches(method, clazz));    }    public void testAdvisorReturnsTrueWhenMethodInvocationIsDefined()        throws Exception {        Class clazz = TargetObject.class;        Method method = clazz.getMethod("countLength", new Class[] {String.class});        MethodDefinitionSourceAdvisor advisor = new MethodDefinitionSourceAdvisor(getInterceptor());        assertTrue(advisor.matches(method, clazz));    }    public void testDetectsImproperlyConfiguredAdvice() {        MethodSecurityInterceptor msi = new MethodSecurityInterceptor();        try {            new MethodDefinitionSourceAdvisor(msi);            fail("Should have detected null ObjectDefinitionSource and thrown AopConfigException");        } catch (AopConfigException expected) {            assertTrue(true);        }    }    public void testUnsupportedOperations() throws Throwable {        Class clazz = TargetObject.class;        Method method = clazz.getMethod("countLength", new Class[] {String.class});        MethodDefinitionSourceAdvisor.InternalMethodInvocation imi = new MethodDefinitionSourceAdvisor(getInterceptor()).new InternalMethodInvocation(method);        try {            imi.getArguments();            fail("Should have thrown UnsupportedOperationException");        } catch (UnsupportedOperationException expected) {            assertTrue(true);        }        try {            imi.getStaticPart();            fail("Should have thrown UnsupportedOperationException");        } catch (UnsupportedOperationException expected) {            assertTrue(true);        }        try {            imi.getThis();            fail("Should have thrown UnsupportedOperationException");        } catch (UnsupportedOperationException expected) {            assertTrue(true);        }        try {            imi.proceed();            fail("Should have thrown UnsupportedOperationException");        } catch (UnsupportedOperationException expected) {            assertTrue(true);        }        try {            new MethodDefinitionSourceAdvisor(getInterceptor()).new InternalMethodInvocation();            fail("Should have thrown UnsupportedOperationException");        } catch (UnsupportedOperationException expected) {            assertTrue(true);        }    }}

⌨️ 快捷键说明

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