/* * JBoss, Home of Professional Open Source * Copyright 2010 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt 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.infinispan.eviction; import org.infinispan.config.Configuration; import org.infinispan.config.GlobalConfiguration; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.test.SingleCacheManagerTest; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.testng.annotations.Test; import java.lang.management.ManagementFactory; import java.lang.management.ThreadInfo; import java.lang.management.ThreadMXBean; /** * Tests eviction thread counts under several distinct circumstances. * * @author Galder ZamarreƱo * @since 4.2 */ @Test(groups = "functional", testName = "eviction.EvictionThreadCountTest") public class EvictionThreadCountTest extends SingleCacheManagerTest { private static String EVICT_THREAD_NAME_PREFIX = EvictionThreadCountTest.class.getSimpleName() + "-thread"; @Override protected EmbeddedCacheManager createCacheManager() throws Exception { GlobalConfiguration globalCfg = new GlobalConfiguration().fluent() .evictionScheduledExecutor() .addProperty("threadNamePrefix", EVICT_THREAD_NAME_PREFIX) .build(); return TestCacheManagerFactory.createCacheManager(globalCfg); } public void testDefineMultipleCachesWithEviction() { for (int i = 0; i < 50; i++) { Configuration cfg = new Configuration().fluent() .eviction().strategy(EvictionStrategy.LIRS).maxEntries(128) // 128 max entries .expiration().wakeUpInterval(100L) .locking().useLockStriping(false) // to minimize chances of deadlock in the unit test .build(); String cacheName = Integer.toString(i); cacheManager.defineConfiguration(cacheName, cfg); cacheManager.getCache(cacheName); } ThreadMXBean threadMBean = ManagementFactory.getThreadMXBean(); ThreadInfo[] threadInfos = threadMBean.dumpAllThreads(false, false); String pattern = "Scheduled-" + EVICT_THREAD_NAME_PREFIX; int evictionThreadCount = 0; for (ThreadInfo threadInfo : threadInfos) { if (threadInfo.getThreadName().startsWith(pattern)) evictionThreadCount++; } assert evictionThreadCount == 1 : "Thread should only be one eviction thread with pattern '" + pattern + "', instead there were " + evictionThreadCount; } }