📄 authenticationsimplehttpinvokerrequestexecutortests.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.context.httpinvoker;import junit.framework.TestCase;import org.acegisecurity.Authentication;import org.acegisecurity.context.SecurityContextHolder;import org.acegisecurity.context.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor;import org.acegisecurity.providers.UsernamePasswordAuthenticationToken;import java.io.IOException;import java.net.HttpURLConnection;import java.net.URL;import java.util.HashMap;import java.util.Map;/** * Tests {@link AuthenticationSimpleHttpInvokerRequestExecutor}. * * @author Ben Alex * @version $Id: AuthenticationSimpleHttpInvokerRequestExecutorTests.java 1496 2006-05-23 13:38:33Z benalex $ */public class AuthenticationSimpleHttpInvokerRequestExecutorTests extends TestCase { //~ Constructors =================================================================================================== public AuthenticationSimpleHttpInvokerRequestExecutorTests() { super(); } public AuthenticationSimpleHttpInvokerRequestExecutorTests(String arg0) { super(arg0); } //~ Methods ======================================================================================================== public static void main(String[] args) { junit.textui.TestRunner.run(AuthenticationSimpleHttpInvokerRequestExecutorTests.class); } public void testNormalOperation() throws Exception { // Setup client-side context Authentication clientSideAuthentication = new UsernamePasswordAuthenticationToken("Aladdin", "open sesame"); SecurityContextHolder.getContext().setAuthentication(clientSideAuthentication); // Create a connection and ensure our executor sets its // properties correctly AuthenticationSimpleHttpInvokerRequestExecutor executor = new AuthenticationSimpleHttpInvokerRequestExecutor(); HttpURLConnection conn = new MockHttpURLConnection(new URL("http://localhost/")); executor.prepareConnection(conn, 10); // Check connection properties // See http://www.faqs.org/rfcs/rfc1945.html section 11.1 for example // we are comparing against assertEquals("Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==", conn.getRequestProperty("Authorization")); SecurityContextHolder.getContext().setAuthentication(null); } public void testNullContextHolderIsNull() throws Exception { SecurityContextHolder.getContext().setAuthentication(null); // Create a connection and ensure our executor sets its // properties correctly AuthenticationSimpleHttpInvokerRequestExecutor executor = new AuthenticationSimpleHttpInvokerRequestExecutor(); HttpURLConnection conn = new MockHttpURLConnection(new URL("http://localhost/")); executor.prepareConnection(conn, 10); // Check connection properties (shouldn't be an Authorization header) assertNull(conn.getRequestProperty("Authorization")); } //~ Inner Classes ================================================================================================== private class MockHttpURLConnection extends HttpURLConnection { private Map requestProperties = new HashMap(); public MockHttpURLConnection(URL u) { super(u); } public void connect() throws IOException { throw new UnsupportedOperationException("mock not implemented"); } public void disconnect() { throw new UnsupportedOperationException("mock not implemented"); } public String getRequestProperty(String key) { return (String) requestProperties.get(key); } public void setRequestProperty(String key, String value) { requestProperties.put(key, value); } public boolean usingProxy() { throw new UnsupportedOperationException("mock not implemented"); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -