/* * 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.lock.singlelock.pessimistic; import org.infinispan.config.Configuration; import org.infinispan.lock.singlelock.AbstractInitiatorCrashTest; import org.infinispan.test.AbstractInfinispanTest; import org.infinispan.test.fwk.CleanupAfterMethod; import org.infinispan.transaction.LockingMode; import org.testng.annotations.Test; /** * @author Mircea Markus * @since 5.1 */ @Test(groups = "functional", testName = "lock.singlelock.pessimistic.InitiatorCrashPessimisticTest") @CleanupAfterMethod public class InitiatorCrashPessimisticTest extends AbstractInitiatorCrashTest { public InitiatorCrashPessimisticTest() { super(Configuration.CacheMode.DIST_SYNC, LockingMode.PESSIMISTIC, false); } public void testInitiatorNodeCrashesBeforePrepare2() throws Exception { Object k0 = getKeyForCache(0); Object k1 = getKeyForCache(1); Object k2 = getKeyForCache(2); tm(1).begin(); cache(1).put(k0, "v0"); cache(1).put(k1, "v1"); cache(1).put(k2, "v2"); assertLocked(cache(0), k0); assertNotLocked(cache(1), k0); assertNotLocked(cache(2), k0); assertNotLocked(cache(0), k1); assertLocked(cache(1), k1); assertNotLocked(cache(2), k1); assertNotLocked(cache(0), k2); assertNotLocked(cache(1), k2); assertLocked(cache(2), k2); assert checkTxCount(0, 0, 1); assert checkTxCount(1, 1, 0); assert checkTxCount(2, 0, 1); killMember(1); cacheManagers.remove(1); assert caches().size() == 2; assertNotLocked(k0); assertNotLocked(k1); assertNotLocked(k2); eventually(new AbstractInfinispanTest.Condition() { @Override public boolean isSatisfied() throws Exception { return checkTxCount(0, 0, 0) && checkTxCount(1, 0, 0); } }); } }