package org.infinispan.remoting; import static org.testng.AssertJUnit.assertEquals; import org.infinispan.configuration.cache.CacheMode; import org.infinispan.configuration.cache.ConfigurationBuilder; import org.infinispan.configuration.global.GlobalConfigurationBuilder; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.test.AbstractInfinispanTest; import org.infinispan.test.TestingUtil; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.infinispan.transaction.TransactionMode; import org.testng.annotations.Test; @Test (testName = "remoting.NonExistentCacheTest", groups = "functional") public class NonExistentCacheTest extends AbstractInfinispanTest { private EmbeddedCacheManager createCacheManager() { ConfigurationBuilder c = TestCacheManagerFactory.getDefaultCacheConfiguration(false); c.clustering().cacheMode(CacheMode.REPL_SYNC) .transaction().transactionMode(TransactionMode.NON_TRANSACTIONAL); GlobalConfigurationBuilder gc = GlobalConfigurationBuilder.defaultClusteredBuilder(); return TestCacheManagerFactory.createClusteredCacheManager(gc, c); } public void testPutWithNonExistentCache() { EmbeddedCacheManager cm1 = null, cm2 = null; try { cm1 = createCacheManager(); cm2 = createCacheManager(); cm1.getCache(); cm2.getCache(); cm1.getCache().put("k", "v"); assertEquals("v", cm1.getCache().get("k")); assertEquals("v", cm2.getCache().get("k")); cm1.defineConfiguration("newCache", cm1.getDefaultCacheConfiguration()); cm1.getCache("newCache").put("k", "v"); assertEquals("v", cm1.getCache("newCache").get("k")); } finally { TestingUtil.killCacheManagers(cm1, cm2); } } }