Package org.jboss.cache.loader

Source Code of org.jboss.cache.loader.SharedCacheLoaderTest

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

import org.jboss.cache.CacheSPI;
import org.jboss.cache.DefaultCacheFactory;
import org.jboss.cache.interceptors.CacheStoreInterceptor;
import org.jboss.cache.interceptors.Interceptor;
import static org.testng.AssertJUnit.assertEquals;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

import java.util.Iterator;

/**
* See http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3919374#3919374
*
* @author <a href="mailto:manik@jboss.org">Manik Surtani (manik@jboss.org)</a>
*/
@Test(groups = "functional")
public class SharedCacheLoaderTest extends AbstractCacheLoaderTestBase
{
   private CacheSPI<Object, Object> cache1, cache2;
   private DummyCountingCacheLoader dummyCacheLoader;

   @BeforeMethod(alwaysRun = true)
   public void setUp() throws Exception
   {
      if (cache1 != null || cache2 != null) tearDown();

      // set up 2 instances of CacheImpl with shared CacheLoaders.
      cache1 = (CacheSPI<Object, Object>) new DefaultCacheFactory<Object, Object>().createCache(false);
      cache2 = (CacheSPI<Object, Object>) new DefaultCacheFactory<Object, Object>().createCache(false);

      cache1.getConfiguration().setCacheMode("REPL_SYNC");
      cache2.getConfiguration().setCacheMode("REPL_SYNC");

      cache1.getConfiguration().setCacheLoaderConfig(getSingleCacheLoaderConfig("", DummyCountingCacheLoader.class.getName(), "", false, false, true));
      cache2.getConfiguration().setCacheLoaderConfig(getSingleCacheLoaderConfig("", DummyCountingCacheLoader.class.getName(), "", false, false, true));

      cache1.start();
      cache2.start();

      dummyCacheLoader = new DummyCountingCacheLoader(); // statistics are stored statically so this is safe.
      dummyCacheLoader.scrubStats();
   }

   protected CacheStoreInterceptor findCacheStoreInterceptor(CacheSPI cache)
   {
      Iterator ints = cache.getInterceptorChain().iterator();
      CacheStoreInterceptor csi = null;
      while (ints.hasNext())
      {
         Interceptor i = (Interceptor) ints.next();
         if (i instanceof CacheStoreInterceptor)
         {
            csi = (CacheStoreInterceptor) i;
            break;
         }
      }
      return csi;
   }

   @AfterMethod(alwaysRun = true)
   protected void tearDown()
   {
      if (cache1 != null) cache1.stop();
      if (cache2 != null) cache2.stop();
      cache1 = null;
      cache2 = null;
   }

   public void testReplicationWithSharedCL()
   {
      cache1.put("/test", "one", "two");

      // should have replicated
      assertEquals("two", cache1.get("/test", "one"));
      assertEquals("two", cache2.get("/test", "one"));

      // only a single put() should have happened on the cache loader though.
      assertEquals(1, dummyCacheLoader.getPutCount());
   }
}
TOP

Related Classes of org.jboss.cache.loader.SharedCacheLoaderTest

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.