001: /*
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: A_VariousPKEC.java 4406 2004-03-19 11:57:20Z benoitf $
023: * --------------------------------------------------------------------------
024: */
025:
026: package org.objectweb.jonas.jtests.clients.entity;
027:
028: import java.util.Collection;
029:
030: import javax.ejb.FinderException;
031:
032: import junit.framework.Assert;
033:
034: import org.objectweb.jonas.jtests.beans.ebasic.Account;
035: import org.objectweb.jonas.jtests.beans.ebasic.AccountHome;
036: import org.objectweb.jonas.jtests.beans.ebasic.Person;
037: import org.objectweb.jonas.jtests.beans.ebasic.PersonHome;
038: import org.objectweb.jonas.jtests.util.JTestCase;
039:
040: /**
041: * This set of test are all tests common to CMP version 1 and CMP version 2
042: * These are tests about the different cases of the primary key type:
043: * - primary key that maps to a single field in the entity bean class (java.lang.Integer),
044: * - unknown primary key class at the bean development phase,
045: * (defered primary key type specification to the deployment phase).
046: * Note that the compilation of this kind of bean is already a good test !!
047: * The case of the primary key maps to multiple fields in the entity bean class
048: * is already tested in the "inherit" test.
049: * Beans used: ebasic/Account, ebasic/Person
050: * @author Helene Joanin (jonas team)
051: */
052: public abstract class A_VariousPKEC extends JTestCase {
053:
054: public A_VariousPKEC(String name) {
055: super (name);
056: }
057:
058: protected void setUp() {
059: super .setUp();
060: useBeans("ebasic", true);
061: }
062:
063: /**
064: * Return AccountHome, that can be either CMP version 1 or CMP version 2 bean.
065: */
066: abstract public AccountHome getAccountHome();
067:
068: /**
069: * Return PersonHome, that can be either CMP version 1 or CMP version 2 bean.
070: */
071: abstract public PersonHome getPersonHome();
072:
073: /**
074: * Creation of a bean with PK that maps a single field
075: */
076: public void testSpkCreate() throws Exception {
077: int num = 1000;
078: String customer = "Gertrude";
079:
080: Account acc = getAccountHome().create(num, customer);
081: Assert.assertEquals("Number", num, acc.getNumberPrimitive());
082: Assert.assertEquals("Customer", customer, acc.getCustomer());
083:
084: // cleaning
085: acc.remove();
086:
087: }
088:
089: /**
090: * Remove of a bean with PK that maps a single field
091: */
092: public void testSpkRemove() throws Exception {
093: int num = 0;
094: Account acc = null;
095:
096: getAccountHome().remove(new Integer(num));
097: try {
098: acc = getAccountHome().findByNumber(num);
099: fail("bean already exists after a remove !!");
100: } catch (FinderException e) {
101: }
102:
103: // cleaning
104: getAccountHome().create(num, "to be removed");
105:
106: }
107:
108: /**
109: * findByPrimaryKey of a bean with PK that maps a single field
110: */
111: public void testSpkFindByPrimaryKey() throws Exception {
112: int num = 10;
113:
114: Account acc = getAccountHome().findByPrimaryKey(
115: new Integer(num));
116: Assert.assertEquals("Number", num, acc.getNumberPrimitive());
117:
118: }
119:
120: /**
121: * findAll beans with PK that maps a single field
122: */
123: public void testSpkFindAll() throws Exception {
124: Collection col = getAccountHome().findAll();
125: }
126:
127: /**
128: * Creation of a bean with unknown PK class at the bean development phase
129: */
130: public void testUpkCreate() throws Exception {
131: int num = 1000;
132: String name = "Gertrude";
133:
134: Person prs = getPersonHome().create(num, name);
135: Assert.assertEquals("Number", num, prs.getNumberPrimitive());
136: Assert.assertEquals("Customer", name, prs.getName());
137:
138: // cleaning
139: prs.remove();
140:
141: }
142:
143: /**
144: * Remove of a bean with unknown PK class at the bean development phase
145: */
146: public void testUpkRemove() throws Exception {
147: int num = 0;
148: Person prs = null;
149:
150: getPersonHome().remove(new Integer(num));
151: try {
152: prs = getPersonHome().findByNumber(num);
153: fail("bean already exists after a remove !!");
154: } catch (FinderException e) {
155: }
156:
157: // cleaning
158: getPersonHome().create(num, "to be removed");
159:
160: }
161:
162: /**
163: * findByPrimaryKey of a bean with unknown PK class at the bean development phase
164: */
165: public void testUpkFindByPrimaryKey() throws Exception {
166: int num = 10;
167:
168: Person prs = getPersonHome().findByPrimaryKey(new Integer(num));
169: Assert.assertEquals("Number", num, prs.getNumberPrimitive());
170:
171: }
172:
173: /**
174: * findAll beans with unknown PK class at the bean development phase
175: */
176: public void testUpkFindAll() throws Exception {
177: Collection col = getPersonHome().findAll();
178: }
179:
180: }
|