📄 securechannelprocessortests.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.securechannel;import junit.framework.TestCase;import org.acegisecurity.ConfigAttributeDefinition;import org.acegisecurity.MockFilterChain;import org.acegisecurity.SecurityConfig;import org.acegisecurity.intercept.web.FilterInvocation;import org.springframework.mock.web.MockHttpServletRequest;import org.springframework.mock.web.MockHttpServletResponse;/** * Tests {@link SecureChannelProcessor}. * * @author Ben Alex * @version $Id: SecureChannelProcessorTests.java 1496 2006-05-23 13:38:33Z benalex $ */public class SecureChannelProcessorTests extends TestCase { //~ Methods ======================================================================================================== public static void main(String[] args) { junit.textui.TestRunner.run(SecureChannelProcessorTests.class); } public final void setUp() throws Exception { super.setUp(); } public void testDecideDetectsAcceptableChannel() throws Exception { ConfigAttributeDefinition cad = new ConfigAttributeDefinition(); cad.addConfigAttribute(new SecurityConfig("SOME_IGNORED_ATTRIBUTE")); cad.addConfigAttribute(new SecurityConfig("REQUIRES_SECURE_CHANNEL")); MockHttpServletRequest request = new MockHttpServletRequest(); request.setQueryString("info=true"); request.setServerName("localhost"); request.setContextPath("/bigapp"); request.setServletPath("/servlet"); request.setScheme("https"); request.setSecure(true); request.setServerPort(8443); MockHttpServletResponse response = new MockHttpServletResponse(); MockFilterChain chain = new MockFilterChain(); FilterInvocation fi = new FilterInvocation(request, response, chain); SecureChannelProcessor processor = new SecureChannelProcessor(); processor.decide(fi, cad); assertFalse(fi.getResponse().isCommitted()); } public void testDecideDetectsUnacceptableChannel() throws Exception { ConfigAttributeDefinition cad = new ConfigAttributeDefinition(); cad.addConfigAttribute(new SecurityConfig("SOME_IGNORED_ATTRIBUTE")); cad.addConfigAttribute(new SecurityConfig("REQUIRES_SECURE_CHANNEL")); MockHttpServletRequest request = new MockHttpServletRequest(); request.setQueryString("info=true"); request.setServerName("localhost"); request.setContextPath("/bigapp"); request.setServletPath("/servlet"); request.setScheme("http"); request.setServerPort(8080); MockHttpServletResponse response = new MockHttpServletResponse(); MockFilterChain chain = new MockFilterChain(); FilterInvocation fi = new FilterInvocation(request, response, chain); SecureChannelProcessor processor = new SecureChannelProcessor(); processor.decide(fi, cad); assertTrue(fi.getResponse().isCommitted()); } public void testDecideRejectsNulls() throws Exception { SecureChannelProcessor processor = new SecureChannelProcessor(); processor.afterPropertiesSet(); try { processor.decide(null, null); fail("Should have thrown IllegalArgumentException"); } catch (IllegalArgumentException expected) { assertTrue(true); } } public void testGettersSetters() { SecureChannelProcessor processor = new SecureChannelProcessor(); assertEquals("REQUIRES_SECURE_CHANNEL", processor.getSecureKeyword()); processor.setSecureKeyword("X"); assertEquals("X", processor.getSecureKeyword()); assertTrue(processor.getEntryPoint() != null); processor.setEntryPoint(null); assertTrue(processor.getEntryPoint() == null); } public void testMissingEntryPoint() throws Exception { SecureChannelProcessor processor = new SecureChannelProcessor(); processor.setEntryPoint(null); try { processor.afterPropertiesSet(); fail("Should have thrown IllegalArgumentException"); } catch (IllegalArgumentException expected) { assertEquals("entryPoint required", expected.getMessage()); } } public void testMissingSecureChannelKeyword() throws Exception { SecureChannelProcessor processor = new SecureChannelProcessor(); processor.setSecureKeyword(null); try { processor.afterPropertiesSet(); fail("Should have thrown IllegalArgumentException"); } catch (IllegalArgumentException expected) { assertEquals("secureKeyword required", expected.getMessage()); } processor.setSecureKeyword(""); try { processor.afterPropertiesSet(); fail("Should have thrown IllegalArgumentException"); } catch (IllegalArgumentException expected) { assertEquals("secureKeyword required", expected.getMessage()); } } public void testSupports() { SecureChannelProcessor processor = new SecureChannelProcessor(); assertTrue(processor.supports(new SecurityConfig("REQUIRES_SECURE_CHANNEL"))); assertFalse(processor.supports(null)); assertFalse(processor.supports(new SecurityConfig("NOT_SUPPORTED"))); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -