Search in sources :

Example 1 with UserCoordinator

use of com.arjuna.mw.wscf.model.sagas.api.UserCoordinator in project narayana by jbosstm.

the class CancelOnlyCloseTest method testCancelOnlyClose.

@Test
public void testCancelOnlyClose() throws Exception {
    System.out.println("Running test : " + this.getClass().getName());
    UserCoordinator ua = UserCoordinatorFactory.userCoordinator();
    try {
        ua.begin("Sagas11HLS");
        System.out.println("Started: " + ua.identifier() + "\n");
        ua.setCancelOnly();
        ua.close();
        fail("Close succeeded after setCancelOnly");
    } catch (CoordinatorCancelledException ex) {
        // we should get here
        WSCF11TestUtils.cleanup(ua);
    } catch (Exception ex) {
        WSCF11TestUtils.cleanup(ua);
        throw ex;
    }
}
Also used : UserCoordinator(com.arjuna.mw.wscf.model.sagas.api.UserCoordinator) CoordinatorCancelledException(com.arjuna.mw.wscf.model.sagas.exceptions.CoordinatorCancelledException) CoordinatorCancelledException(com.arjuna.mw.wscf.model.sagas.exceptions.CoordinatorCancelledException) Test(org.junit.Test)

Example 2 with UserCoordinator

use of com.arjuna.mw.wscf.model.sagas.api.UserCoordinator in project narayana by jbosstm.

the class SuspendCloseTest method testSuspendClose.

@Test
public void testSuspendClose() throws Exception {
    System.out.println("Running test : " + this.getClass().getName());
    UserCoordinator ua = UserCoordinatorFactory.userCoordinator();
    try {
        ua.begin("Sagas11HLS");
        System.out.println("Started: " + ua.identifier() + "\n");
        ActivityHierarchy hier = ua.suspend();
        System.out.println("Suspended: " + hier + "\n");
        if (ua.currentActivity() != null) {
            WSCF11TestUtils.cleanup(ua);
            fail("Hierarchy still active.");
        }
        ua.close();
    } catch (NoCoordinatorException ex) {
        WSCF11TestUtils.cleanup(ua);
    } catch (Exception ex) {
        WSCF11TestUtils.cleanup(ua);
        throw ex;
    }
}
Also used : UserCoordinator(com.arjuna.mw.wscf.model.sagas.api.UserCoordinator) NoCoordinatorException(com.arjuna.mw.wscf.exceptions.NoCoordinatorException) ActivityHierarchy(com.arjuna.mw.wsas.activity.ActivityHierarchy) NoCoordinatorException(com.arjuna.mw.wscf.exceptions.NoCoordinatorException) Test(org.junit.Test)

Example 3 with UserCoordinator

use of com.arjuna.mw.wscf.model.sagas.api.UserCoordinator in project narayana by jbosstm.

the class BeginCancelTest method testBeginCancel.

@Test
public void testBeginCancel() throws Exception {
    System.out.println("Running test : " + this.getClass().getName());
    UserCoordinator ua = UserCoordinatorFactory.userCoordinator();
    ua.begin("Sagas11HLS");
    System.out.println("Started: " + ua.identifier() + "\n");
    ua.cancel();
    System.out.println("Cancelled");
}
Also used : UserCoordinator(com.arjuna.mw.wscf.model.sagas.api.UserCoordinator) Test(org.junit.Test)

Example 4 with UserCoordinator

use of com.arjuna.mw.wscf.model.sagas.api.UserCoordinator in project narayana by jbosstm.

the class CancelOnlyCancelTest method testCancelOnlyCancel.

@Test
public void testCancelOnlyCancel() throws Exception {
    System.out.println("Running test : " + this.getClass().getName());
    UserCoordinator ua = UserCoordinatorFactory.userCoordinator();
    try {
        ua.begin("Sagas11HLS");
        System.out.println("Started: " + ua.identifier() + "\n");
        ua.setCancelOnly();
        ua.cancel();
    } catch (CoordinatorCancelledException ex) {
        // why is it ok to get here?
        WSCF11TestUtils.cleanup(ua);
    } catch (Exception ex) {
        WSCF11TestUtils.cleanup(ua);
        throw ex;
    }
}
Also used : UserCoordinator(com.arjuna.mw.wscf.model.sagas.api.UserCoordinator) CoordinatorCancelledException(com.arjuna.mw.wscf.model.sagas.exceptions.CoordinatorCancelledException) CoordinatorCancelledException(com.arjuna.mw.wscf.model.sagas.exceptions.CoordinatorCancelledException) Test(org.junit.Test)

Example 5 with UserCoordinator

use of com.arjuna.mw.wscf.model.sagas.api.UserCoordinator in project narayana by jbosstm.

the class SuspendTest method testSuspend.

@Test
public void testSuspend() throws Exception {
    System.out.println("Running test : " + this.getClass().getName());
    UserCoordinator ua = UserCoordinatorFactory.userCoordinator();
    try {
        ua.begin("Sagas11HLS");
        System.out.println("Started: " + ua.identifier() + "\n");
        ActivityHierarchy hier = ua.suspend();
        System.out.println("Suspended: " + hier + "\n");
        if (ua.currentActivity() != null) {
            WSCF11TestUtils.cleanup(ua);
            fail("Hierarchy still active.");
        }
    } catch (NoCoordinatorException ex) {
    // why is it ok to get here?
    } catch (Exception ex) {
        WSCF11TestUtils.cleanup(ua);
        throw ex;
    }
}
Also used : UserCoordinator(com.arjuna.mw.wscf.model.sagas.api.UserCoordinator) NoCoordinatorException(com.arjuna.mw.wscf.exceptions.NoCoordinatorException) ActivityHierarchy(com.arjuna.mw.wsas.activity.ActivityHierarchy) NoCoordinatorException(com.arjuna.mw.wscf.exceptions.NoCoordinatorException) Test(org.junit.Test)

Aggregations

UserCoordinator (com.arjuna.mw.wscf.model.sagas.api.UserCoordinator)7 Test (org.junit.Test)7 ActivityHierarchy (com.arjuna.mw.wsas.activity.ActivityHierarchy)3 NoCoordinatorException (com.arjuna.mw.wscf.exceptions.NoCoordinatorException)2 CoordinatorCancelledException (com.arjuna.mw.wscf.model.sagas.exceptions.CoordinatorCancelledException)2