package org.infinispan.affinity.impl; import static org.testng.AssertJUnit.assertEquals; import java.util.List; import java.util.Map; import java.util.concurrent.BlockingQueue; import org.infinispan.Cache; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.remoting.transport.Address; import org.infinispan.test.TestingUtil; import org.infinispan.util.logging.Log; import org.infinispan.util.logging.LogFactory; /** * @author Mircea.Markus@jboss.com * @since 4.1 */ public abstract class BaseFilterKeyAffinityServiceTest extends BaseKeyAffinityServiceTest { private static final Log log = LogFactory.getLog(BaseFilterKeyAffinityServiceTest.class); protected EmbeddedCacheManager cacheManager; @Override protected void createCacheManagers() throws Throwable { INIT_CLUSTER_SIZE = 2; super.createCacheManagers(); createService(); } protected abstract void createService(); protected abstract List<Address> getAddresses() ; protected void testSingleKey() throws InterruptedException { Map<Address, BlockingQueue<Object>> blockingQueueMap = keyAffinityService.getAddress2KeysMapping(); assertEquals(getAddresses().size(), blockingQueueMap.keySet().size()); assertEventualFullCapacity(getAddresses()); } protected void testAddNewServer() throws Exception { EmbeddedCacheManager cm = addClusterEnabledCacheManager(); cm.defineConfiguration(cacheName, configuration.build()); Cache<Object, String> cache = cm.getCache(cacheName); caches.add(cache); waitForClusterToResize(); assertUnaffected(); } protected void testRemoveServers() throws InterruptedException { log.info("** before calling stop"); caches.get(2).getCacheManager().stop(); caches.remove(2); waitForClusterToResize(); assertEquals(2, caches.size()); assertUnaffected(); } protected void testShutdownOwnManager() { log.info("**** here it starts"); caches.get(0).getCacheManager().stop(); caches.remove(0); assertEquals(1, caches.size()); TestingUtil.blockUntilViewsReceived(10000, false, caches.toArray(new Cache[0])); assertEquals(1, topology().size()); eventually(new Condition() { @Override public boolean isSatisfied() throws Exception { return !keyAffinityService.isStarted(); } }); } private void assertUnaffected() throws InterruptedException { eventually(new Condition() { @Override public boolean isSatisfied() throws Exception { return keyAffinityService.getAddress2KeysMapping().keySet().size() == getAddresses().size(); } }); assertEventualFullCapacity(getAddresses()); assertKeyAffinityCorrectness(getAddresses()); } }