package org.infinispan.tx; import static org.infinispan.test.Exceptions.expectException; import javax.transaction.RollbackException; import javax.transaction.TransactionManager; import org.infinispan.commons.CacheException; 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", testName = "tx.MarkAsRollbackTest") public class MarkAsRollbackTest extends SingleCacheManagerTest { @Override protected EmbeddedCacheManager createCacheManager() throws Exception { EmbeddedCacheManager cm = TestCacheManagerFactory.createCacheManager(getDefaultStandaloneCacheConfig(true)); cache = cm.getCache(); return cm; } public void testMarkAsRollbackAfterMods() throws Exception { TransactionManager tm = TestingUtil.getTransactionManager(cache); assert tm != null; tm.begin(); cache.put("k", "v"); assert cache.get("k").equals("v"); tm.setRollbackOnly(); expectException(RollbackException.class, () -> tm.commit()); assert tm.getTransaction() == null : "There should be no transaction in scope anymore!"; assert cache.get("k") == null : "Expected a null but was " + cache.get("k"); } public void testMarkAsRollbackBeforeMods() throws Exception { TransactionManager tm = TestingUtil.getTransactionManager(cache); assert tm != null; tm.begin(); tm.setRollbackOnly(); expectException(CacheException.class, IllegalStateException.class, () -> cache.put("k", "v")); expectException(RollbackException.class, () -> tm.commit()); assert tm.getTransaction() == null : "There should be no transaction in scope anymore!"; assert cache.get("k") == null : "Expected a null but was " + cache.get("k"); } }