use of com.arjuna.ats.internal.jta.transaction.arjunacore.jca.XATerminatorImple in project narayana by jbosstm.
the class XATerminatorUnitTest method test.
@Test
public void test() throws Exception {
XATerminatorImple term = new XATerminatorImple();
XidImple xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
assertTrue(term.beforeCompletion(xid));
assertEquals(term.prepare(xid), XAResource.XA_RDONLY);
SubordinationManager.getTransactionImporter().importTransaction(xid);
term.commit(xid, true);
SubordinationManager.getTransactionImporter().importTransaction(xid);
term.rollback(xid);
SubordinationManager.getTransactionImporter().importTransaction(xid);
term.recover(XAResource.TMSTARTRSCAN);
try {
term.recover(XAResource.TMSTARTRSCAN);
fail();
} catch (final XAException ex) {
}
term.recover(XAResource.TMENDRSCAN);
term.forget(xid);
}
use of com.arjuna.ats.internal.jta.transaction.arjunacore.jca.XATerminatorImple in project narayana by jbosstm.
the class XATerminatorUnitTest method testUnknownTransaction.
@Test
public void testUnknownTransaction() throws Exception {
XATerminatorImple term = new XATerminatorImple();
XidImple xid = new XidImple(new Uid());
try {
term.beforeCompletion(xid);
fail();
} catch (final UnexpectedConditionException ex) {
}
try {
term.prepare(xid);
fail();
} catch (final XAException ex) {
}
try {
term.commit(xid, false);
fail();
} catch (final XAException ex) {
}
try {
term.rollback(xid);
fail();
} catch (final XAException ex) {
}
try {
term.forget(xid);
fail();
} catch (final XAException ex) {
}
}
use of com.arjuna.ats.internal.jta.transaction.arjunacore.jca.XATerminatorImple in project narayana by jbosstm.
the class XATerminatorUnitTest method testImportMultipleTx.
@Test
public void testImportMultipleTx() throws XAException, RollbackException, SystemException {
Implementations.initialise();
XidImple xid = new XidImple(new Uid());
TransactionImporter imp = SubordinationManager.getTransactionImporter();
SubordinateTransaction subordinateTransaction = imp.importTransaction(xid);
XATerminatorImple xa = new XATerminatorImple();
XAResourceImple xar1 = new XAResourceImple(XAResource.XA_OK, XAResource.XA_OK);
XAResourceImple xar2 = new XAResourceImple(XAResource.XA_OK, XAException.XAER_RMFAIL);
subordinateTransaction.enlistResource(xar1);
subordinateTransaction.enlistResource(xar2);
xa.prepare(xid);
try {
xa.commit(xid, false);
fail("Did not expect to pass");
} catch (XAException xae) {
assertTrue(xae.errorCode == XAException.XAER_RMFAIL);
}
XARecoveryModule xarm = new XARecoveryModule();
xarm.addXAResourceRecoveryHelper(new XAResourceRecoveryHelper() {
@Override
public boolean initialise(String p) throws Exception {
return false;
}
@Override
public XAResource[] getXAResources() throws Exception {
return new XAResource[] { xar2 };
}
});
RecoveryManager.manager().addModule(xarm);
Xid[] xids = xa.recover(XAResource.TMSTARTRSCAN);
assertTrue(Arrays.binarySearch(xids, xid, new Comparator<Xid>() {
@Override
public int compare(Xid o1, Xid o2) {
if (((XidImple) o1).equals(o2)) {
return 0;
} else {
return -1;
}
}
}) != -1);
xa.rollback(xid);
assertTrue(xar2.rollbackCalled());
xa.recover(XAResource.TMENDRSCAN);
}
use of com.arjuna.ats.internal.jta.transaction.arjunacore.jca.XATerminatorImple in project narayana by jbosstm.
the class XATerminatorUnitTest method testRecovery.
@Test
public void testRecovery() throws Exception {
Implementations.initialise();
XATerminatorImple xa = new XATerminatorImple();
Xid[] recover = xa.recover(XAResource.TMSTARTRSCAN);
int initialLength = recover == null ? 0 : recover.length;
xa.recover(XAResource.TMENDRSCAN);
XidImple xid = new XidImple(new Uid());
TransactionImporter imp = SubordinationManager.getTransactionImporter();
SubordinateTransaction importTransaction = imp.importTransaction(xid);
importTransaction.enlistResource(new XAResource() {
@Override
public void start(Xid xid, int flags) throws XAException {
}
@Override
public void end(Xid xid, int flags) throws XAException {
}
@Override
public int prepare(Xid xid) throws XAException {
return 0;
}
@Override
public void commit(Xid xid, boolean onePhase) throws XAException {
throw new XAException(XAException.XA_RETRY);
}
@Override
public void rollback(Xid xid) throws XAException {
}
@Override
public void forget(Xid xid) throws XAException {
}
@Override
public Xid[] recover(int flag) throws XAException {
return null;
}
@Override
public boolean isSameRM(XAResource xaRes) throws XAException {
return false;
}
@Override
public int getTransactionTimeout() throws XAException {
return 0;
}
@Override
public boolean setTransactionTimeout(int seconds) throws XAException {
return false;
}
});
assertTrue(xa.beforeCompletion(xid));
assertEquals(xa.prepare(xid), XAResource.XA_OK);
try {
xa.commit(xid, false);
fail();
} catch (XAException e) {
assertTrue(e.errorCode == XAException.XAER_RMFAIL);
}
Xid[] recover2 = xa.recover(XAResource.TMSTARTRSCAN);
assertTrue(recover2.length == initialLength + 1);
try {
xa.commit(xid, false);
fail();
} catch (XAException e) {
assertTrue("Wrong errorcode" + e.errorCode, e.errorCode == XAException.XAER_RMFAIL);
}
xa.recover(XAResource.TMENDRSCAN);
// Feed the recovery manager with something it can recover with
RecoveryModule module = new XARecoveryModule() {
@Override
public XAResource getNewXAResource(final XAResourceRecord xaResourceRecord) {
return new XAResource() {
@Override
public void start(Xid xid, int flags) throws XAException {
}
@Override
public void end(Xid xid, int flags) throws XAException {
}
@Override
public int prepare(Xid xid) throws XAException {
return 0;
}
@Override
public void commit(Xid xid, boolean onePhase) throws XAException {
}
@Override
public void rollback(Xid xid) throws XAException {
}
@Override
public void forget(Xid xid) throws XAException {
}
@Override
public Xid[] recover(int flag) throws XAException {
return null;
}
@Override
public boolean isSameRM(XAResource xaRes) throws XAException {
return false;
}
@Override
public int getTransactionTimeout() throws XAException {
return 0;
}
@Override
public boolean setTransactionTimeout(int seconds) throws XAException {
return false;
}
};
}
};
RecoveryManager.manager().addModule(module);
try {
Xid[] recover3 = xa.recover(XAResource.TMSTARTRSCAN);
assertTrue(recover3.length == recover2.length);
xa.commit(xid, false);
xa.recover(XAResource.TMENDRSCAN);
Xid[] recover4 = xa.recover(XAResource.TMSTARTRSCAN);
assertTrue(recover4 == null || recover4.length == initialLength);
xa.recover(XAResource.TMENDRSCAN);
} finally {
RecoveryManager.manager().removeModule(module, false);
}
}
use of com.arjuna.ats.internal.jta.transaction.arjunacore.jca.XATerminatorImple in project narayana by jbosstm.
the class XATerminatorUnitTest method testFail.
@Test
public void testFail() throws Exception {
XATerminatorImple term = new XATerminatorImple();
XidImple xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
SubordinateTransaction tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.commit, FailType.rollback));
try {
term.commit(xid, false);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.commit, FailType.heurcom));
try {
term.commit(xid, false);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.commit, FailType.heurcom));
term.prepare(xid);
try {
term.commit(xid, false);
} catch (final XAException ex) {
fail();
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.commit, FailType.normal));
try {
term.commit(xid, false);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.rollback, FailType.rollback));
try {
term.rollback(xid);
} catch (final XAException ex) {
fail();
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.rollback, FailType.heurcom));
term.prepare(xid);
try {
term.rollback(xid);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.rollback, FailType.normal));
term.prepare(xid);
try {
term.rollback(xid);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.prepare_and_rollback, FailType.normal));
try {
term.prepare(xid);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.prepare_and_rollback, FailType.heurcom));
try {
term.prepare(xid);
fail();
} catch (final XAException ex) {
}
xid = new XidImple(new Uid());
SubordinationManager.getTransactionImporter().importTransaction(xid);
tx = SubordinationManager.getTransactionImporter().getImportedTransaction(xid);
tx.enlistResource(new FailureXAResource(FailLocation.prepare_and_rollback, FailType.rollback));
try {
term.prepare(xid);
fail();
} catch (final XAException ex) {
}
}
Aggregations