/* * 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.Cache; import org.infinispan.affinity.KeyAffinityService; import org.infinispan.affinity.KeyAffinityServiceFactory; import org.infinispan.affinity.KeyGenerator; import org.infinispan.client.hotrod.VersionedValue; import org.infinispan.client.hotrod.impl.transport.tcp.TcpTransport; import org.infinispan.client.hotrod.impl.transport.tcp.TcpTransportFactory; import org.infinispan.config.Configuration; import org.infinispan.marshall.Marshaller; import org.infinispan.marshall.jboss.JBossMarshaller; import org.infinispan.remoting.transport.Address; import org.infinispan.test.TestingUtil; import org.testng.annotations.Test; import java.io.IOException; import java.net.InetSocketAddress; import java.util.Random; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import static org.testng.Assert.assertEquals; /** * @author Mircea.Markus@jboss.com * @since 4.1 */ @Test(testName = "hotrod.retry.DistributionRetryTest", groups = "functional") public class DistributionRetryTest extends AbstractRetryTest { @Override protected Configuration getCacheConfig() { Configuration config = getDefaultClusteredConfig(Configuration.CacheMode.DIST_SYNC); config.setNumOwners(1); return config; } public void testGet() throws Exception { log.info("Starting actual test"); Object key = generateKeyAndShutdownServer(); //now make sure that next call won't fail resetStats(); assertEquals(remoteCache.get(key), "v"); } public void testPut() throws Exception { Object key = generateKeyAndShutdownServer(); log.info("Here it starts"); assertEquals(remoteCache.put(key, "v0"), "v"); } public void testRemove() throws Exception { Object key = generateKeyAndShutdownServer(); assertEquals("v", remoteCache.remove(key)); } public void testContains() throws Exception { Object key = generateKeyAndShutdownServer(); resetStats(); assertEquals(true, remoteCache.containsKey(key)); } public void testGetWithVersion() throws Exception { Object key = generateKeyAndShutdownServer(); resetStats(); VersionedValue value = remoteCache.getVersioned(key); assertEquals("v", value.getValue()); } public void testPutIfAbsent() throws Exception { Object key = generateKeyAndShutdownServer(); assertEquals(null, remoteCache.putIfAbsent("noSuchKey", "someValue")); assertEquals("someValue", remoteCache.get("noSuchKey")); } public void testReplace() throws Exception { Object key = generateKeyAndShutdownServer(); assertEquals("v", remoteCache.replace(key, "v2")); } public void testReplaceIfUnmodified() throws Exception { Object key = generateKeyAndShutdownServer(); assertEquals(false, remoteCache.replaceWithVersion(key, "v2", 12)); } public void testRemoveIfUnmodified() throws Exception { Object key = generateKeyAndShutdownServer(); resetStats(); assertEquals(false, remoteCache.removeWithVersion(key, 12)); } public void testClear() throws Exception { Object key = generateKeyAndShutdownServer(); resetStats(); remoteCache.clear(); assertEquals(false, remoteCache.containsKey(key)); } private Object generateKeyAndShutdownServer() throws IOException, ClassNotFoundException, InterruptedException { resetStats(); Cache<Object,Object> cache = manager(1).getCache(); ExecutorService ex = Executors.newSingleThreadExecutor(); KeyAffinityService kaf = KeyAffinityServiceFactory.newKeyAffinityService(cache, ex, new ByteKeyGenerator(), 2, true); Address address = cache.getAdvancedCache().getRpcManager().getTransport().getAddress(); byte[] keyBytes = (byte[]) kaf.getKeyForAddress(address); String key = ByteKeyGenerator.getStringObject(keyBytes); ex.shutdownNow(); kaf.stop(); remoteCache.put(key, "v"); assertOnlyServerHit(getAddress(hotRodServer2)); TcpTransportFactory tcpTp = (TcpTransportFactory) TestingUtil.extractField(remoteCacheManager, "transportFactory"); Marshaller sm = new JBossMarshaller(); TcpTransport transport = (TcpTransport) tcpTp.getTransport(sm.objectToByteBuffer(key, 64)); try { assertEquals(transport.getServerAddress(), new InetSocketAddress("localhost", hotRodServer2.getPort())); } finally { tcpTp.releaseTransport(transport); } log.info("About to stop Hot Rod server 2"); hotRodServer2.stop(); return key; } public static class ByteKeyGenerator implements KeyGenerator { Random r = new Random(); @Override public Object getKey() { String result = String.valueOf(r.nextLong()); Marshaller sm = new JBossMarshaller(); try { return sm.objectToByteBuffer(result, 64); } catch (IOException e) { throw new RuntimeException(e); } catch (InterruptedException e) { throw new RuntimeException(e); } } public static String getStringObject(byte[] bytes) { try { Marshaller sm = new JBossMarshaller(); return (String) sm.objectFromByteBuffer(bytes); } catch (Exception e) { throw new RuntimeException(e); } } } }