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: }
|