01: /*
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 1999 Bull S.A.
04: * Contact: jonas-team@objectweb.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19: * USA
20: *
21: * --------------------------------------------------------------------------
22: * $Id: B_BasicHomeInterface.java 4066 2004-01-21 14:51:28Z legrasi $
23: * --------------------------------------------------------------------------
24: */
25:
26: package org.objectweb.jonas.jtests.clients.entity;
27:
28: import java.util.Collection;
29: import java.util.Enumeration;
30: import java.util.Iterator;
31: import java.rmi.RemoteException;
32: import javax.ejb.CreateException;
33: import javax.ejb.FinderException;
34: import javax.ejb.RemoveException;
35: import javax.naming.Context;
36: import javax.naming.InitialContext;
37: import javax.naming.NamingException;
38: import javax.transaction.UserTransaction;
39:
40: import org.objectweb.jonas.jtests.beans.fbasic.Simple;
41: import org.objectweb.jonas.jtests.beans.fbasic.SimpleHome;
42: import org.objectweb.jonas.jtests.util.JTestCase;
43:
44: /**
45: * test cases common to both suites CMP and BMP.
46: */
47: public abstract class B_BasicHomeInterface extends JTestCase {
48:
49: protected static SimpleHome home = null;
50:
51: public B_BasicHomeInterface(String name) {
52: super (name);
53: }
54:
55: /**
56: * init environment:
57: * - load beans
58: * - create/init database for entities.
59: */
60: protected void setUp() {
61: super .setUp();
62: useBeans("fbasic", true);
63: }
64:
65: /**
66: * return SimpleHome, that can be either BMP or CMP bean.
67: */
68: abstract public SimpleHome getHome();
69:
70: /**
71: * testFindByPK verify that findByPrimaryKey find an existing entityBean
72: * pre condition: an element with "pk1" as primary key must exist in the database
73: *
74: * findByPrimaryKey("testFindByPK") must pass.
75: */
76:
77: public void testFindByPK() throws Exception {
78: getHome().findByPrimaryKey("pk1");
79:
80: }
81:
82: /**
83: * testCreateNewEntity verify that we can create a new entityBean
84: * We create a new entity testCreateNewEntity, 20, 6
85: * the findByTestName("testCreateNewEntity") must pass and the resulting must be equals to 20
86: * pre condition the testCreateNewEntity element must not exist
87: *
88: */
89: public void testCreateNewEntityFindByNameRemove() throws Exception {
90: getHome().create("pk100", 20, 6);
91: Simple entity2 = getHome().findByTestName("pk100");
92: assertEquals(20, entity2.getInfo());
93: // cleaning
94: entity2.remove();
95:
96: }
97:
98: }
|