package org.multiverse.stms.gamma.transactionalobjects.txnlong; import org.junit.Before; 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.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.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.mockito.Matchers.anyLong; import static org.mockito.Mockito.*; import static org.multiverse.TestUtils.*; import static org.multiverse.api.TxnThreadLocal.clearThreadLocalTxn; import static org.multiverse.api.TxnThreadLocal.getThreadLocalTxn; import static org.multiverse.stms.gamma.GammaTestUtils.*; @RunWith(Parameterized.class) public class GammaTxnLong_alterAndGet2Test { private final GammaTxnFactory transactionFactory; private final GammaStm stm; public GammaTxnLong_alterAndGet2Test(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 whenNullTransaction_thenNullPointerException() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); LongFunction function = mock(LongFunction.class); try { ref.alterAndGet(null, function); fail(); } catch (NullPointerException expected) { } verifyZeroInteractions(function); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenNullFunction_thenNullPointerException() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); try { ref.alterAndGet(tx, null); fail(); } catch (NullPointerException expected) { } assertRefHasNoLocks(ref); assertIsAborted(tx); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenCommittedTransaction_thenDeadTxnException() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); tx.commit(); LongFunction function = mock(LongFunction.class); try { ref.alterAndGet(tx, function); fail(); } catch (DeadTxnException expected) { } assertIsCommitted(tx); assertRefHasNoLocks(ref); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenPreparedTransaction_thenPreparedTxnException() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); tx.prepare(); LongFunction function = mock(LongFunction.class); try { ref.alterAndGet(tx, function); fail(); } catch (PreparedTxnException expected) { } assertRefHasNoLocks(ref); assertIsAborted(tx); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenAbortedTransaction() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); tx.abort(); LongFunction function = mock(LongFunction.class); try { ref.alterAndGet(tx, function); fail(); } catch (DeadTxnException expected) { } assertRefHasNoLocks(ref); assertIsAborted(tx); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenFunctionCausesException() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); LongFunction function = mock(LongFunction.class); RuntimeException ex = new RuntimeException(); when(function.call(anyLong())).thenThrow(ex); GammaTxn tx = transactionFactory.newTxn(); try { ref.alterAndGet(tx, function); fail(); } catch (RuntimeException found) { assertSame(ex, found); } assertRefHasNoLocks(ref); assertIsAborted(tx); assertNull(getThreadLocalTxn()); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenPrivatizedByOther() { int initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long version = ref.getVersion(); GammaTxn otherTx = transactionFactory.newTxn(); ref.getLock().acquire(otherTx, LockMode.Exclusive); GammaTxn tx = transactionFactory.newTxn(); LongFunction function = mock(LongFunction.class); try { ref.alterAndGet(tx, function); fail(); } catch (ReadWriteConflict expected) { } assertSurplus(ref, 1); assertIsAborted(tx); assertRefHasExclusiveLock(ref, otherTx); assertVersionAndValue(ref, version, initialValue); } @Test public void whenEnsuredByOther_thenOperationSucceedsButCommitFails() { GammaTxnLong ref = new GammaTxnLong(stm, 10); long version = ref.getVersion(); GammaTxn otherTx = transactionFactory.newTxn(); ref.getLock().acquire(otherTx, LockMode.Write); GammaTxn tx = transactionFactory.newTxn(); LongFunction function = Functions.incLongFunction(1); ref.alterAndGet(tx, function); try { tx.commit(); fail(); } catch (ReadWriteConflict expected) { } assertRefHasWriteLock(ref, otherTx); assertSurplus(ref, 1); assertIsActive(otherTx); assertIsAborted(tx); assertVersionAndValue(ref, version, 10); } @Test public void whenListenersAvailable_thenTheyAreNotified() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); TxnLongAwaitThread thread = new TxnLongAwaitThread(ref, initialValue + 1); thread.start(); sleepMs(500); GammaTxn tx = transactionFactory.newTxn(); ref.alterAndGet(tx, Functions.incLongFunction()); tx.commit(); joinAll(thread); assertVersionAndValue(ref, initialVersion + 1, initialValue + 1); } @Test public void whenSuccess() { LongFunction function = new LongFunction() { @Override public long call(long current) { return current + 1; } }; GammaTxnLong ref = new GammaTxnLong(stm, 100); GammaTxn tx = transactionFactory.newTxn(); long result = ref.alterAndGet(tx, function); tx.commit(); assertEquals(101, ref.atomicGet()); assertEquals(101, result); } }