/* * JBoss, Home of Professional Open Source * Copyright 2009 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.tx; import org.infinispan.Cache; import org.infinispan.config.Configuration; 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; import javax.transaction.Transaction; import javax.transaction.TransactionManager; @Test(groups = "functional", sequential = true, testName = "tx.TransactionsSpanningCaches") public class TransactionsSpanningCaches extends SingleCacheManagerTest { protected EmbeddedCacheManager createCacheManager() throws Exception { Configuration defaultCacheConfig = getDefaultStandaloneConfig(true); amendConfig(defaultCacheConfig); EmbeddedCacheManager cm = TestCacheManagerFactory.createCacheManager(defaultCacheConfig); cm.defineConfiguration("c1", cm.getCache().getConfiguration()); cm.defineConfiguration("c2", cm.getCache().getConfiguration()); return cm; } protected void amendConfig(Configuration 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"); } }