Package org.jboss.cache.eviction

Source Code of org.jboss.cache.eviction.ExpirationPolicyTest

/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.cache.eviction;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jboss.cache.CacheSPI;
import org.jboss.cache.Fqn;
import org.jboss.cache.Region;
import org.jboss.cache.config.Configuration;
import org.jboss.cache.config.EvictionConfig;
import org.jboss.cache.config.EvictionRegionConfig;
import org.jboss.cache.util.TestingUtil;
import org.jboss.cache.util.internals.EvictionController;
import static org.testng.AssertJUnit.*;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import java.util.concurrent.TimeUnit;
import org.jboss.cache.UnitTestCacheFactory;

/**
* Unit tests for {@link org.jboss.cache.eviction.ExpirationAlgorithm}.
*
* @author Elias Ross
* @version $Revision: 6905 $
*/
@Test(groups = {"functional"}, sequential = true)
public class ExpirationPolicyTest extends EvictionTestsBase
{
   private static final Log log = LogFactory.getLog(ExpirationPolicyTest.class);

   private CacheSPI<Object, Object> cache;

   Fqn fqn1 = Fqn.fromString("/node/1");
   Fqn fqn2 = Fqn.fromString("/node/2");
   Fqn fqn3 = Fqn.fromString("/node/3");
   Fqn fqn4 = Fqn.fromString("/node/4");

   Long future;
   Long past;

   @BeforeMethod(alwaysRun = true)
   public void setUp() throws Exception
   {
      Configuration conf = new Configuration();
      ExpirationAlgorithmConfig eAC = new ExpirationAlgorithmConfig();
      EvictionRegionConfig eRC = new EvictionRegionConfig(Fqn.ROOT, eAC);
      EvictionConfig econf = new EvictionConfig(eRC);
      econf.setWakeupInterval(100);
      conf.setEvictionConfig(econf);
      cache = (CacheSPI<Object, Object>) new UnitTestCacheFactory<Object, Object>().createCache(conf, false);
      cache.start();

      future = System.currentTimeMillis() + 500;
      past = System.currentTimeMillis() - 200;
   }

   @AfterMethod(alwaysRun = true)
   public void tearDown() throws Exception
   {
      TestingUtil.killCaches(cache);
      cache = null;
   }

   public void testUpdateToFuture() throws Exception
   {
      try
      {
         log.info("update 1 from future to past");
         cache.put(fqn1, ExpirationAlgorithmConfig.EXPIRATION_KEY, future);
         TestingUtil.sleepThread(200);
         new EvictionController(cache).startEviction();
         assertNotNull(cache.getNode(fqn1));
         cache.put(fqn1, ExpirationAlgorithmConfig.EXPIRATION_KEY, future + 250);
         TestingUtil.sleepThread(500);
         new EvictionController(cache).startEviction();
         assertNotNull(cache.getNode(fqn1));
         TestingUtil.sleepThread(100);
         new EvictionController(cache).startEviction();
         assertNull(cache.getNode(fqn1));
      }
      finally
      {
         cache.removeNode(Fqn.ROOT);
      }
   }

   @Test(invocationCount = 10)
   public void testEviction() throws Exception
   {
      cache.put(fqn1, ExpirationAlgorithmConfig.EXPIRATION_KEY, future);
      cache.put(fqn2, ExpirationAlgorithmConfig.EXPIRATION_KEY, past);
      cache.put(fqn3, ExpirationAlgorithmConfig.EXPIRATION_KEY, future);
      cache.put(fqn4, "foo", "bar");

      waitForEviction(cache, 30, TimeUnit.SECONDS, fqn2);
      assertNotNull(cache.getNode(fqn1));
      assertNull(cache.getNode(fqn2));
      assertNotNull(cache.getNode(fqn3));
      assertNotNull(cache.getNode(fqn4));

      log.info("should remove 1 and 3 now");
      waitForEviction(cache, 30, TimeUnit.SECONDS, fqn1, fqn3);
      assertNull(cache.getNode(fqn1));
      assertNull(cache.getNode(fqn3));
   }

   public void testUpdate() throws Exception
   {
      try
      {
         log.info("update 1 from future to past");
         cache.put(fqn1, ExpirationAlgorithmConfig.EXPIRATION_KEY, future);
         new EvictionController(cache).startEviction();
         assertNotNull(cache.getNode(fqn1));
         cache.put(fqn1, ExpirationAlgorithmConfig.EXPIRATION_KEY, past);
         new EvictionController(cache).startEviction();
         assertNull(cache.getNode(fqn1));
      }
      finally
      {
         cache.removeNode(Fqn.ROOT);
      }
   }

   public void testMaxNodes() throws Exception
   {
      log.info("set max nodes to 2, expire soonest to expire first");
      EvictionRegionConfig regionConfig = cache.getRegionManager().getAllRegions(Region.Type.EVICTION).get(0).getEvictionRegionConfig();
      ExpirationAlgorithmConfig ec = (ExpirationAlgorithmConfig) regionConfig.getEvictionAlgorithmConfig();
      ec.setMaxNodes(2);
      Long future2 = future + 500;
      cache.put(fqn1, ExpirationAlgorithmConfig.EXPIRATION_KEY, future2);
      cache.put(fqn2, ExpirationAlgorithmConfig.EXPIRATION_KEY, future2);
      cache.put(fqn3, ExpirationAlgorithmConfig.EXPIRATION_KEY, future);
      cache.put(fqn4, ExpirationAlgorithmConfig.EXPIRATION_KEY, past);
      assertEquals(5, cache.getNumberOfNodes());
      assert waitForEviction(cache, 30, TimeUnit.SECONDS, fqn3) : "Eviction event not received!";
      assertNotNull(cache.getNode(fqn1));
      assertNotNull(cache.getNode(fqn2));
      assertNull(cache.getNode(fqn3));
      assertNull(cache.getNode(fqn4));
   }

}
TOP

Related Classes of org.jboss.cache.eviction.ExpirationPolicyTest

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.