/* * JBoss, Home of Professional Open Source * Copyright 2011 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.locking; import org.infinispan.test.SingleCacheManagerTest; import org.infinispan.transaction.tm.DummyTransaction; import org.infinispan.transaction.tm.DummyTransactionManager; import org.infinispan.transaction.tm.DummyXid; import javax.transaction.SystemException; import javax.transaction.xa.XAException; import javax.transaction.xa.Xid; import java.util.Collections; import java.util.Map; /** * @author Mircea Markus * @since 5.1 */ public abstract class AbstractLocalTest extends SingleCacheManagerTest { public void testPut() throws Exception { tm().begin(); cache.put("k", "v"); assertLocking(); } public void testRemove() throws Exception { tm().begin(); cache.remove("k"); assertLocking(); } public void testReplace() throws Exception { cache.put("k", "initial"); tm().begin(); cache.replace("k", "v"); assertLocking(); } public void testClear() throws Exception { cache.put("k", "v"); tm().begin(); cache.clear(); assertLocking(); } public void testPutAll() throws Exception { Map m = Collections.singletonMap("k", "v"); tm().begin(); cache.putAll(m); assertLocking(); } protected abstract void assertLocking(); protected void commit() { DummyTransactionManager dtm = (DummyTransactionManager) tm(); try { dtm.firstEnlistedResource().commit(getXid(), true); } catch (Throwable e) { throw new RuntimeException(e); } } protected void prepare() { DummyTransactionManager dtm = (DummyTransactionManager) tm(); try { dtm.firstEnlistedResource().prepare(getXid()); } catch (Throwable e) { throw new RuntimeException(e); } } private Xid getXid() throws SystemException { Xid xid;DummyTransaction dummyTransaction = (DummyTransaction) tm().getTransaction(); xid = dummyTransaction.getXid(); return xid; } }