Search in sources :

Example 11 with ITransaction

use of org.eclipse.scout.rt.platform.transaction.ITransaction in project scout.rt by eclipse.

the class ServerTestRunnerDifferentSessionTest method beforeClass.

@BeforeClass
public static void beforeClass() {
    m_serverSessions = new HashSet<>();
    ISession serverSession = IServerSession.CURRENT.get();
    assertTrue(serverSession instanceof JUnitServerSession1);
    assertEquals("anna", serverSession.getUserId());
    m_serverSessions.add(serverSession);
    m_transactions = new HashSet<>();
    ITransaction transaction = ITransaction.CURRENT.get();
    assertNotNull(transaction);
    m_transactions.add(transaction);
}
Also used : ISession(org.eclipse.scout.rt.shared.ISession) JUnitServerSession1(org.eclipse.scout.rt.testing.server.runner.ServerTestRunnerDifferentSessionTest.JUnitServerSession1) ITransaction(org.eclipse.scout.rt.platform.transaction.ITransaction) BeforeClass(org.junit.BeforeClass)

Example 12 with ITransaction

use of org.eclipse.scout.rt.platform.transaction.ITransaction in project scout.rt by eclipse.

the class ServerTestRunnerDifferentSubjectTest method beforeClass.

@BeforeClass
public static void beforeClass() {
    m_serverSessions = new HashSet<>();
    ISession serverSession = IServerSession.CURRENT.get();
    assertTrue(serverSession instanceof JUnitServerSession);
    assertEquals("anna", serverSession.getUserId());
    m_serverSessions.add(serverSession);
    m_transactions = new HashSet<>();
    ITransaction transaction = ITransaction.CURRENT.get();
    assertNotNull(transaction);
    m_transactions.add(transaction);
}
Also used : ISession(org.eclipse.scout.rt.shared.ISession) ITransaction(org.eclipse.scout.rt.platform.transaction.ITransaction) JUnitServerSession(org.eclipse.scout.rt.testing.server.runner.ServerTestRunnerDifferentSubjectTest.JUnitServerSession) BeforeClass(org.junit.BeforeClass)

Example 13 with ITransaction

use of org.eclipse.scout.rt.platform.transaction.ITransaction in project scout.rt by eclipse.

the class ServerTestRunnerDifferentSubjectTest method afterClass.

@AfterClass
public static void afterClass() {
    ISession serverSession = IServerSession.CURRENT.get();
    assertTrue(serverSession instanceof JUnitServerSession);
    assertEquals("anna", serverSession.getUserId());
    m_serverSessions.add(serverSession);
    ITransaction transaction = ITransaction.CURRENT.get();
    assertNotNull(transaction);
    m_transactions.add(transaction);
    assertEquals(2, m_serverSessions.size());
    // (beforeClass), (before,test1,after), (before,test2,after), (afterClass)
    assertEquals(4, m_transactions.size());
}
Also used : ISession(org.eclipse.scout.rt.shared.ISession) ITransaction(org.eclipse.scout.rt.platform.transaction.ITransaction) JUnitServerSession(org.eclipse.scout.rt.testing.server.runner.ServerTestRunnerDifferentSubjectTest.JUnitServerSession) AfterClass(org.junit.AfterClass)

Example 14 with ITransaction

use of org.eclipse.scout.rt.platform.transaction.ITransaction in project scout.rt by eclipse.

the class AbstractTransactionalMapTest method testConcurrentModifications.

