/* * 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.CacheContainer; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.test.MultipleCacheManagersTest; import org.infinispan.test.TestingUtil; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.infinispan.transaction.TransactionMode; import org.infinispan.util.logging.Log; import org.infinispan.util.logging.LogFactory; import org.testng.annotations.Test; import javax.transaction.TransactionManager; /** * Test for: https://jira.jboss.org/jira/browse/ISPN-149. * * @author Mircea.Markus@jboss.com */ @Test(testName = "tx.LargeTransactionTest", groups = "functional") public class LargeTransactionTest extends MultipleCacheManagersTest { private static final Log log = LogFactory.getLog(LargeTransactionTest.class); protected void createCacheManagers() throws Throwable { Configuration c = new Configuration(); c.setInvocationBatchingEnabled(true); c.setCacheMode(Configuration.CacheMode.REPL_SYNC); c.setSyncReplTimeout(30000); c.setLockAcquisitionTimeout(60000); c.setSyncCommitPhase(true); c.setSyncRollbackPhase(true); c.setUseLockStriping(false); c.fluent().transaction().transactionMode(TransactionMode.TRANSACTIONAL); EmbeddedCacheManager container = TestCacheManagerFactory.createClusteredCacheManager(c); container.start(); registerCacheManager(container); container.startCaches(CacheContainer.DEFAULT_CACHE_NAME, "TestCache"); Cache cache1 = container.getCache("TestCache"); assert cache1.getConfiguration().getCacheMode().equals(Configuration.CacheMode.REPL_SYNC); cache1.start(); container = TestCacheManagerFactory.createClusteredCacheManager(c); container.start(); registerCacheManager(container); container.startCaches(CacheContainer.DEFAULT_CACHE_NAME, "TestCache"); Cache cache2 = container.getCache("TestCache"); assert cache2.getConfiguration().getCacheMode().equals(Configuration.CacheMode.REPL_SYNC); } public void testLargeTx() throws Exception { Cache cache1 = cache(0, "TestCache"); Cache cache2 = cache(1, "TestCache"); TransactionManager tm = TestingUtil.getTransactionManager(cache1); tm.begin(); for (int i = 0; i < 200; i++) cache1.put("key" + i, "value" + i); log.trace("___________ before commit"); tm.commit(); for (int i = 0; i < 200; i++) { assert cache2.get("key" + i).equals("value"+i); } } public void testSinglePutInTx() throws Exception { Cache cache1 = cache(0, "TestCache"); Cache cache2 = cache(1, "TestCache"); TransactionManager tm = TestingUtil.getTransactionManager(cache1); tm.begin(); cache1.put("key", "val"); log.trace("___________ before commit"); tm.commit(); assert cache2.get("key").equals("val"); } public void testSimplePutNoTx() { Cache cache1 = cache(0, "TestCache"); Cache cache2 = cache(1, "TestCache"); cache1.put("key", "val"); assert cache2.get("key").equals("val"); } }