Source Code Cross Referenced for MBBanPersistenceTest.java in  » Portal » liferay-portal-4.4.2 » com » liferay » portlet » messageboards » service » persistence » 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 » Portal » liferay portal 4.4.2 » com.liferay.portlet.messageboards.service.persistence 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003:         *
004:         * Permission is hereby granted, free of charge, to any person obtaining a copy
005:         * of this software and associated documentation files (the "Software"), to deal
006:         * in the Software without restriction, including without limitation the rights
007:         * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008:         * copies of the Software, and to permit persons to whom the Software is
009:         * furnished to do so, subject to the following conditions:
010:         *
011:         * The above copyright notice and this permission notice shall be included in
012:         * all copies or substantial portions of the Software.
013:         *
014:         * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015:         * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016:         * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017:         * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018:         * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019:         * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020:         * SOFTWARE.
021:         */package com.liferay.portlet.messageboards.service.persistence;
022:
023:        import com.liferay.portal.kernel.bean.BeanLocatorUtil;
024:        import com.liferay.portal.service.persistence.BasePersistenceTestCase;
025:
026:        import com.liferay.portlet.messageboards.NoSuchBanException;
027:        import com.liferay.portlet.messageboards.model.MBBan;
028:
029:        /**
030:         * <a href="MBBanPersistenceTest.java.html"><b><i>View Source</i></b></a>
031:         *
032:         * @author Brian Wing Shun Chan
033:         *
034:         */
035:        public class MBBanPersistenceTest extends BasePersistenceTestCase {
036:            protected void setUp() throws Exception {
037:                super .setUp();
038:
039:                _persistence = (MBBanPersistence) BeanLocatorUtil
040:                        .locate(_TX_IMPL);
041:            }
042:
043:            public void testCreate() throws Exception {
044:                long pk = nextLong();
045:
046:                MBBan mbBan = _persistence.create(pk);
047:
048:                assertNotNull(mbBan);
049:
050:                assertEquals(mbBan.getPrimaryKey(), pk);
051:            }
052:
053:            public void testRemove() throws Exception {
054:                MBBan newMBBan = addMBBan();
055:
056:                _persistence.remove(newMBBan);
057:
058:                MBBan existingMBBan = _persistence.fetchByPrimaryKey(newMBBan
059:                        .getPrimaryKey());
060:
061:                assertNull(existingMBBan);
062:            }
063:
064:            public void testUpdateNew() throws Exception {
065:                addMBBan();
066:            }
067:
068:            public void testUpdateExisting() throws Exception {
069:                long pk = nextLong();
070:
071:                MBBan newMBBan = _persistence.create(pk);
072:
073:                newMBBan.setGroupId(nextLong());
074:                newMBBan.setCompanyId(nextLong());
075:                newMBBan.setUserId(nextLong());
076:                newMBBan.setUserName(randomString());
077:                newMBBan.setCreateDate(nextDate());
078:                newMBBan.setModifiedDate(nextDate());
079:                newMBBan.setBanUserId(nextLong());
080:
081:                _persistence.update(newMBBan);
082:
083:                MBBan existingMBBan = _persistence.findByPrimaryKey(newMBBan
084:                        .getPrimaryKey());
085:
086:                assertEquals(existingMBBan.getBanId(), newMBBan.getBanId());
087:                assertEquals(existingMBBan.getGroupId(), newMBBan.getGroupId());
088:                assertEquals(existingMBBan.getCompanyId(), newMBBan
089:                        .getCompanyId());
090:                assertEquals(existingMBBan.getUserId(), newMBBan.getUserId());
091:                assertEquals(existingMBBan.getUserName(), newMBBan
092:                        .getUserName());
093:                assertEquals(existingMBBan.getCreateDate(), newMBBan
094:                        .getCreateDate());
095:                assertEquals(existingMBBan.getModifiedDate(), newMBBan
096:                        .getModifiedDate());
097:                assertEquals(existingMBBan.getBanUserId(), newMBBan
098:                        .getBanUserId());
099:            }
100:
101:            public void testFindByPrimaryKeyExisting() throws Exception {
102:                MBBan newMBBan = addMBBan();
103:
104:                MBBan existingMBBan = _persistence.findByPrimaryKey(newMBBan
105:                        .getPrimaryKey());
106:
107:                assertEquals(existingMBBan, newMBBan);
108:            }
109:
110:            public void testFindByPrimaryKeyMissing() throws Exception {
111:                long pk = nextLong();
112:
113:                try {
114:                    _persistence.findByPrimaryKey(pk);
115:
116:                    fail("Missing entity did not throw NoSuchBanException");
117:                } catch (NoSuchBanException nsee) {
118:                }
119:            }
120:
121:            public void testFetchByPrimaryKeyExisting() throws Exception {
122:                MBBan newMBBan = addMBBan();
123:
124:                MBBan existingMBBan = _persistence.fetchByPrimaryKey(newMBBan
125:                        .getPrimaryKey());
126:
127:                assertEquals(existingMBBan, newMBBan);
128:            }
129:
130:            public void testFetchByPrimaryKeyMissing() throws Exception {
131:                long pk = nextLong();
132:
133:                MBBan missingMBBan = _persistence.fetchByPrimaryKey(pk);
134:
135:                assertNull(missingMBBan);
136:            }
137:
138:            protected MBBan addMBBan() throws Exception {
139:                long pk = nextLong();
140:
141:                MBBan mbBan = _persistence.create(pk);
142:
143:                mbBan.setGroupId(nextLong());
144:                mbBan.setCompanyId(nextLong());
145:                mbBan.setUserId(nextLong());
146:                mbBan.setUserName(randomString());
147:                mbBan.setCreateDate(nextDate());
148:                mbBan.setModifiedDate(nextDate());
149:                mbBan.setBanUserId(nextLong());
150:
151:                _persistence.update(mbBan);
152:
153:                return mbBan;
154:            }
155:
156:            private static final String _TX_IMPL = MBBanPersistence.class
157:                    .getName()
158:                    + ".transaction";
159:            private MBBanPersistence _persistence;
160:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.