@Test
public void testConcurrentModifications() {
    ITransaction tr1 = createNewTransaction();
    ITransaction tr2 = createNewTransaction();
    Map<Integer, String> initalMap = new HashMap<Integer, String>();
    initalMap.put(1, "1");
    initalMap.put(2, "2");
    initalMap.put(3, "3");
    Map<Integer, String> map = createTransactionalMap(TRANSACTION_MEMBER_ID, false, initalMap);
    // shared
    ITransaction.CURRENT.set(null);
    assertMapStateSimple(map, 1, "1", 2, "2", 3, "3");
    // tr1
    ITransaction.CURRENT.set(tr1);
    map.remove(1);
    map.put(1, "1.1");
    map.remove(2);
    map.put(2, "2.1");
    assertMapStateSimple(map, 1, "1.1", 2, "2.1", 3, "3");
    // shared
    ITransaction.CURRENT.set(null);
    assertMapStateSimple(map, 1, "1", 2, "2", 3, "3");
    // tr2
    ITransaction.CURRENT.set(tr2);
    map.remove(2);
    map.put(2, "2.2");
    map.remove(3);
    map.put(3, "3.2");
    map.put(4, "4");
    assertMapStateSimple(map, 1, "1", 2, "2.2", 3, "3.2", 4, "4");
    // shared
    ITransaction.CURRENT.set(null);
    assertMapStateSimple(map, 1, "1", 2, "2", 3, "3");
    commitTransaction(tr1);
    assertMapStateSimple(map, 1, "1.1", 2, "2.1", 3, "3");
    commitTransaction(tr2);
    assertMapStateSimple(map, 1, "1.1", 3, "3.2", 4, "4");
}
Also used : HashMap(java.util.HashMap) ITransaction(org.eclipse.scout.rt.platform.transaction.ITransaction) Test(org.junit.Test)

Example 15 with ITransaction

use of org.eclipse.scout.rt.platform.transaction.ITransaction in project scout.rt by eclipse.

the class AbstractTransactionalMapTest method testPutAll.

@Test
public void testPutAll() {
    ITransaction tr1 = createNewTransaction();
    ITransaction tr2 = createNewTransaction();
    Map<Integer, String> map = createTransactionalMap(TRANSACTION_MEMBER_ID, false, new HashMap<Integer, String>());
    // tr1
    ITransaction.CURRENT.set(tr1);
    Map<Integer, String> tr1Map = new HashMap<Integer, String>();
    tr1Map.put(1, "1");
    tr1Map.put(2, "2");
    map.putAll(tr1Map);
    assertMapState(map, tr1Map);
    // tr2
    ITransaction.CURRENT.set(tr2);
    Map<Integer, String> tr2Map = new HashMap<Integer, String>();
    // transactional concurrent modification
    tr2Map.put(2, "3");
    tr2Map.put(3, "3");
    tr2Map.put(4, "4");
    map.putAll(tr2Map);
    assertMapState(map, tr2Map);
    // shared
    ITransaction.CURRENT.set(null);
    assertMapState(map, Collections.<Integer, String>emptyMap());
    commitTransaction(tr1);
    assertMapState(map, tr1Map);
    commitTransaction(tr2);
    tr1Map.putAll(tr2Map);
    // not in shared map because of concurrent modification
    tr1Map.remove(2);
    assertMapState(map, tr1Map);
}
Also used : HashMap(java.util.HashMap) ITransaction(org.eclipse.scout.rt.platform.transaction.ITransaction) Test(org.junit.Test)

Aggregations

ITransaction (org.eclipse.scout.rt.platform.transaction.ITransaction)37 Test (org.junit.Test)20 ISession (org.eclipse.scout.rt.shared.ISession)13 HashMap (java.util.HashMap)7 ITransactionMember (org.eclipse.scout.rt.platform.transaction.ITransactionMember)5 IRunnable (org.eclipse.scout.rt.platform.util.concurrent.IRunnable)5 JUnitServerSession1 (org.eclipse.scout.rt.testing.server.runner.ServerTestRunnerDifferentSessionTest.JUnitServerSession1)4 JUnitServerSession (org.eclipse.scout.rt.testing.server.runner.ServerTestRunnerDifferentSubjectTest.JUnitServerSession)4 JUnitServerSession (org.eclipse.scout.rt.testing.server.runner.ServerTestRunnerSameSessionTest.JUnitServerSession)4 AssertionException (org.eclipse.scout.rt.platform.util.Assertions.AssertionException)3 AfterClass (org.junit.AfterClass)3 BeforeClass (org.junit.BeforeClass)3 InvocationHandler (java.lang.reflect.InvocationHandler)2 Method (java.lang.reflect.Method)2 WebMethod (javax.jws.WebMethod)2 BooleanHolder (org.eclipse.scout.rt.platform.holders.BooleanHolder)2 Holder (org.eclipse.scout.rt.platform.holders.Holder)2 IServerSession (org.eclipse.scout.rt.server.IServerSession)2 AbstractSqlTransactionMember (org.eclipse.scout.rt.server.jdbc.AbstractSqlTransactionMember)2 Connection (java.sql.Connection)1