Package org.jboss.test.metadata.web

Source Code of org.jboss.test.metadata.web.JBossWeb50UnitTestCase

/*
* JBoss, Home of Professional Open Source.
* Copyright 2006, 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.test.metadata.web;

import org.jboss.metadata.common.jboss.LoaderRepositoryMetaData;
import org.jboss.metadata.web.jboss.ClassLoadingMetaData;
import org.jboss.metadata.web.jboss.JBoss4xDTDWebMetaData;
import org.jboss.metadata.web.jboss.JBoss50DTDWebMetaData;
import org.jboss.metadata.web.jboss.JBossWebMetaData;
import org.jboss.metadata.web.jboss.PassivationConfig;
import org.jboss.metadata.web.jboss.ReplicationConfig;
import org.jboss.metadata.web.jboss.ReplicationGranularity;
import org.jboss.metadata.web.jboss.ReplicationTrigger;
import org.jboss.metadata.web.jboss.SnapshotMode;
import org.jboss.test.metadata.javaee.AbstractJavaEEEverythingTest;


/**
* Miscellaneous tests with a JBoss 5 jboss-web.xml.
*
* @author Brian Stansberry
* @author Scott.Stark@jboss.org
* @version $Revision: 88255 $
*/
public class JBossWeb50UnitTestCase extends AbstractJavaEEEverythingTest
{
   public JBossWeb50UnitTestCase(String name)
   {
      super(name);
   }

   public void testClustering() throws Exception
   {
      //enableTrace("org.jboss.xb.builder");
      JBossWebMetaData jbossWeb = unmarshal();
     
      ReplicationConfig replConfig = jbossWeb.getReplicationConfig();
      assertNotNull(replConfig);
      assertEquals("testCache", replConfig.getCacheName());
      assertEquals(ReplicationTrigger.SET, replConfig.getReplicationTrigger());
      assertEquals(ReplicationGranularity.FIELD, replConfig.getReplicationGranularity());
      assertNotNull(replConfig.getReplicationFieldBatchMode());
      assertTrue(replConfig.getReplicationFieldBatchMode().booleanValue());
      assertNotNull(replConfig.getUseJK());
      assertTrue(replConfig.getUseJK().booleanValue());
      assertNotNull(replConfig.getMaxUnreplicatedInterval());
      assertEquals(30, replConfig.getMaxUnreplicatedInterval().intValue());
      assertEquals(SnapshotMode.INTERVAL, replConfig.getSnapshotMode());
      assertNotNull(replConfig.getSnapshotInterval());
      assertEquals(5, replConfig.getSnapshotInterval().intValue());
      assertEquals("org.jboss.test.TestNotificationPolicy", replConfig.getSessionNotificationPolicy());
     
      assertNotNull(jbossWeb.getMaxActiveSessions());
      assertEquals(20, jbossWeb.getMaxActiveSessions().intValue());
     
      PassivationConfig passConfig = jbossWeb.getPassivationConfig();
      assertNotNull(passConfig);
      assertNotNull(passConfig.getUseSessionPassivation());
      assertTrue(passConfig.getUseSessionPassivation().booleanValue());
      assertNotNull(passConfig.getPassivationMinIdleTime());
      assertEquals(2, passConfig.getPassivationMinIdleTime().intValue());
      assertNotNull(passConfig.getPassivationMaxIdleTime());
      assertEquals(5, passConfig.getPassivationMaxIdleTime().intValue());
     
   }

   public void testClassLoading()
      throws Exception
   {
      JBossWebMetaData jbossWeb = unmarshal();
      ClassLoadingMetaData classLoading = jbossWeb.getClassLoading();
      assertNotNull(classLoading);
      assertEquals(true, classLoading.isJava2ClassLoadingCompliance());
      assertEquals(true, classLoading.wasJava2ClassLoadingComplianceSet());
   }
  
   public void testClassLoading42()
      throws Exception
   {
      JBossWebMetaData jbossWeb = unmarshal(JBoss4xDTDWebMetaData.class);
      ClassLoadingMetaData classLoading = jbossWeb.getClassLoading();
      assertNotNull(classLoading);
      assertEquals(false, classLoading.isJava2ClassLoadingCompliance());
      assertEquals(false, classLoading.wasJava2ClassLoadingComplianceSet());
      LoaderRepositoryMetaData lrmd = classLoading.getLoaderRepository();
      assertNull(lrmd.getName());
   }
  
   public void testIsJaacAllStoreRole() throws Exception
   {
     
      JBossWebMetaData jbossWeb = unmarshal(JBoss4xDTDWebMetaData.class);
     
      assertNotNull(jbossWeb);
      assertTrue(jbossWeb.isJaccAllStoreRole());
     
   }
  
   protected JBossWebMetaData unmarshal() throws Exception
   {
      return unmarshal(JBoss50DTDWebMetaData.class);
   }
}
TOP

Related Classes of org.jboss.test.metadata.web.JBossWeb50UnitTestCase

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.