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

📄 testrequestauthenticator.java

📁 lucene2.2.0版本
💻 JAVA
字号:
/**  * Copyright 2004 The Apache Software Foundation  *  * 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.apache.lucene.gdata.servlet.handler;import javax.servlet.http.Cookie;import javax.servlet.http.HttpServletRequest;import junit.framework.TestCase;import org.apache.lucene.gdata.server.authentication.AuthenticationController;import org.apache.lucene.gdata.server.registry.GDataServerRegistry;import org.easymock.MockControl;public class TestRequestAuthenticator extends TestCase {    private MockControl requestMock;    private HttpServletRequest request;    private RequestAuthenticator authenticator;    private String tokenHeader;    private String token;    private Cookie authCookie;        protected void setUp() throws Exception {    createMocks();    this.authenticator = new RequestAuthenticator();    this.token = "myToken";    this.tokenHeader = "GoogleLogin auth="+this.token;    this.authCookie = new Cookie("Auth",this.token);    }    protected void createMocks() {        this.requestMock = MockControl.createControl(HttpServletRequest.class);        this.request = (HttpServletRequest)this.requestMock.getMock();            }    protected void tearDown() throws Exception {        GDataServerRegistry.getRegistry().destroy();    }    /*     * Test method for 'org.apache.lucene.gdata.servlet.handler.RequestAuthenticator.authenticateAccount(GDataRequest, AccountRole)'     */    public void testGetTokenFromRequest() {        // test token present        this.requestMock.expectAndDefaultReturn(this.request.getHeader(AuthenticationController.AUTHORIZATION_HEADER), this.tokenHeader);        this.requestMock.replay();        assertEquals(this.token,this.authenticator.getTokenFromRequest(this.request));        this.requestMock.verify();        this.requestMock.reset();                // test token null / cookie present        this.requestMock.expectAndDefaultReturn(this.request.getHeader(AuthenticationController.AUTHORIZATION_HEADER), null);        this.requestMock.expectAndDefaultReturn(this.request.getCookies(), new Cookie[]{this.authCookie});        this.requestMock.replay();        assertEquals(this.token,this.authenticator.getTokenFromRequest(this.request));        this.requestMock.verify();        this.requestMock.reset();                // test token null / cookie not present        this.requestMock.expectAndDefaultReturn(this.request.getHeader(AuthenticationController.AUTHORIZATION_HEADER), null);        this.requestMock.expectAndDefaultReturn(this.request.getCookies(), new Cookie[]{new Cookie("somekey","someValue")});        this.requestMock.replay();        assertNull(this.authenticator.getTokenFromRequest(this.request));        this.requestMock.verify();        this.requestMock.reset();        //      test token null / cookie array emtpy         this.requestMock.expectAndDefaultReturn(this.request.getHeader(AuthenticationController.AUTHORIZATION_HEADER), null);        this.requestMock.expectAndDefaultReturn(this.request.getCookies(), new Cookie[]{});        this.requestMock.replay();        assertNull(this.authenticator.getTokenFromRequest(this.request));        this.requestMock.verify();        this.requestMock.reset();        //      test token null / cookie array null        this.requestMock.expectAndDefaultReturn(this.request.getHeader(AuthenticationController.AUTHORIZATION_HEADER), null);        this.requestMock.expectAndDefaultReturn(this.request.getCookies(), null);        this.requestMock.replay();        assertNull(this.authenticator.getTokenFromRequest(this.request));        this.requestMock.verify();        this.requestMock.reset();    }}

⌨️ 快捷键说明

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