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.SomeUncheckedException; import org.multiverse.api.TxnFactory; import org.multiverse.api.exceptions.DeadTxnException; import org.multiverse.api.exceptions.PreparedTxnException; 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.assertEquals; import static org.junit.Assert.fail; import static org.mockito.Mockito.*; import static org.multiverse.TestUtils.*; import static org.multiverse.api.TxnThreadLocal.clearThreadLocalTxn; import static org.multiverse.stms.gamma.GammaTestUtils.assertRefHasNoLocks; import static org.multiverse.stms.gamma.GammaTestUtils.assertVersionAndValue; @RunWith(Parameterized.class) public class GammaTxnLong_getAndAlter2Test { private final GammaTxnFactory transactionFactory; private final GammaStm stm; public GammaTxnLong_getAndAlter2Test(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() { GammaTxnLong ref = new GammaTxnLong(stm, 10); long version = ref.getVersion(); LongFunction function = mock(LongFunction.class); try { ref.getAndAlter(null, function); fail(); } catch (NullPointerException expected) { } verifyZeroInteractions(function); assertVersionAndValue(ref, version, 10); } @Test public void whenNullFunction_thenNullPointerException() { GammaTxnLong ref = new GammaTxnLong(stm, 10); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); try { ref.getAndAlter(tx, null); fail(); } catch (NullPointerException expected) { } assertIsAborted(tx); assertVersionAndValue(ref, version, 10); } @Test public void whenCommittedTransaction_thenDeadTxnException() { GammaTxnLong ref = new GammaTxnLong(stm, 10); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); tx.commit(); LongFunction function = mock(LongFunction.class); try { ref.getAndAlter(tx, function); fail(); } catch (DeadTxnException expected) { } assertIsCommitted(tx); assertVersionAndValue(ref, version, 10); } @Test public void whenPreparedTransaction_thenPreparedTxnException() { GammaTxnLong ref = new GammaTxnLong(stm, 10); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); tx.prepare(); LongFunction function = mock(LongFunction.class); try { ref.getAndAlter(tx, function); fail(); } catch (PreparedTxnException expected) { } assertIsAborted(tx); assertVersionAndValue(ref, version, 10); } @Test public void whenAbortedTransaction() { GammaTxnLong ref = new GammaTxnLong(stm, 10); long version = ref.getVersion(); GammaTxn tx = transactionFactory.newTxn(); tx.abort(); LongFunction function = mock(LongFunction.class); try { ref.getAndAlter(tx, function); fail(); } catch (DeadTxnException expected) { } assertIsAborted(tx); assertVersionAndValue(ref, version, 10); } @Test public void whenAlterFunctionCausesProblems_thenTransactionAborted() { long initialValue = 10; GammaTxnLong ref = new GammaTxnLong(stm, initialValue); long initialVersion = ref.getVersion(); LongFunction function = mock(LongFunction.class); when(function.call(initialValue)).thenThrow(new SomeUncheckedException()); GammaTxn tx = transactionFactory.newTxn(); try { ref.getAndAlter(tx, function); fail(); } catch (SomeUncheckedException expected) { } assertIsAborted(tx); assertRefHasNoLocks(ref); assertVersionAndValue(ref, initialVersion, initialValue); } @Test public void whenListenersAvailable() { 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(); long result = ref.getAndAlter(tx, Functions.incLongFunction()); tx.commit(); joinAll(thread); assertEquals(result, initialValue); assertRefHasNoLocks(ref); 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.getAndAlter(tx, function); tx.commit(); assertEquals(101, ref.atomicGet()); assertEquals(100, result); } }