package org.multiverse.stms.gamma.transactionalobjects.txnlong; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.multiverse.api.LockMode; import org.multiverse.api.TxnFactory; import org.multiverse.api.exceptions.DeadTxnException; import org.multiverse.api.exceptions.PreparedTxnException; import org.multiverse.api.exceptions.ReadWriteConflict; import org.multiverse.api.exceptions.TxnMandatoryException; import org.multiverse.api.functions.Functions; import org.multiverse.api.functions.LongFunction; import org.multiverse.stms.gamma.GammaStm; import org.multiverse.stms.gamma.transactionalobjects.GammaTxnLong; import org.multiverse.stms.gamma.transactionalobjects.Tranlocal; import org.multiverse.stms.gamma.transactions.GammaTxn; import org.multiverse.stms.gamma.transactions.GammaTxnFactory; import org.multiverse.stms.gamma.transactions.fat.FatFixedLengthGammaTxnFactory; import org.multiverse.stms.gamma.transactions.fat.FatMonoGammaTxnFactory; import org.multiverse.stms.gamma.transactions.fat.FatVariableLengthGammaTxnFactory; import java.util.Collection; import static java.util.Arrays.asList; import static org.junit.Assert.*; import static org.multiverse.TestUtils.*; import static org.multiverse.api.TxnThreadLocal.*; import static org.multiverse.stms.gamma.GammaTestUtils.*; @RunWith(Parameterized.class) public class GammaTxnLong_commute1Test { private final GammaTxnFactory transactionFactory; private final GammaStm stm; public GammaTxnLong_commute1Test(GammaTxnFactory transactionFactory) { this.transactionFactory = transactionFactory; this.stm = transactionFactory.getConfig().getStm(); } @Before public void setUp() { clearThreadLocalTxn(); } @Parameterized.Parameters public static Collection<TxnFactory[]> configs() { return asList( new TxnFactory[]{new FatVariableLengthGammaTxnFactory(new GammaStm())}, new TxnFactory[]{new FatFixedLengthGammaTxnFactory(new GammaStm())}, new TxnFactory[]{new FatMonoGammaTxnFactory(new GammaStm())} ); } @Test public void whenActiveTransactionAvailable() { GammaTxnLong ref = new GammaTxnLong(stm); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); LongFunction function = Functions.incLongFunction(1); ref.commute(function); Tranlocal commuting = tx.getRefTranlocal(ref); assertNotNull(commuting); assertTrue(commuting.isCommuting()); assertFalse(commuting.isRead()); assertSurplus(ref, 0); assertRefHasNoLocks(ref); assertEquals(0, commuting.long_value); assertIsActive(tx); assertSame(tx, getThreadLocalTxn()); tx.commit(); assertEquals(1, ref.atomicGet()); assertIsCommitted(tx); assertSurplus(ref, 0); assertRefHasNoLocks(ref); assertWriteBiased(ref); } @Test public void whenActiveTransactionAvailableAndNoChange() { GammaTxnLong ref = new GammaTxnLong(stm); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); LongFunction function = Functions.identityLongFunction(); ref.commute(function); Tranlocal commuting = tx.getRefTranlocal(ref); assertNotNull(commuting); assertTrue(commuting.isCommuting()); assertFalse(commuting.isRead()); assertSurplus(ref, 0); assertRefHasNoLocks(ref); assertEquals(0, commuting.long_value); assertIsActive(tx); assertSame(tx, getThreadLocalTxn()); tx.commit(); assertEquals(0, ref.atomicGet()); assertVersionAndValue(ref, version, 0); assertIsCommitted(tx); assertSurplus(ref, 0); assertRefHasNoLocks(ref); assertWriteBiased(ref); } @Test public void whenActiveTransactionAvailableAndNullFunction_thenNullPointerException() { GammaTxnLong ref = new GammaTxnLong(stm); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); try { ref.commute(null); fail(); } catch (NullPointerException expected) { } assertIsAborted(tx); assertSurplus(ref, 0); assertWriteBiased(ref); assertRefHasNoLocks(ref); assertVersionAndValue(ref, version, 0); } @Test public void whenNoTransactionAvailable_thenNoTransactionFoundException() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); LongFunction function = Functions.incLongFunction(1); try { ref.commute(function); fail(); } catch (TxnMandatoryException expected) { } assertSurplus(ref, 0); assertWriteBiased(ref); assertRefHasNoLocks(ref); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenCommittedTransactionAvailable_thenDeadTxnException() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); tx.commit(); LongFunction function = Functions.incLongFunction(1); try { ref.commute(function); fail(); } catch (DeadTxnException expected) { } assertIsCommitted(tx); assertSame(tx, getThreadLocalTxn()); assertSurplus(ref, 0); assertWriteBiased(ref); assertRefHasNoLocks(ref); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenAbortedTransactionAvailable_thenDeadTxnException() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); tx.abort(); LongFunction function = Functions.incLongFunction(1); try { ref.commute(function); fail(); } catch (DeadTxnException expected) { } assertIsAborted(tx); assertSame(tx, getThreadLocalTxn()); assertSurplus(ref, 0); assertWriteBiased(ref); assertRefHasNoLocks(ref); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenPreparedTransactionAvailable_thenPreparedTxnException() { GammaTxnLong ref = new GammaTxnLong(stm, 2); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); tx.prepare(); LongFunction function = Functions.incLongFunction(1); try { ref.commute(function); fail(); } catch (PreparedTxnException expected) { } assertIsAborted(tx); assertSame(tx, getThreadLocalTxn()); assertSurplus(ref, 0); assertWriteBiased(ref); assertRefHasNoLocks(ref); assertVersionAndValue(ref, version, 2); assertEquals(2, ref.atomicGet()); } @Test public void whenAlreadyEnsuredBySelf_thenNoCommute() { GammaTxnLong ref = new GammaTxnLong(stm, 2); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); ref.getLock().acquire(LockMode.Write); LongFunction function = Functions.incLongFunction(1); ref.commute(function); Tranlocal tranlocal = tx.getRefTranlocal(ref); assertNotNull(tranlocal); assertFalse(tranlocal.isCommuting()); assertEquals(3, tranlocal.long_value); assertIsActive(tx); assertRefHasWriteLock(ref, tx); assertSurplus(ref, 1); assertWriteBiased(ref); tx.commit(); assertSurplus(ref, 0); assertIsCommitted(tx); assertRefHasNoLocks(ref); assertSame(tx, getThreadLocalTxn()); assertEquals(3, ref.atomicGet()); } @Test public void whenAlreadyPrivatizedBySelf_thenNoCommute() { GammaTxnLong ref = new GammaTxnLong(stm, 2); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); ref.getLock().acquire(LockMode.Exclusive); LongFunction function = Functions.incLongFunction(1); ref.commute(function); Tranlocal tranlocal = tx.getRefTranlocal(ref); assertNotNull(tranlocal); assertFalse(tranlocal.isCommuting()); assertEquals(3, tranlocal.long_value); assertIsActive(tx); assertRefHasExclusiveLock(ref, tx); assertSurplus(ref, 1); assertWriteBiased(ref); tx.commit(); assertIsCommitted(tx); assertRefHasNoLocks(ref); assertSame(tx, getThreadLocalTxn()); assertEquals(3, ref.atomicGet()); assertSurplus(ref, 0); } @Test @Ignore public void whenReadLockAcquiredByOther() { } @Test public void whenWriteLockAcquiredByOther_thenCommuteSucceedsButCommitFails() { GammaTxnLong ref = new GammaTxnLong(stm, 2); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); GammaTxn otherTx = transactionFactory.newTxn(); ref.getLock().acquire(otherTx, LockMode.Write); LongFunction function = Functions.incLongFunction(1); ref.commute(function); Tranlocal tranlocal = tx.getRefTranlocal(ref); assertNotNull(tranlocal); assertTrue(tranlocal.isCommuting()); assertHasCommutingFunctions(tranlocal, function); assertIsActive(tx); assertRefHasWriteLock(ref, otherTx); assertSurplus(ref, 1); try { tx.commit(); fail(); } catch (ReadWriteConflict expected) { } assertIsAborted(tx); assertSame(tx, getThreadLocalTxn()); assertRefHasWriteLock(ref, otherTx); assertVersionAndValue(ref, version, 2); assertSurplus(ref, 1); } @Test public void whenExclusiveLockByOther_thenCommuteSucceedsButCommitFails() { GammaTxnLong ref = new GammaTxnLong(stm, 2); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); setThreadLocalTxn(tx); GammaTxn otherTx = transactionFactory.newTxn(); ref.getLock().acquire(otherTx, LockMode.Exclusive); LongFunction function = Functions.incLongFunction(1); ref.commute(function); Tranlocal tranlocal = tx.getRefTranlocal(ref); assertNotNull(tranlocal); assertTrue(tranlocal.isCommuting()); assertHasCommutingFunctions(tranlocal, function); assertIsActive(tx); assertRefHasExclusiveLock(ref, otherTx); assertSurplus(ref, 1); try { tx.commit(); fail(); } catch (ReadWriteConflict expected) { } assertIsAborted(tx); assertSame(tx, getThreadLocalTxn()); assertRefHasExclusiveLock(ref, otherTx); assertVersionAndValue(ref, version, 2); assertSurplus(ref, 1); } }