package org.infinispan.persistence.jdbc.stringbased; import static org.testng.AssertJUnit.assertEquals; import org.infinispan.Cache; import org.infinispan.configuration.cache.CacheMode; import org.infinispan.configuration.cache.ConfigurationBuilder; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.test.AbstractCacheTest; import org.infinispan.test.TestingUtil; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.testng.annotations.Test; /** * @author Mircea.Markus@jboss.com * @since 4.1 */ @Test(groups = "functional", testName = "persistence.jdbc.stringbased.NonStringKeyStateTransferTest") public class NonStringKeyStateTransferTest extends AbstractCacheTest { public void testReplicatedStateTransfer() { EmbeddedCacheManager cm1 = null, cm2 = null; try { ConfigurationBuilder conf1 = NonStringKeyPreloadTest.createCacheStoreConfig(TwoWayPersonKey2StringMapper.class.getName(), false, true); conf1.clustering().cacheMode(CacheMode.REPL_SYNC); cm1 = TestCacheManagerFactory.createClusteredCacheManager(conf1); Cache<Person, String> c1 = cm1.getCache(); Person mircea = new Person("markus", "mircea", 30); Person mircea2 = new Person("markus2", "mircea2", 30); c1.put(mircea, "mircea"); c1.put(mircea2, "mircea2"); ConfigurationBuilder conf2 = NonStringKeyPreloadTest.createCacheStoreConfig(TwoWayPersonKey2StringMapper.class.getName(), false, true); conf2.clustering().cacheMode(CacheMode.REPL_SYNC); cm2 = TestCacheManagerFactory.createClusteredCacheManager(conf2); Cache<Person, String> c2 = cm2.getCache(); assertEquals("mircea", c2.get(mircea)); assertEquals("mircea2", c2.get(mircea2)); c2.get(mircea2); } finally { TestingUtil.killCacheManagers(cm1, cm2); } } public void testDistributedStateTransfer() { EmbeddedCacheManager cm1 = null, cm2 = null; try { ConfigurationBuilder conf = NonStringKeyPreloadTest.createCacheStoreConfig(TwoWayPersonKey2StringMapper.class.getName(), false, false); conf.clustering().cacheMode(CacheMode.DIST_SYNC); cm1 = TestCacheManagerFactory.createClusteredCacheManager(conf); Cache<Person, String> c1 = cm1.getCache(); for (int i = 0; i < 100; i++) { Person mircea = new Person("markus" +i , "mircea"+i, 30); c1.put(mircea, "mircea"+i); } cm2 = TestCacheManagerFactory.createClusteredCacheManager(conf); Cache<Person, String> c2 = cm2.getCache(); assert c2.size() > 0; for (Object key: c2.getAdvancedCache().getDataContainer().keySet()) { assert key instanceof Person: "expected key to be person but obtained " + key; } } finally { TestingUtil.killCacheManagers(cm1, cm2); } } public void testDistributedAndNoTwoWay() { EmbeddedCacheManager cm1; ConfigurationBuilder conf = NonStringKeyPreloadTest.createCacheStoreConfig(TwoWayPersonKey2StringMapper.class.getName(), false, false); conf.clustering().cacheMode(CacheMode.DIST_SYNC); cm1 = TestCacheManagerFactory.createClusteredCacheManager(conf); try { cm1.getCache(); } finally { TestingUtil.killCacheManagers(cm1); } } }