Package org.jboss.cache.config

Source Code of org.jboss.cache.config.StringPropertyReplacementTest

/*
* JBoss, Home of Professional Open Source
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.cache.config;


import static org.testng.AssertJUnit.assertEquals;
import static org.testng.AssertJUnit.assertFalse;
import static org.testng.AssertJUnit.assertTrue;

import org.jboss.cache.config.BuddyReplicationConfig.BuddyLocatorConfig;
import org.jboss.cache.config.CacheLoaderConfig.IndividualCacheLoaderConfig;
import org.jboss.cache.config.Configuration.CacheMode;
import org.jboss.cache.config.Configuration.NodeLockingScheme;
import org.jboss.cache.eviction.LRUConfiguration;
import org.jboss.cache.eviction.LRUPolicy;
import org.jboss.cache.factories.XmlConfigurationParser;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

/**
* Tests that string property replacement works properly when parsing
* a config file.  JBCACHE-1218
*
* @author Brian Stansberry
*/
@Test(groups = {"functional"})
public class StringPropertyReplacementTest
{
   public static final String STRING_REPLACED_FILE = "META-INF/conf-test/string-property-replaced-service.xml";
  
   private static final String PROP_BASE = "test.property.";
   private static final String CACHE_MODE_PROP = PROP_BASE + "CacheMode";
   private static final String SYNC_COMMIT_PROP = PROP_BASE + "SyncCommitPhase";
   private static final String NUM_BUDDIES_PROP = PROP_BASE + "BuddyReplicationConfig.numBuddies";
   private static final String MAX_NODES_PROP = PROP_BASE + "EvictionPolicyConfig.maxNodes";
   private static final String BUDDY_POOL_PROP = PROP_BASE + "BuddyReplicationConfig.buddyPoolName";
  
   private String cacheMode;
   private String numBuddies;
   private String syncCommitPhase;
   private String maxNodes;
   private String buddyPoolName;
  
   @BeforeMethod(alwaysRun = true)
   public void setUp() throws Exception
   {
      cacheMode = System.getProperty(CACHE_MODE_PROP);
      numBuddies = System.getProperty(NUM_BUDDIES_PROP);
      syncCommitPhase = System.getProperty(SYNC_COMMIT_PROP);
      maxNodes = System.getProperty(MAX_NODES_PROP);
      buddyPoolName = System.getProperty(BUDDY_POOL_PROP);
   }
  
   @AfterMethod(alwaysRun = true)
   public void tearDown() throws Exception
   {
      if (cacheMode == null)
         System.clearProperty(CACHE_MODE_PROP);
      else
         System.setProperty(CACHE_MODE_PROP, cacheMode);

      if (numBuddies == null)
         System.clearProperty(NUM_BUDDIES_PROP);
      else
         System.setProperty(NUM_BUDDIES_PROP, numBuddies);

      if (syncCommitPhase == null)
         System.clearProperty(SYNC_COMMIT_PROP);
      else
         System.setProperty(SYNC_COMMIT_PROP, syncCommitPhase);

      if (maxNodes == null)
         System.clearProperty(MAX_NODES_PROP);
      else
         System.setProperty(MAX_NODES_PROP, maxNodes);

      if (buddyPoolName == null)
         System.clearProperty(BUDDY_POOL_PROP);
      else
         System.setProperty(BUDDY_POOL_PROP, buddyPoolName);     
   }
  
   public void testStringPropertyReplacement() throws Exception
   {
      System.setProperty(CACHE_MODE_PROP, "REPL_SYNC");
      System.setProperty(NUM_BUDDIES_PROP, "3");
      System.setProperty(SYNC_COMMIT_PROP, "false");
      System.setProperty(MAX_NODES_PROP, "1000");
      System.setProperty(BUDDY_POOL_PROP, "replaced");
     
      Configuration cfg = new XmlConfigurationParser().parseFile(STRING_REPLACED_FILE);
     
      assertEquals(NodeLockingScheme.OPTIMISTIC, cfg.getNodeLockingScheme());
      assertEquals(CacheMode.REPL_SYNC, cfg.getCacheMode());
      assertFalse(cfg.isSyncCommitPhase());
      assertTrue(cfg.isSyncRollbackPhase());
      assertEquals(15000, cfg.getLockAcquisitionTimeout());
      String clusterCfg = cfg.getClusterConfig();
      assertTrue(clusterCfg == null || clusterCfg.length() == 0);
     
      EvictionConfig ec = cfg.getEvictionConfig();
      assertEquals(LRUPolicy.class.getName(), ec.getDefaultEvictionPolicyClass());
      EvictionRegionConfig erc = ec.getEvictionRegionConfigs().get(0);
      LRUConfiguration epc = (LRUConfiguration) erc.getEvictionPolicyConfig();
      assertEquals(1000, epc.getMaxNodes());
     
      CacheLoaderConfig clc = cfg.getCacheLoaderConfig();
      IndividualCacheLoaderConfig iclc = clc.getFirstCacheLoaderConfig();
      assertEquals(System.getProperty("java.io.tmpdir"), iclc.getProperties().get("location"));
     
      BuddyReplicationConfig brc = cfg.getBuddyReplicationConfig();
      assertTrue(brc.isEnabled());
      assertEquals("replaced", brc.getBuddyPoolName());
      BuddyLocatorConfig blc = brc.getBuddyLocatorConfig();
      assertEquals("3", blc.getBuddyLocatorProperties().get("numBuddies"));
   }

}
TOP

Related Classes of org.jboss.cache.config.StringPropertyReplacementTest

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.