Package org.jboss.as.web.session

Source Code of org.jboss.as.web.session.SetNewSessionCookieUnitTestCase

/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.as.web.session;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import javax.servlet.http.Cookie;

import org.apache.catalina.Context;
import org.apache.catalina.Globals;
import org.apache.catalina.connector.Connector;
import org.apache.catalina.connector.Response;
import org.apache.catalina.core.StandardContext;
import org.apache.catalina.deploy.SessionCookie;
import org.jboss.as.web.session.mocks.MockEngine;
import org.jboss.as.web.session.mocks.MockHost;
import org.jboss.as.web.session.mocks.MockSessionManager;
import org.jboss.as.web.session.mocks.MockResponse;
import org.junit.Test;

/**
* Test behavior of JBossManager.setNewSessionCookie()
*
* @author Brian Stansberry
*/
public class SetNewSessionCookieUnitTestCase {
    private static final String ROOT_PATH = "/";
    private static final String CONTEXT_PATH = "/test";
    private static final String DOMAIN = "jboss.org";
    private static final String SESSION_ID = "abc123";
    private static final String COMMENT = "A comment";

    @Test
    public void testBasic() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, CONTEXT_PATH, false);
    }

    @Test
    public void testRootContext() throws Exception {
        SessionManager mgr = getManager(getContext(ROOT_PATH));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, ROOT_PATH, false);
    }

    @Test
    public void testEmptyContextPath() throws Exception {
        SessionManager mgr = getManager(getContext(""));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, ROOT_PATH, false);
    }

    @Test
    public void testSecureConnector() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH));

        Cookie cookie = validateResponse(executeRequest(mgr, true));
        validateCookie(cookie, CONTEXT_PATH, true);
    }

    @Test
    public void testDomain() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH, null, null, DOMAIN, false, false));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, CONTEXT_PATH, null, DOMAIN, false, false);
    }

    @Test
    public void testCookiePath() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH, ROOT_PATH, null, null, false, false));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, ROOT_PATH, false);
    }

    @Test
    public void testComment() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH, null, COMMENT, null, false, false));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, CONTEXT_PATH, COMMENT, null, false, false);
    }

    @Test
    public void testSecureContext() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH, null, null, null, false, true));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, CONTEXT_PATH, true);
    }

    @Test
    public void testHttpOnly() throws Exception {
        SessionManager mgr = getManager(getContext(CONTEXT_PATH, null, null, null, true, false));

        Cookie cookie = validateResponse(executeRequest(mgr, false));
        validateCookie(cookie, CONTEXT_PATH, null, null, true, false);
    }

    private Context getContext(String contextName) {
        return getContext(contextName, null, null, null, false, false);
    }

    private Context getContext(String contextPath, String cookiePath, String cookieComment, String cookieDomain,
            boolean httpOnly, boolean secure) {
        MockEngine engine = new MockEngine();
        MockHost host = new MockHost();
        host.setName("localhost");
        engine.addChild(host);
        StandardContext container = new StandardContext();
        container.setPath(contextPath);
        host.addChild(container);

        SessionCookie cookie = container.getSessionCookie();
        if (cookiePath != null)
            cookie.setPath(cookiePath);
        if (cookieComment != null)
            cookie.setComment(cookieComment);
        if (cookieDomain != null)
            cookie.setDomain(cookieDomain);
        cookie.setHttpOnly(httpOnly);
        cookie.setSecure(secure);

        return container;
    }

    private SessionManager getManager(Context context) {
        MockSessionManager mgr = new MockSessionManager();
        context.setManager(mgr);
        return mgr;
    }

    private MockResponse executeRequest(SessionManager mgr, boolean secure) throws Exception {
        Connector connector = new Connector("http");
        connector.setSecure(secure);
        MockResponse response = new MockResponse(connector);
        mgr.setNewSessionCookie(SESSION_ID, response);
        return response;
    }

    private Cookie validateResponse(Response response) {
        Cookie[] cookies = response.getCookies();
        assertNotNull(cookies);
        assertEquals(1, cookies.length);
        return cookies[0];
    }

    private void validateCookie(Cookie cookie, String cookiePath, boolean secure) {
        validateCookie(cookie, cookiePath, null, null, false, secure);
    }

    private void validateCookie(Cookie cookie, String cookiePath, String cookieComment, String cookieDomain, boolean httpOnly,
            boolean secure) {
        basicValidation(cookie);
        assertEquals("path", cookiePath, cookie.getPath());
        assertEquals("comment", cookieComment, cookie.getComment());
        assertEquals("domain", cookieDomain, cookie.getDomain());
        assertEquals("secure", secure, cookie.getSecure());
//        assertEquals("httpOnly", httpOnly, cookie.isHttpOnly());
    }

    private void basicValidation(Cookie cookie) {
        assertNotNull("cookie is null", cookie);
        assertEquals("name", Globals.SESSION_COOKIE_NAME, cookie.getName());
        assertEquals("value", SESSION_ID, cookie.getValue());
        assertEquals("version", 0, cookie.getVersion());
        assertEquals("maxAge", -1, cookie.getMaxAge());
    }
}
TOP

Related Classes of org.jboss.as.web.session.SetNewSessionCookieUnitTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.