use of org.omg.CosTransactions.Current in project narayana by jbosstm.
the class Test25 method main.
public static void main(String[] args) {
try {
ORBInterface.initORB(args, null);
OAInterface.initOA();
boolean correct = true;
Current current = OTS.get_current();
try {
current.resume(null);
} catch (InvalidControl invalidControl) {
correct = false;
}
if (correct) {
System.out.println("Passed");
} else {
System.out.println("Failed");
}
} catch (Exception exception) {
System.out.println("Failed");
System.err.println("Test25.main: " + exception);
exception.printStackTrace(System.err);
}
try {
OAInterface.shutdownOA();
ORBInterface.shutdownORB();
} catch (Exception exception) {
System.err.println("Test25.main: " + exception);
exception.printStackTrace(System.err);
}
}
use of org.omg.CosTransactions.Current in project narayana by jbosstm.
the class AsyncTest method test.
@Test
public void test() throws Exception {
boolean errorp = false;
boolean errorc = false;
ServerORB orb = new ServerORB();
ORB myORB = orb.getORB();
RootOA myOA = orb.getOA();
try {
Current current = OTSManager.get_current();
DemoResource.printThread = true;
current.begin();
for (int j = 0; j < 100; j++) {
if ((j == 10) && (errorp || errorc)) {
boolean heuristicPrepare = errorp;
heuristic h = new heuristic(heuristicPrepare);
current.get_control().get_coordinator().register_resource(h.getReference());
h = null;
}
DemoResource r = new DemoResource();
r.registerResource();
r = null;
}
System.out.println("committing top-level transaction");
current.commit(false);
System.out.println("Test completed.");
} catch (org.omg.CORBA.TRANSACTION_ROLLEDBACK e) {
System.out.println("Caught exception: " + e);
assertTrue(errorp || errorc);
}
myOA.destroy();
myORB.shutdown();
}
use of org.omg.CosTransactions.Current in project narayana by jbosstm.
the class HeuristicTest method test.
@Test
public void test() throws Exception {
boolean shouldCommit = true;
boolean heuristicPrepare = false;
Coordinator coord = null;
ORB myORB = null;
RootOA myOA = null;
heuristic hImpl = null;
try {
myORB = ORB.getInstance("test");
myOA = OA.getRootOA(myORB);
myORB.initORB(new String[] {}, null);
myOA.initOA();
ORBManager.setORB(myORB);
ORBManager.setPOA(myOA);
Current current = OTSManager.get_current();
hImpl = new heuristic(heuristicPrepare);
Resource heuristicObject = hImpl.getReference();
AtomicResource aImpl = new AtomicResource(shouldCommit);
Resource atomicObject = aImpl.getReference();
System.out.println("beginning top-level transaction.");
current.begin();
Control myControl = current.get_control();
assertNotNull(myControl);
System.out.println("getting coordinator");
coord = myControl.get_coordinator();
myControl = null;
System.out.println("registering resources.");
try {
coord.register_resource(heuristicObject);
coord.register_resource(atomicObject);
} catch (Exception ex) {
fail("Failed to register resources: " + ex);
ex.printStackTrace(System.err);
}
System.out.println("committing top-level transaction.");
current.commit(true);
} catch (TRANSACTION_ROLLEDBACK e1) {
System.out.println("\nTransaction RolledBack exception");
} catch (HeuristicMixed e2) {
System.out.println("\nTransaction HeuristicMixed exception");
} catch (HeuristicHazard e3) {
System.out.println("\nTransaction HeuristicHazard exception");
} catch (Exception e4) {
fail("Caught unexpected exception: " + e4);
e4.printStackTrace(System.err);
}
System.out.println("Trying to determing final transaction outcome.");
org.omg.CosTransactions.Status status = Status.StatusUnknown;
try {
if (coord != null) {
status = coord.get_status();
coord = null;
} else {
fail("\nCould not determine action status.");
}
} catch (SystemException ex1) {
// assume invalid reference - tx may have been garbage collected
} catch (Exception e5) {
fail("Caught unexpected exception:" + e5);
e5.printStackTrace(System.err);
}
System.out.println("\nFinal action status: " + Utility.stringStatus(status));
System.out.println("Test completed successfully.");
ResourceTrace trace = hImpl.getTrace();
if ((!heuristicPrepare) && (shouldCommit) && (trace.getTrace() == ResourceTrace.ResourceTracePrepareCommitHeurisiticRollbackForget)) {
// assertSuccess();
} else {
if ((!heuristicPrepare) && (!shouldCommit) && (trace.getTrace() == ResourceTrace.ResourceTracePrepareRollback)) {
// assertSuccess();
} else {
if ((heuristicPrepare) && (shouldCommit) && (trace.getTrace() == ResourceTrace.ResourceTracePrepareHeuristicHazardForget)) {
// assertSuccess();
} else {
fail();
}
}
}
myOA.destroy();
myORB.shutdown();
}
use of org.omg.CosTransactions.Current in project narayana by jbosstm.
the class Test36 method main.
public static void main(String[] args) {
boolean correct = true;
try {
ORBInterface.initORB(args, null);
OAInterface.initOA();
Current current = OTS.get_current();
try {
current.commit(true);
correct = false;
} catch (NoTransaction noTransaction) {
}
if (!correct) {
System.out.println("Failed");
return;
}
} catch (Exception exception) {
System.out.println("Failed");
System.err.println("Test036.main: " + exception);
exception.printStackTrace(System.err);
return;
}
try {
OAInterface.shutdownOA();
ORBInterface.shutdownORB();
} catch (Exception exception) {
System.err.println("Test036.main: " + exception);
exception.printStackTrace(System.err);
}
try {
ORBInterface.initORB(args, null);
OAInterface.initOA();
Current current = OTS.get_current();
try {
current.commit(true);
correct = false;
} catch (NoTransaction noTransaction) {
}
if (correct) {
System.out.println("Passed");
} else {
System.out.println("Failed");
}
} catch (Exception exception) {
System.out.println("Failed");
System.err.println("Test036.main: " + exception);
exception.printStackTrace(System.err);
}
try {
OAInterface.shutdownOA();
ORBInterface.shutdownORB();
} catch (Exception exception) {
System.err.println("Test01.main: " + exception);
exception.printStackTrace(System.err);
}
}
use of org.omg.CosTransactions.Current in project narayana by jbosstm.
the class Test22 method main.
public static void main(String[] args) {
try {
ORBInterface.initORB(args, null);
OAInterface.initOA();
boolean correct = true;
Current current = OTS.get_current();
current.begin();
current.commit(true);
Control control = current.suspend();
correct = (control == null);
if (correct) {
System.out.println("Passed");
} else {
System.out.println("Failed");
}
} catch (Exception exception) {
System.out.println("Failed");
System.err.println("Test22.main: " + exception);
exception.printStackTrace(System.err);
}
try {
OAInterface.shutdownOA();
ORBInterface.shutdownORB();
} catch (Exception exception) {
System.err.println("Test22.main: " + exception);
exception.printStackTrace(System.err);
}
}
Aggregations