Package org.jboss.as.web.session

Source Code of org.jboss.as.web.session.FailedExpirationTestCase$FailInvalidationAttribute

/*
* JBoss, Home of Professional Open Source.
* Copyright 2009 Red Hat, Inc., 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.jboss.as.web.session.SessionTestUtil.validateNewSession;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import java.io.File;
import java.io.IOException;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;

import javax.servlet.http.HttpSessionBindingEvent;
import javax.servlet.http.HttpSessionBindingListener;

import org.infinispan.manager.EmbeddedCacheManager;
import org.jboss.as.web.session.mocks.InvalidateSessionRequestHandler;
import org.jboss.as.web.session.mocks.SetAttributesRequestHandler;
import org.jboss.logging.Logger;
import org.jboss.metadata.web.jboss.JBossWebMetaData;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

/**
* A FailedExpirationTestCase.
*
* @author Brian Stansberry
* @version $Revision: 1.1 $
*/
public class FailedExpirationTestCase {
    private static final Logger log = Logger.getLogger(ConcurrentFailoverRequestsTestCase.class);

    private static long testCount = System.currentTimeMillis();

    private final JGroupsSystemPropertySupport jgSupport = new JGroupsSystemPropertySupport();
    private EmbeddedCacheManager cacheContainer;
    private DistributableSessionManager<?> manager;
    private String tempDir;

    @Before
    public void setUp() throws Exception {
        jgSupport.setUpProperties();

        File tmpDir = new File(System.getProperty("java.io.tmpdir"));
        File root = new File(tmpDir, getClass().getSimpleName());
        root.mkdirs();
        root.deleteOnExit();
        tempDir = root.getAbsolutePath();
    }

    @After
    public void tearDown() throws Exception {
        jgSupport.restoreProperties();

        if (manager != null) {
            try {
                manager.stop();
            } catch (Exception e) {
                log.error(e.getMessage(), e);
            }
        }

        if (cacheContainer != null) {
            try {
                cacheContainer.stop();
            } catch (Exception e) {
                log.error(e.getMessage(), e);
            }
        }

        SessionTestUtil.cleanFilesystem(tempDir);
    }

    @Test
    public void testFailedInvalidation() throws Exception {
        ++testCount;

        cacheContainer = SessionTestUtil.createCacheContainer(true, null, false, false);
        cacheContainer.start();
        JBossWebMetaData webMetaData = SessionTestUtil.createWebMetaData(10, true, 1, -1);
        webMetaData.getReplicationConfig().setMaxUnreplicatedInterval(0);

        String warName = "test" + testCount;
        manager = SessionTestUtil.createManager(webMetaData, warName, 2, cacheContainer, null);
        manager.start();

        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());

        Map<String, Object> attrs = new HashMap<String, Object>();
        attrs.put("failInvalid", new FailInvalidationAttribute());
        attrs.put("failDeserialization", new FailDeserializationAttribute());

        // Establish session.
        SetAttributesRequestHandler setHandler = new SetAttributesRequestHandler(attrs, false);
        SessionTestUtil.invokeRequest(manager, setHandler, null);
        validateNewSession(setHandler);
        String id = setHandler.getSessionId();
        assertEquals(1, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());

        InvalidateSessionRequestHandler invalHandler = new InvalidateSessionRequestHandler(attrs.keySet(), false);
        try {
            SessionTestUtil.invokeRequest(manager, invalHandler, id);
            fail("Invalidation not rejected");
        } catch (RejectedException ok) {
        }
        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());
    }

    @Test
    public void testFailedExpiration() throws Exception {
        ++testCount;

        cacheContainer = SessionTestUtil.createCacheContainer(true, null, false, false);
        cacheContainer.start();
        JBossWebMetaData webMetaData = SessionTestUtil.createWebMetaData(10, true, 1, -1);
        webMetaData.getReplicationConfig().setMaxUnreplicatedInterval(0);
        String warName = "test" + testCount;
        manager = SessionTestUtil.createManager(webMetaData, warName, 2, cacheContainer, null);
        manager.start();

        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());

        Map<String, Object> attrs = new HashMap<String, Object>();
        attrs.put("failInvalid", new FailInvalidationAttribute());
        attrs.put("failDeserialization", new FailDeserializationAttribute());

        // Establish session.
        SetAttributesRequestHandler setHandler = new SetAttributesRequestHandler(attrs, false);
        SessionTestUtil.invokeRequest(manager, setHandler, null);
        validateNewSession(setHandler);

        assertEquals(1, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());

        SessionTestUtil.sleepThread(2010);
        manager.backgroundProcess();
        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());
    }

    @Test
    public void testFailedExpirationAfterPassivation() throws Exception {
        ++testCount;

        String passivationDir = SessionTestUtil.getPassivationDir(tempDir, testCount, 1);
        cacheContainer = SessionTestUtil.createCacheContainer(true, passivationDir, false, false);
        cacheContainer.start();
        JBossWebMetaData webMetaData = SessionTestUtil.createWebMetaData(10, true, 1, -1);
        webMetaData.getReplicationConfig().setMaxUnreplicatedInterval(0);
        String warName = "test" + testCount;
        manager = SessionTestUtil.createManager(webMetaData, warName, 2, cacheContainer, null);
        manager.start();

        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());

        Map<String, Object> attrs = new HashMap<String, Object>();
        attrs.put("failInvalid", new FailInvalidationAttribute());
        attrs.put("failDeserialization", new FailDeserializationAttribute());

        // Establish session.
        SetAttributesRequestHandler setHandler = new SetAttributesRequestHandler(attrs, false);
        SessionTestUtil.invokeRequest(manager, setHandler, null);
        validateNewSession(setHandler);

        assertEquals(1, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());

        SessionTestUtil.sleepThread(1010);
        manager.backgroundProcess();
        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(1, manager.getPassivatedSessionCount());

        SessionTestUtil.sleepThread(1010);
        manager.backgroundProcess();
        assertEquals(0, manager.getActiveSessionCount());
        assertEquals(0, manager.getPassivatedSessionCount());
    }

    public static class FailInvalidationAttribute extends FailDeserializationAttribute implements HttpSessionBindingListener {
        /** The serialVersionUID */
        private static final long serialVersionUID = 1L;

        @Override
        public void valueBound(HttpSessionBindingEvent event) {
            // no-op
        }

        @Override
        public void valueUnbound(HttpSessionBindingEvent arg0) {
            throw new RejectedException();
        }
    }

    public static class FailDeserializationAttribute implements Serializable {
        /** The serialVersionUID */
        private static final long serialVersionUID = 1L;

        private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException {
            throw new RejectedException();
        }
    }

    public static class RejectedException extends RuntimeException {
        /** The serialVersionUID */
        private static final long serialVersionUID = 1L;
    }
}
TOP

Related Classes of org.jboss.as.web.session.FailedExpirationTestCase$FailInvalidationAttribute

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.