package org.multiverse.stms.gamma.transactionalobjects.txnlong; import org.junit.Before; import org.junit.Test; import org.multiverse.api.LockMode; import org.multiverse.api.exceptions.LockedException; import org.multiverse.stms.gamma.GammaStm; import org.multiverse.stms.gamma.GammaStmConfig; import org.multiverse.stms.gamma.transactionalobjects.GammaTxnLong; import org.multiverse.stms.gamma.transactions.GammaTxn; import static org.junit.Assert.*; import static org.multiverse.TestUtils.joinAll; import static org.multiverse.TestUtils.sleepMs; import static org.multiverse.api.TxnThreadLocal.*; import static org.multiverse.stms.gamma.GammaTestUtils.*; public class GammaTxnLong_atomicIncrementAndGetTest { private GammaStm stm; @Before public void setUp() { GammaStmConfig config = new GammaStmConfig(); config.maxRetries = 10; stm = new GammaStm(config); clearThreadLocalTxn(); } @Test public void whenSuccess() { int initialValue = 2; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); int amount = 10; long result = ref.atomicIncrementAndGet(amount); assertEquals(initialValue + amount, result); assertRefHasNoLocks(ref); assertSurplus(ref, 0); assertVersionAndValue(ref, initialVersion + 1, initialValue + amount); assertNull(getThreadLocalTxn()); } @Test public void whenActiveTransactionAvailable_thenIgnored() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = stm.newDefaultTxn(); setThreadLocalTxn(tx); ref.set(tx, 1000); long amount = 1; long result = ref.atomicIncrementAndGet(amount); assertEquals(initialValue + amount, result); assertRefHasNoLocks(ref); assertSame(tx, getThreadLocalTxn()); assertVersionAndValue(ref, initialVersion + 1, initialValue + amount); } @Test public void whenNoChange() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); long result = ref.atomicIncrementAndGet(0); assertEquals(initialValue, result); assertRefHasNoLocks(ref); assertSurplus(ref, 0); assertNull(getThreadLocalTxn()); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenPrivatizedByOther_thenLockedException() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn otherTx = stm.newDefaultTxn(); ref.getLock().acquire(otherTx, LockMode.Exclusive); try { ref.atomicIncrementAndGet(1); fail(); } catch (LockedException expected) { } assertSurplus(ref, 1); assertRefHasExclusiveLock(ref, otherTx); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenEnsuredByOtherAndChange_thenLockedException() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn otherTx = stm.newDefaultTxn(); ref.getLock().acquire(otherTx, LockMode.Write); try { ref.atomicIncrementAndGet(1); fail(); } catch (LockedException expected) { } assertSurplus(ref, 1); assertRefHasWriteLock(ref, otherTx); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenListenersAvailable() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); long newValue = initialValue + 1; TxnLongAwaitThread thread = new TxnLongAwaitThread(ref, newValue); thread.start(); sleepMs(500); ref.atomicIncrementAndGet(1); joinAll(thread); assertRefHasNoLocks(ref); assertVersionAndValue(ref, initialVersion + 1, newValue); } }