package org.multiverse.collections; import org.junit.Before; import org.junit.Test; import org.multiverse.api.Stm; import org.multiverse.api.StmUtils; import org.multiverse.api.Txn; import org.multiverse.api.callables.TxnVoidCallable; import java.util.NoSuchElementException; import static org.junit.Assert.*; import static org.multiverse.api.GlobalStmInstance.getGlobalStmInstance; import static org.multiverse.api.TxnThreadLocal.clearThreadLocalTxn; public class NaiveTxnLinkedList_elementTest { private NaiveTxnLinkedList<String> list; private Stm stm; @Before public void setUp() { stm = getGlobalStmInstance(); clearThreadLocalTxn(); list = new NaiveTxnLinkedList<String>(stm); } @Test public void whenEmpty() { StmUtils.atomic(new TxnVoidCallable() { @Override public void call(Txn tx) throws Exception { try { list.element(); fail(); } catch (NoSuchElementException expected) { } assertEquals("[]", list.toString()); assertEquals(0, list.size()); } }); } @Test public void whenMultipleItems() { StmUtils.atomic(new TxnVoidCallable() { @Override public void call(Txn tx) throws Exception { list.offerLast("1"); list.offerLast("2"); list.offerLast("3"); String found = list.element(); assertEquals("1", found); assertEquals("[2, 3]", list.toString()); assertEquals(2, list.size()); } }); } @Test public void whenSingleItem() { StmUtils.atomic(new TxnVoidCallable() { @Override public void call(Txn tx) throws Exception { String item = "1"; list.put(item); String found = list.element(); assertSame(item, found); assertEquals("[]", list.toString()); assertEquals(0, list.size()); } }); } }