You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2006/10/25 21:15:01 UTC

svn commit: r467738 - /incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/

Author: dblevins
Date: Wed Oct 25 12:15:00 2006
New Revision: 467738

URL: http://svn.apache.org/viewvc?view=rev&rev=467738
Log:
Patch from Mohammad Nour, OPENEJB-174: iTest: StatefulEjbHomeTests

Added:
    incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java
    incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java
Modified:
    incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java
    incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulLocalTestSuite.java
    incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulTestSuite.java

Modified: incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java?view=diff&rev=467738&r1=467737&r2=467738
==============================================================================
--- incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java (original)
+++ incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulEjbHomeTests.java Wed Oct 25 12:15:00 2006
@@ -24,7 +24,7 @@
  * @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
  * @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
  */
-public class StatefulEjbHomeTests extends BasicStatefulTestClient{
+public class StatefulEjbHomeTests extends BasicStatefulTestClient {
 
     public StatefulEjbHomeTests(){
         super("EJBHome.");

Modified: incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulLocalTestSuite.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulLocalTestSuite.java?view=diff&rev=467738&r1=467737&r2=467738
==============================================================================
--- incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulLocalTestSuite.java (original)
+++ incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulLocalTestSuite.java Wed Oct 25 12:15:00 2006
@@ -42,6 +42,8 @@
         suite.addTest(new StatefulLocalBusinessIntfcTests());
         suite.addTest(new StatefulRemoteBusinessIntfcTests());
         suite.addTest(new StatefulEjbHomeTests());
+        suite.addTest(new StatefulPojoEjbHomeTests());
+        suite.addTest(new StatefulPojoEjbLocalHomeTests());
         suite.addTest(new StatefulEjbObjectTests());
         suite.addTest(new StatefulRemoteIntfcTests());
         suite.addTest(new StatefulHomeHandleTests());

Added: incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java?view=auto&rev=467738
==============================================================================
--- incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java (added)
+++ incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbHomeTests.java Wed Oct 25 12:15:00 2006
@@ -0,0 +1,106 @@
+/**
+ * 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.stateful;
+
+import javax.ejb.EJBMetaData;
+
+/**
+ * [3] Should be run as the third test suite of the BasicStatefulTestClients
+ *
+ * @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
+ * @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
+ */
+public class StatefulPojoEjbHomeTests extends BasicStatefulTestClient {
+
+    public StatefulPojoEjbHomeTests(){
+        super("EJBHome.");
+    }
+
+    protected void setUp() throws Exception{
+        super.setUp();
+        Object obj = initialContext.lookup("client/tests/stateful/BasicStatefulPojoHome");
+        ejbHome = (BasicStatefulHome)javax.rmi.PortableRemoteObject.narrow( obj, BasicStatefulHome.class);
+    }
+
+    //===============================
+    // Test ejb home methods
+    //
+    public void test01_getEJBMetaData(){
+        try{
+        	EJBMetaData ejbMetaData = ejbHome.getEJBMetaData();
+        	assertNotNull( "The EJBMetaData is null", ejbMetaData );
+        } catch (Exception e){
+            fail("Received Exception "+e.getClass()+ " : "+e.getMessage());
+        }
+    }
+
+    public void test02_getHomeHandle(){
+        try{
+            ejbHomeHandle = ejbHome.getHomeHandle();
+            assertNotNull( "The HomeHandle is null", ejbHomeHandle );
+        } catch (Exception e){
+            fail("Received Exception "+e.getClass()+ " : "+e.getMessage());
+        }
+    }
+
+    /**
+     * ------------------------------------
+     * 5.3.2 Removing a session object
+     * A client may remove a session object using the remove() method on the javax.ejb.EJBObject
+     * interface, or the remove(Handle handle) method of the javax.ejb.EJBHome interface.
+     *
+     * Because session objects do not have primary keys that are accessible to clients, invoking the
+     * javax.ejb.EJBHome.remove(Object primaryKey) method on a session results in the
+     * javax.ejb.RemoveException.
+     *
+     * ------------------------------------
+     * 5.5 Session object identity
+     *
+     * Session objects are intended to be private resources used only by the
+     * client that created them. For this reason, session objects, from the
+     * clientÂ’s perspective, appear anonymous. In contrast to entity objects,
+     * which expose their identity as a primary key, session objects hide their
+     * identity. As a result, the EJBObject.getPrimaryKey() and
+     * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException
+     * if called on a session bean. If the EJBMetaData.getPrimaryKeyClass()
+     * method is invoked on a EJBMetaData object for a Session bean, the method throws
+     * the java.lang.RuntimeException.
+     * ------------------------------------
+     *
+     * Sections 5.3.2 and 5.5 conflict.  5.3.2 says to throw javax.ejb.RemoveException, 5.5 says to
+     * throw java.rmi.RemoteException.
+     *
+     * For now, we are going with java.rmi.RemoteException.
+     * =====================================================================================================
+     * TODO - MNour: Please add related sections from EJB3.0 Core contracts and requirements specification
+     * 		(Sections: 3.6.2.2, 3.6.3.2 and 3.6.5)
+     */ 
+    public void test03_removeByPrimaryKey(){
+        try{
+            ejbHome.remove("primaryKey");
+        } catch (java.rmi.RemoteException e){
+            assertTrue( true );
+            return;
+        } catch (Exception e){
+            fail("Received Exception "+e.getClass()+ " : "+e.getMessage());
+        }
+        assertTrue("java.rmi.RemoteException should have been thrown", false );
+    }
+    //
+    // Test ejb home methods
+    //===============================
+}

Added: incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java?view=auto&rev=467738
==============================================================================
--- incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java (added)
+++ incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulPojoEjbLocalHomeTests.java Wed Oct 25 12:15:00 2006
@@ -0,0 +1,87 @@
+/**
+ * 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.stateful;
+
+import javax.ejb.EJBException;
+
+/**
+ * [3] Should be run as the third test suite of the BasicStatefulTestClients
+ *
+ * @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
+ * @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
+ */
+public class StatefulPojoEjbLocalHomeTests extends BasicStatefulLocalTestClient {
+
+    public StatefulPojoEjbLocalHomeTests(){
+        super("EJBLocalHome.");
+    }
+
+    protected void setUp() throws Exception{
+        super.setUp();
+        ejbLocalHome = (BasicStatefulLocalHome) initialContext.lookup("client/tests/stateful/BasicStatefulPojoHomeLocal");
+    }
+
+    //===============================
+    // Test ejb home methods
+    //
+    /**
+     * ------------------------------------
+     * 5.3.2 Removing a session object
+     * A client may remove a session object using the remove() method on the javax.ejb.EJBObject
+     * interface, or the remove(Handle handle) method of the javax.ejb.EJBHome interface.
+     *
+     * Because session objects do not have primary keys that are accessible to clients, invoking the
+     * javax.ejb.EJBHome.remove(Object primaryKey) method on a session results in the
+     * javax.ejb.RemoveException.
+     *
+     * ------------------------------------
+     * 5.5 Session object identity
+     *
+     * Session objects are intended to be private resources used only by the
+     * client that created them. For this reason, session objects, from the
+     * clientÂ’s perspective, appear anonymous. In contrast to entity objects,
+     * which expose their identity as a primary key, session objects hide their
+     * identity. As a result, the EJBObject.getPrimaryKey() and
+     * EJBHome.remove(Object primaryKey) methods result in a java.rmi.RemoteException
+     * if called on a session bean. If the EJBMetaData.getPrimaryKeyClass()
+     * method is invoked on a EJBMetaData object for a Session bean, the method throws
+     * the java.lang.RuntimeException.
+     * ------------------------------------
+     *
+     * Sections 5.3.2 and 5.5 conflict.  5.3.2 says to throw javax.ejb.RemoveException, 5.5 says to
+     * throw java.rmi.RemoteException.
+     *
+     * For now, we are going with java.rmi.RemoteException.
+     * =====================================================================================================
+     * TODO - MNour: Please add related sections from EJB3.0 Core contracts and requirements specification
+     * 		(Sections: 3.6.2.2, 3.6.3.2 and 3.6.5)
+     */ 
+    public void test03_removeByPrimaryKey(){
+        try{
+            ejbLocalHome.remove("primaryKey");
+        } catch (EJBException e){
+            assertTrue( true );
+            return;
+        } catch (Exception e){
+            fail("Received Exception "+e.getClass()+ " : "+e.getMessage());
+        }
+        assertTrue("javx.ejb.EJBException should have been thrown", false );
+    }
+    //
+    // Test ejb home methods
+    //===============================
+}

Modified: incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulTestSuite.java
URL: http://svn.apache.org/viewvc/incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulTestSuite.java?view=diff&rev=467738&r1=467737&r2=467738
==============================================================================
--- incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulTestSuite.java (original)
+++ incubator/openejb/trunk/openejb3/openejb-itests/src/main/java/org/apache/openejb/test/stateful/StatefulTestSuite.java Wed Oct 25 12:15:00 2006
@@ -38,6 +38,7 @@
         suite.addTest(new StatefulPojoHomeIntfcTests());
         suite.addTest(new StatefulRemoteBusinessIntfcTests());
         suite.addTest(new StatefulEjbHomeTests());
+        suite.addTest(new StatefulPojoEjbHomeTests());
         suite.addTest(new StatefulEjbObjectTests());
         suite.addTest(new StatefulRemoteIntfcTests());
         suite.addTest(new StatefulHomeHandleTests());