You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ad...@apache.org on 2006/12/20 23:47:47 UTC

svn commit: r489216 - in /incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless: StatelessPojoEjbObjectTests.java StatelessTestSuite.java

Author: adc
Date: Wed Dec 20 14:47:46 2006
New Revision: 489216

URL: http://svn.apache.org/viewvc?view=rev&rev=489216
Log:
OPENEJB-149 StatelessEjbObjectTests from Mohammad Nour

Added:
    incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbObjectTests.java
Modified:
    incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessTestSuite.java

Added: incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbObjectTests.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbObjectTests.java?view=auto&rev=489216
==============================================================================
--- incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbObjectTests.java (added)
+++ incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessPojoEjbObjectTests.java Wed Dec 20 14:47:46 2006
@@ -0,0 +1,141 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.openejb.test.stateless;
+
+import javax.ejb.EJBHome;
+
+
+/**
+ * This class tests that all javax.ejb.EJBObject methods work as expected on the EJB 2.1 compatible remote interface
+ * of an ejb3 stateless bean.
+ * <br>
+ * [4] Should be run as the fourth test suite of the BasicStatelessTestClients
+ *
+ * @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
+ * @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
+ * @version $Rev: 483412 $ $Date: 2006-12-07 02:46:28 -0800 (Thu, 07 Dec 2006) $
+ */
+public class StatelessPojoEjbObjectTests extends BasicStatelessTestClient {
+
+    public StatelessPojoEjbObjectTests() {
+        super("PojoEJBObject.");
+    }
+
+    protected void setUp() throws Exception {
+        super.setUp();
+        Object obj = initialContext.lookup("client/tests/stateless/BasicStatelessPojoHome");
+        ejbHome = (BasicStatelessHome) javax.rmi.PortableRemoteObject.narrow(obj, BasicStatelessHome.class);
+        ejbObject = ejbHome.createObject();
+    }
+
+    // ===============================
+    // Start EJBObject methods test
+    //
+
+    /**
+     * According to the EJB3.0 "Core Contracts and Requirements" specs, section
+     * 3.6.4, a session EJBObject supports:
+     * 1. Get the session object's remote home interface.
+     * 2. Get the session object's handle.
+     * 3. Test if the session object is identical with another session object.
+     * 4. Remove the session object.
+     */
+
+    /**
+     * A method to test retrieving the EJBHome interface of a session bean using its EJBObject reference.
+     */
+    public void test01_getEjbHome() {
+        try {
+            EJBHome home = ejbObject.getEJBHome();
+            assertNotNull("The EJBHome is null", home);
+        } catch (Exception e) {
+            fail("Received Exception " + e.getClass() + " : " + e.getMessage());
+        }
+    }
+
+    /**
+     * A method to test retrieving a Handle of a session bean using its EJBObject reference.
+     */
+    public void test02_getHandle() {
+        try {
+            ejbHandle = ejbObject.getHandle();
+            assertNotNull("The Handle is null", ejbHandle);
+        } catch (Exception e) {
+            fail("Received Exception " + e.getClass() + " : " + e.getMessage());
+        }
+    }
+
+    /**
+     * A method to test the implementation of Stateless Session Bean identity check.
+     * See EJB3.0 "Core Contracts and Requirements" specification, section 3.4.5.2
+     */
+    public void test03_isIdentical() {
+        BasicStatelessObject otherEJBObject = null;
+        try {
+            /**
+             * This EJBObject reference is created to validate the identity if different EJBObject references
+             * of the same interface type of the same session bean.
+             */
+            otherEJBObject = ejbHome.createObject();
+            assertTrue("The EJBObjects are not identical", ejbObject.isIdentical(ejbObject));
+            assertTrue("The EJBObject and the OtherEJBObject are not identical", ejbObject.isIdentical(otherEJBObject));
+        } catch (Exception e) {
+            fail("Received Exception " + e.getClass() + " : " + e.getMessage());
+        }
+    }
+
+    /**
+     * This test is 2 in 1, it tests calling remove() on an EJBObject reference and then calling a business method on the
+     * same reference after the remove() is successfuly called.
+     */
+    public void test04_remove() {
+        try {
+            ejbObject.remove();
+            try {
+                ejbObject.businessMethod("Should throw an exception");
+                assertTrue(
+                        "Calling business method after removing the EJBObject does not throw an exception",
+                        false);
+            } catch (Exception e) {
+                assertTrue(true);
+                return;
+            }
+        } catch (Exception e) {
+            fail("Received Exception " + e.getClass() + " : " + e.getMessage());
+        }
+    }
+
+    /**
+     * See EJB3.0 "Core Contracts and Requirements" specification, section : 3.6.8.3 .
+     */
+    public void test05_getPrimaryKey() {
+        try {
+            Object key = ejbObject.getPrimaryKey();
+        } catch (java.rmi.RemoteException e) {
+            assertTrue(true);
+            return;
+        } catch (Exception e) {
+            fail("A RuntimeException should have been thrown.  Received Exception "
+                 + e.getClass() + " : " + e.getMessage());
+        }
+        fail("A RuntimeException should have been thrown.");
+    }
+
+    //
+    // End EJBObject methods test
+    // ===============================
+}

Modified: incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessTestSuite.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessTestSuite.java?view=diff&rev=489216&r1=489215&r2=489216
==============================================================================
--- incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessTestSuite.java (original)
+++ incubator/openejb/trunk/openejb3/itests/openejb-itests-client/src/main/java/org/apache/openejb/test/stateless/StatelessTestSuite.java Wed Dec 20 14:47:46 2006
@@ -40,7 +40,8 @@
         suite.addTest(new StatelessRemoteBusinessIntfcTests());
         suite.addTest(new StatelessEjbHomeTests() );
         suite.addTest(new StatelessPojoEjbHomeTests() );
-        suite.addTest(new StatelessEjbObjectTests());    
+        suite.addTest(new StatelessEjbObjectTests());
+        suite.addTest(new StatelessPojoEjbObjectTests());
         suite.addTest(new StatelessRemoteIntfcTests());
         suite.addTest(new StatelessPojoRemoteIntrfcTests());
         suite.addTest(new StatelessHomeHandleTests());