01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.openejb.test.entity.bmp;
17:
18: import javax.ejb.EJBObject;
19:
20: /**
21: * [7] Should be run as the seventh test suite of the BasicBmpTestClients
22: *
23: * @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
24: * @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
25: */
26: public class BmpHandleTests extends BasicBmpTestClient {
27:
28: public BmpHandleTests() {
29: super ("Handle.");
30: }
31:
32: protected void setUp() throws Exception {
33: super .setUp();
34: Object obj = initialContext
35: .lookup("client/tests/entity/bmp/BasicBmpHome");
36: ejbHome = (BasicBmpHome) javax.rmi.PortableRemoteObject.narrow(
37: obj, BasicBmpHome.class);
38: ejbObject = ejbHome.createObject("Fifth Bean");
39: ejbHandle = ejbObject.getHandle();
40: }
41:
42: protected void tearDown() throws Exception {
43: if (ejbObject != null)
44: ejbObject.remove();
45: super .tearDown();
46: }
47:
48: //=================================
49: // Test handle methods
50: //
51: public void test01_getEJBObject() {
52:
53: try {
54: EJBObject object = ejbHandle.getEJBObject();
55: assertNotNull("The EJBObject is null", object);
56: // Wait until isIdentical is working.
57: //assertTrue("EJBObjects are not identical", object.isIdentical(ejbObject));
58: } catch (Exception e) {
59: fail("Received Exception " + e.getClass() + " : "
60: + e.getMessage());
61: }
62: }
63:
64: /**
65: * This remove method of the EJBHome is placed hear as it
66: * is more a test on the handle then on the remove method
67: * itself.
68: */
69: public void Xtest02_EJBHome_remove() {
70: try {
71: ejbHome.remove(ejbHandle);
72: try {
73: ejbObject.businessMethod("Should throw an exception");
74: assertTrue(
75: "Calling business method after removing the EJBObject does not throw an exception",
76: false);
77: } catch (Exception e) {
78: assertTrue(true);
79: return;
80: }
81: } catch (Exception e) {
82: fail("Received Exception " + e.getClass() + " : "
83: + e.getMessage());
84: } finally {
85: ejbObject = null;
86: }
87: }
88: //
89: // Test handle methods
90: //=================================
91:
92: }
|