/* * 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.client.hotrod.retry; import org.infinispan.client.hotrod.HitsAwareCacheManagersTest; import org.infinispan.client.hotrod.RemoteCacheManager; import org.infinispan.client.hotrod.TestHelper; import org.infinispan.client.hotrod.impl.RemoteCacheImpl; import org.infinispan.client.hotrod.impl.transport.tcp.RoundRobinBalancingStrategy; import org.infinispan.client.hotrod.impl.transport.tcp.TcpTransportFactory; import org.infinispan.config.Configuration; import org.infinispan.lifecycle.ComponentStatus; import org.infinispan.manager.CacheContainer; import org.infinispan.server.hotrod.HotRodServer; import org.infinispan.test.TestingUtil; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.testng.annotations.AfterMethod; import java.util.Properties; /** * @author Mircea.Markus@jboss.com * @since 4.1 */ public abstract class AbstractRetryTest extends HitsAwareCacheManagersTest { protected HotRodServer hotRodServer1; protected HotRodServer hotRodServer2; protected HotRodServer hotRodServer3; RemoteCacheImpl remoteCache; protected RemoteCacheManager remoteCacheManager; protected TcpTransportFactory tcpConnectionFactory; protected Configuration config; protected RoundRobinBalancingStrategy strategy; public AbstractRetryTest() { cleanup = CleanupPhase.AFTER_METHOD; } @Override protected void assertSupportedConfig() { } @Override protected void createCacheManagers() throws Throwable { assert cleanupAfterMethod(); config = getCacheConfig(); CacheContainer cm1 = TestCacheManagerFactory.createClusteredCacheManager(config); CacheContainer cm2 = TestCacheManagerFactory.createClusteredCacheManager(config); CacheContainer cm3 = TestCacheManagerFactory.createClusteredCacheManager(config); registerCacheManager(cm1); registerCacheManager(cm2); registerCacheManager(cm3); hotRodServer1 = TestHelper.startHotRodServer(manager(0)); hrServ2CacheManager.put(getAddress(hotRodServer1), cm1); hotRodServer2 = TestHelper.startHotRodServer(manager(1)); hrServ2CacheManager.put(getAddress(hotRodServer2), cm2); hotRodServer3 = TestHelper.startHotRodServer(manager(2)); hrServ2CacheManager.put(getAddress(hotRodServer3), cm3); waitForClusterToForm(); Properties clientConfig = new Properties(); clientConfig.put("infinispan.client.hotrod.server_list", "localhost:" + hotRodServer2.getPort()); clientConfig.put("infinispan.client.hotrod.force_return_values", "true"); clientConfig.put("maxActive",1); //this ensures that only one server is active at a time remoteCacheManager = new RemoteCacheManager(clientConfig); remoteCache = (RemoteCacheImpl) remoteCacheManager.getCache(); tcpConnectionFactory = (TcpTransportFactory) TestingUtil.extractField(remoteCacheManager, "transportFactory"); strategy = (RoundRobinBalancingStrategy) tcpConnectionFactory.getBalancer(); addInterceptors(); assert super.cacheManagers.size() == 3; } @AfterMethod(alwaysRun = true) @Override protected void clearContent() throws Throwable { // Since cleanup happens after method, // make sure the rest of components are also cleaned up. try { if (remoteCache != null) remoteCache.stop(); } finally { try { if (remoteCacheManager != null) remoteCacheManager.stop(); } finally { try { if (hotRodServer1 != null) hotRodServer1.stop(); } finally { try { if (hotRodServer2 != null) hotRodServer2.stop(); } finally { try { if (hotRodServer3 != null) hotRodServer3.stop(); } finally { super.clearContent(); // Now stop the cache managers } } } } } } protected abstract Configuration getCacheConfig(); }