You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2012/02/21 09:21:11 UTC

svn commit: r1291648 - /openejb/trunk/openejb/container/openejb-core/src/test/java/org/apache/openejb/core/stateful/StatefulJPATest.java

Author: rmannibucau
Date: Tue Feb 21 08:21:11 2012
New Revision: 1291648

URL: http://svn.apache.org/viewvc?rev=1291648&view=rev
Log:
adding a test to check transaction behavior on remove method of stateful (follow a mailing list question)

Added:
    openejb/trunk/openejb/container/openejb-core/src/test/java/org/apache/openejb/core/stateful/StatefulJPATest.java

Added: openejb/trunk/openejb/container/openejb-core/src/test/java/org/apache/openejb/core/stateful/StatefulJPATest.java
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb/container/openejb-core/src/test/java/org/apache/openejb/core/stateful/StatefulJPATest.java?rev=1291648&view=auto
==============================================================================
--- openejb/trunk/openejb/container/openejb-core/src/test/java/org/apache/openejb/core/stateful/StatefulJPATest.java (added)
+++ openejb/trunk/openejb/container/openejb-core/src/test/java/org/apache/openejb/core/stateful/StatefulJPATest.java Tue Feb 21 08:21:11 2012
@@ -0,0 +1,129 @@
+/**
+ * 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.core.stateful;
+
+import org.apache.openejb.jee.Empty;
+import org.apache.openejb.jee.StatefulBean;
+import org.apache.openejb.jee.jpa.unit.Persistence;
+import org.apache.openejb.jee.jpa.unit.PersistenceUnit;
+import org.apache.openejb.junit.ApplicationComposer;
+import org.apache.openejb.junit.Configuration;
+import org.apache.openejb.junit.Module;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+import javax.ejb.LocalBean;
+import javax.ejb.Remove;
+import javax.ejb.Stateful;
+import javax.ejb.TransactionAttribute;
+import javax.ejb.TransactionAttributeType;
+import javax.naming.Context;
+import javax.naming.NamingException;
+import javax.persistence.Entity;
+import javax.persistence.EntityManager;
+import javax.persistence.GeneratedValue;
+import javax.persistence.Id;
+import javax.persistence.PersistenceContext;
+import java.util.Properties;
+
+/**
+ * http://openejb.979440.n4.nabble.com/openEJB-fail-on-second-test-tp4401889p4406177.html
+ */
+@RunWith(ApplicationComposer.class)
+public class StatefulJPATest {
+    @Test
+    public void testRemoveOk() throws NamingException {
+        final Context ctx = (Context) System.getProperties().get(ApplicationComposer.OPENEJB_APPLICATION_COMPOSER_CONTEXT);
+        final AStateful stateful = (AStateful) ctx.lookup("global/StatefulJPATest/app/AStateful");
+        for (int i = 0; i < 3; i++) {
+            stateful.saveSomething();
+        }
+        stateful.remove();
+    }
+
+    @Configuration
+    public Properties config() {
+        final Properties p = new Properties();
+        p.setProperty("StatefulJPATest", "new://Resource?type=DataSource");
+        p.setProperty("StatefulJPATest.JdbcDriver", "org.hsqldb.jdbcDriver");
+        p.setProperty("StatefulJPATest.JdbcUrl", "jdbc:hsqldb:mem:stateful-jpa");
+        return p;
+    }
+
+    @Module
+    public StatefulBean app() throws Exception {
+        final StatefulBean bean = new StatefulBean(AStateful.class);
+        bean.setLocalBean(new Empty());
+        return bean;
+    }
+
+    @Module
+    public Persistence persistence() {
+        final PersistenceUnit unit = new PersistenceUnit("foo-unit");
+        unit.addClass(AnEntity.class);
+        unit.setProperty("openjpa.jdbc.SynchronizeMappings", "buildSchema(ForeignKeys=true)");
+        unit.getProperties().setProperty("openjpa.RuntimeUnenhancedClasses", "supported");
+        unit.setExcludeUnlistedClasses(true);
+
+        final Persistence persistence = new Persistence(unit);
+        persistence.setVersion("2.0");
+        return persistence;
+    }
+
+    @LocalBean
+    @Stateful
+    @TransactionAttribute(TransactionAttributeType.REQUIRED)
+    public static class AStateful {
+        @PersistenceContext
+        private EntityManager em;
+
+        public void saveSomething() {
+            final AnEntity entity = new AnEntity();
+            entity.setName("name");
+            em.persist(entity);
+        }
+
+        @Remove
+        public void remove() {
+            saveSomething();
+        }
+    }
+
+    @Entity
+    public static class AnEntity {
+        @Id
+        @GeneratedValue
+        private long id;
+        private String name;
+
+        public long getId() {
+            return id;
+        }
+
+        public void setId(long i) {
+            id = i;
+        }
+
+        public String getName() {
+            return name;
+        }
+
+        public void setName(String n) {
+            name = n;
+        }
+    }
+}