use of org.apache.openejb.test.object.ObjectGraph in project tomee by apache.
the class SingletonRmiIiopTests method test37_returnNestedEJBHome.
public void test37_returnNestedEJBHome() {
try {
final Object obj = initialContext.lookup("client/tests/singleton/EncBean");
final EncSingletonHome expected = (EncSingletonHome) obj;
assertNotNull("The EJBHome returned from JNDI is null", expected);
final ObjectGraph graph = ejbObject.returnObjectGraph(new ObjectGraph(expected));
assertNotNull("The ObjectGraph is null", graph);
final EncSingletonHome actual = (EncSingletonHome) graph.getObject();
assertNotNull("The EJBHome returned is null", actual);
} catch (final Exception e) {
fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
}
use of org.apache.openejb.test.object.ObjectGraph in project tomee by apache.
the class SingletonRmiIiopTests method test38_returnNestedEJBHome2.
public void test38_returnNestedEJBHome2() {
try {
final ObjectGraph graph = ejbObject.returnNestedEJBHome();
assertNotNull("The ObjectGraph is null", graph);
final EncSingletonHome actual = (EncSingletonHome) graph.getObject();
assertNotNull("The EJBHome returned is null", actual);
} catch (final Exception e) {
fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
}
use of org.apache.openejb.test.object.ObjectGraph in project tomee by apache.
the class SingletonRmiIiopTests method test43_returnNestedEJBObject2.
public void test43_returnNestedEJBObject2() {
try {
final ObjectGraph graph = ejbObject.returnNestedEJBObject();
assertNotNull("The ObjectGraph is null", graph);
final EncSingletonObject actual = (EncSingletonObject) graph.getObject();
assertNotNull("The EJBHome returned is null", actual);
} catch (final Exception e) {
fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
}
use of org.apache.openejb.test.object.ObjectGraph in project tomee by apache.
the class SingletonRmiIiopTests method test53_returnNestedHandle2.
public void test53_returnNestedHandle2() {
try {
final ObjectGraph graph = ejbObject.returnNestedHandle();
assertNotNull("The ObjectGraph is null", graph);
final Handle actual = (Handle) graph.getObject();
assertNotNull("The EJBObject Handle returned is null", actual);
assertNotNull("The EJBObject in the Handle is null", actual.getEJBObject());
} catch (final Exception e) {
fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
}
use of org.apache.openejb.test.object.ObjectGraph in project tomee by apache.
the class SingletonRmiIiopTests method test59_returnClassObjectGraph.
public void test59_returnClassObjectGraph() {
try {
final Class[] primitives = { boolean.class, byte.class, char.class, short.class, int.class, long.class, float.class, double.class };
final ObjectGraph expectedGraph = new ObjectGraph(primitives);
final ObjectGraph actualGraph = ejbObject.returnObjectGraph(expectedGraph);
final Class[] expected = (Class[]) expectedGraph.getObject();
final Class[] actual = (Class[]) actualGraph.getObject();
assertEquals(expected.length, actual.length);
for (int i = 0; i < expected.length; i++) {
assertEquals(expected[i], actual[i]);
}
} catch (final RemoteException e) {
fail("Received Exception " + e.getClass() + " : " + e.getMessage());
}
}
Aggregations