package org.infinispan.tx; import javax.transaction.Transaction; import javax.transaction.TransactionManager; import org.infinispan.Cache; import org.infinispan.configuration.cache.ConfigurationBuilder; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.test.SingleCacheManagerTest; import org.infinispan.test.TestingUtil; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.testng.annotations.Test; @Test(groups = "functional", sequential = true, testName = "tx.TransactionsSpanningCaches") public class TransactionsSpanningCaches extends SingleCacheManagerTest { @Override protected EmbeddedCacheManager createCacheManager() throws Exception { ConfigurationBuilder defaultCacheConfig = getDefaultStandaloneCacheConfig(true); amendConfig(defaultCacheConfig); EmbeddedCacheManager cm = TestCacheManagerFactory.createCacheManager(defaultCacheConfig); cm.defineConfiguration("c1", cm.getCache().getCacheConfiguration()); cm.defineConfiguration("c2", cm.getCache().getCacheConfiguration()); return cm; } protected void amendConfig(ConfigurationBuilder defaultCacheConfig) { //ignore } public void testCommitSpanningCaches() throws Exception { Cache c1 = cacheManager.getCache("c1"); Cache c2 = cacheManager.getCache("c2"); assert c1.isEmpty(); assert c2.isEmpty(); c1.put("c1key", "c1value"); c2.put("c2key", "c2value"); assert !c1.isEmpty(); assert c1.size() == 1; assert c1.get("c1key").equals("c1value"); assert !c2.isEmpty(); assert c2.size() == 1; assert c2.get("c2key").equals("c2value"); TransactionManager tm = TestingUtil.getTransactionManager(c1); tm.begin(); c1.put("c1key", "c1value_new"); c2.put("c2key", "c2value_new"); assert c1.get("c1key").equals("c1value_new"); assert c2.get("c2key").equals("c2value_new"); Transaction tx = tm.suspend(); assert c1.get("c1key").equals("c1value"); assert c2.get("c2key").equals("c2value"); tm.resume(tx); tm.commit(); assert c1.get("c1key").equals("c1value_new"); assert c2.get("c2key").equals("c2value_new"); } public void testRollbackSpanningCaches() throws Exception { Cache c1 = cacheManager.getCache("c1"); Cache c2 = cacheManager.getCache("c2"); assert c1.isEmpty(); assert c2.isEmpty(); c1.put("c1key", "c1value"); c2.put("c2key", "c2value"); assert !c1.isEmpty(); assert c1.size() == 1; assert c1.get("c1key").equals("c1value"); assert !c2.isEmpty(); assert c2.size() == 1; assert c2.get("c2key").equals("c2value"); TransactionManager tm = TestingUtil.getTransactionManager(c1); tm.begin(); c1.put("c1key", "c1value_new"); c2.put("c2key", "c2value_new"); assert c1.get("c1key").equals("c1value_new"); assert c2.get("c2key").equals("c2value_new"); Transaction tx = tm.suspend(); assert c1.get("c1key").equals("c1value"); assert c2.get("c2key").equals("c2value"); tm.resume(tx); tm.rollback(); assert c1.get("c1key").equals("c1value"); assert c2.get("c2key").equals("c2value"); } }