[jboss-cvs] JBossAS SVN: r93377 - in trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm: ejbstore and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 11 05:19:21 EDT 2009


Author: alex.loubyansky at jboss.com
Date: 2009-09-11 05:19:21 -0400 (Fri, 11 Sep 2009)
New Revision: 93377

Added:
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ABean.java
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocal.java
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocalHome.java
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/test/
   trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/test/JDBC2PmEjbStoreUnitTestCase.java
Log:
JBAS-7238

Added: trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ABean.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ABean.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ABean.java	2009-09-11 09:19:21 UTC (rev 93377)
@@ -0,0 +1,114 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.cmp2.jdbc2pm.ejbstore.ejb;
+
+
+import javax.ejb.EntityBean;
+import javax.ejb.EntityContext;
+import javax.ejb.RemoveException;
+import javax.ejb.CreateException;
+
+
+/**
+ * @author <a href="mailto:alex at jboss.org">Alexey Loubyansky</a>
+ * @version <tt>$Revision: $</tt>
+ */
+public abstract class ABean implements EntityBean
+{
+   // CMP accessors --------------------------------------------
+   /**
+    * @ejb.pk-field
+    * @ejb.persistent-field
+    * @ejb.interface-method
+    */
+   public abstract Long getId();
+
+   public abstract void setId(Long id);
+
+   /**
+    * @ejb.persistent-field
+    * @ejb.interface-method
+    */
+   public abstract Integer getIntField();
+
+  /**
+   * @ejb.interface-method
+   */
+   public abstract void setIntField(Integer i);
+
+   /**
+    * @ejb.persistent-field
+    * @ejb.interface-method
+    */
+   public abstract Integer getStoreCount();
+
+  /**
+   * @ejb.interface-method
+   */
+   public abstract void setStoreCount(Integer i);
+
+   /**
+    * @throws javax.ejb.CreateException
+    * @ejb.create-method
+    */
+   public Long ejbCreate(Long id, Integer i)
+      throws CreateException
+   {
+      setId(id);
+      setIntField(i);
+      setStoreCount(new Integer(0));
+      return null;
+   }
+
+   public void ejbPostCreate(Long id, Integer i)
+   {
+   }
+
+   public void setEntityContext(EntityContext ctx)
+   {
+   }
+
+   public void unsetEntityContext()
+   {
+   }
+
+   public void ejbActivate()
+   {
+   }
+
+   public void ejbLoad()
+   {
+   }
+
+   public void ejbPassivate()
+   {
+   }
+
+   public void ejbRemove() throws RemoveException
+   {
+   }
+
+   public void ejbStore()
+   {
+      setStoreCount(new Integer(getStoreCount().intValue() + 1));
+   }
+}

Added: trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocal.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocal.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocal.java	2009-09-11 09:19:21 UTC (rev 93377)
@@ -0,0 +1,38 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.cmp2.jdbc2pm.ejbstore.ejb;
+
+/**
+ * @author <a href="mailto:alex at jboss.org">Alexey Loubyansky</a>
+ * @version <tt>$Revision: $</tt>
+ */
+public interface ALocal
+   extends javax.ejb.EJBLocalObject
+{
+   public Long getId(  ) ;
+
+   public Integer getIntField(  ) ;
+
+   public void setIntField( Integer i ) ;
+   
+   public Integer getStoreCount();
+}

Added: trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocalHome.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocalHome.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/ejb/ALocalHome.java	2009-09-11 09:19:21 UTC (rev 93377)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.cmp2.jdbc2pm.ejbstore.ejb;
+
+
+/**
+ * @author <a href="mailto:alex at jboss.org">Alexey Loubyansky</a>
+ * @version <tt>$Revision: $</tt>
+ */
+public interface ALocalHome
+   extends javax.ejb.EJBLocalHome
+{
+   public ALocal create(Long id , Integer i)
+      throws javax.ejb.CreateException;
+
+   public ALocal findByPrimaryKey(Long pk)
+      throws javax.ejb.FinderException;
+}

Added: trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/test/JDBC2PmEjbStoreUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/test/JDBC2PmEjbStoreUnitTestCase.java	                        (rev 0)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/jdbc2pm/ejbstore/test/JDBC2PmEjbStoreUnitTestCase.java	2009-09-11 09:19:21 UTC (rev 93377)
@@ -0,0 +1,82 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.test.cmp2.jdbc2pm.ejbstore.test;
+
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+import org.jboss.test.JBossTestCase;
+import org.jboss.test.cmp2.jdbc2pm.ejbstore.ejb.ALocal;
+import org.jboss.test.cmp2.jdbc2pm.ejbstore.ejb.ALocalHome;
+import org.jboss.test.util.ejb.EJBTestCase;
+import junit.framework.Test;
+
+/**
+ * @author <a href="mailto:alex at jboss.org">Alexey Loubyansky</a>
+ * @version <tt>$Revision: 44174 $</tt>
+ */
+public class JDBC2PmEjbStoreUnitTestCase
+   extends EJBTestCase
+{
+   public static Test suite() throws Exception
+   {
+      return JBossTestCase.getDeploySetup(JDBC2PmEjbStoreUnitTestCase.class, "cmp2-jdbc2pm-ejbstore.jar");
+   }
+
+   public JDBC2PmEjbStoreUnitTestCase(String methodName)
+   {
+      super(methodName);
+   }
+
+   protected void setUp() throws Exception
+   {
+      getALocalHome().create(new Long(1), new Integer(2));
+   }
+
+   protected void tearDown() throws Exception
+   {
+      getALocalHome().remove(new Long(1));
+   }
+
+   // Tests
+
+   public void testMain() throws Throwable
+   {
+      ALocal a = getALocalHome().findByPrimaryKey(new Long(1));
+      int storeCount = a.getStoreCount().intValue();
+      a.setIntField(new Integer(a.getIntField().intValue() + 1));
+      assertEquals(storeCount + 1, a.getStoreCount().intValue());      
+   }
+
+   // Private
+
+   private ALocalHome getALocalHome()
+      throws NamingException
+   {
+      return (ALocalHome)lookup("ALocal");
+   }
+
+   private Object lookup(String name) throws NamingException
+   {
+      InitialContext ic = new InitialContext();
+      return ic.lookup(name);
+   }
+}




More information about the jboss-cvs-commits mailing list