Source Code Cross Referenced for A_VariousPKEC.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas » jtests » clients » entity » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » JOnAS 4.8.6 » org.objectweb.jonas.jtests.clients.entity 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


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:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.