/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portlet.documentlibrary.service.persistence.test; import com.liferay.document.library.kernel.exception.NoSuchFileRankException; import com.liferay.document.library.kernel.model.DLFileRank; import com.liferay.document.library.kernel.service.DLFileRankLocalServiceUtil; import com.liferay.document.library.kernel.service.persistence.DLFileRankPersistence; import com.liferay.document.library.kernel.service.persistence.DLFileRankUtil; import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil; import com.liferay.portal.kernel.dao.orm.ProjectionFactoryUtil; import com.liferay.portal.kernel.dao.orm.QueryUtil; import com.liferay.portal.kernel.dao.orm.RestrictionsFactoryUtil; import com.liferay.portal.kernel.test.ReflectionTestUtil; import com.liferay.portal.kernel.test.rule.AggregateTestRule; import com.liferay.portal.kernel.test.util.RandomTestUtil; import com.liferay.portal.kernel.transaction.Propagation; import com.liferay.portal.kernel.util.IntegerWrapper; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.util.OrderByComparatorFactoryUtil; import com.liferay.portal.kernel.util.Time; import com.liferay.portal.test.rule.LiferayIntegrationTestRule; import com.liferay.portal.test.rule.PersistenceTestRule; import com.liferay.portal.test.rule.TransactionalTestRule; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; import java.io.Serializable; import java.util.ArrayList; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; /** * @generated */ public class DLFileRankPersistenceTest { @ClassRule @Rule public static final AggregateTestRule aggregateTestRule = new AggregateTestRule(new LiferayIntegrationTestRule(), PersistenceTestRule.INSTANCE, new TransactionalTestRule(Propagation.REQUIRED)); @Before public void setUp() { _persistence = DLFileRankUtil.getPersistence(); Class<?> clazz = _persistence.getClass(); _dynamicQueryClassLoader = clazz.getClassLoader(); } @After public void tearDown() throws Exception { Iterator<DLFileRank> iterator = _dlFileRanks.iterator(); while (iterator.hasNext()) { _persistence.remove(iterator.next()); iterator.remove(); } } @Test public void testCreate() throws Exception { long pk = RandomTestUtil.nextLong(); DLFileRank dlFileRank = _persistence.create(pk); Assert.assertNotNull(dlFileRank); Assert.assertEquals(dlFileRank.getPrimaryKey(), pk); } @Test public void testRemove() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); _persistence.remove(newDLFileRank); DLFileRank existingDLFileRank = _persistence.fetchByPrimaryKey(newDLFileRank.getPrimaryKey()); Assert.assertNull(existingDLFileRank); } @Test public void testUpdateNew() throws Exception { addDLFileRank(); } @Test public void testUpdateExisting() throws Exception { long pk = RandomTestUtil.nextLong(); DLFileRank newDLFileRank = _persistence.create(pk); newDLFileRank.setGroupId(RandomTestUtil.nextLong()); newDLFileRank.setCompanyId(RandomTestUtil.nextLong()); newDLFileRank.setUserId(RandomTestUtil.nextLong()); newDLFileRank.setCreateDate(RandomTestUtil.nextDate()); newDLFileRank.setFileEntryId(RandomTestUtil.nextLong()); newDLFileRank.setActive(RandomTestUtil.randomBoolean()); _dlFileRanks.add(_persistence.update(newDLFileRank)); DLFileRank existingDLFileRank = _persistence.findByPrimaryKey(newDLFileRank.getPrimaryKey()); Assert.assertEquals(existingDLFileRank.getFileRankId(), newDLFileRank.getFileRankId()); Assert.assertEquals(existingDLFileRank.getGroupId(), newDLFileRank.getGroupId()); Assert.assertEquals(existingDLFileRank.getCompanyId(), newDLFileRank.getCompanyId()); Assert.assertEquals(existingDLFileRank.getUserId(), newDLFileRank.getUserId()); Assert.assertEquals(Time.getShortTimestamp( existingDLFileRank.getCreateDate()), Time.getShortTimestamp(newDLFileRank.getCreateDate())); Assert.assertEquals(existingDLFileRank.getFileEntryId(), newDLFileRank.getFileEntryId()); Assert.assertEquals(existingDLFileRank.getActive(), newDLFileRank.getActive()); } @Test public void testCountByUserId() throws Exception { _persistence.countByUserId(RandomTestUtil.nextLong()); _persistence.countByUserId(0L); } @Test public void testCountByFileEntryId() throws Exception { _persistence.countByFileEntryId(RandomTestUtil.nextLong()); _persistence.countByFileEntryId(0L); } @Test public void testCountByG_U() throws Exception { _persistence.countByG_U(RandomTestUtil.nextLong(), RandomTestUtil.nextLong()); _persistence.countByG_U(0L, 0L); } @Test public void testCountByG_U_A() throws Exception { _persistence.countByG_U_A(RandomTestUtil.nextLong(), RandomTestUtil.nextLong(), RandomTestUtil.randomBoolean()); _persistence.countByG_U_A(0L, 0L, RandomTestUtil.randomBoolean()); } @Test public void testCountByC_U_F() throws Exception { _persistence.countByC_U_F(RandomTestUtil.nextLong(), RandomTestUtil.nextLong(), RandomTestUtil.nextLong()); _persistence.countByC_U_F(0L, 0L, 0L); } @Test public void testFindByPrimaryKeyExisting() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); DLFileRank existingDLFileRank = _persistence.findByPrimaryKey(newDLFileRank.getPrimaryKey()); Assert.assertEquals(existingDLFileRank, newDLFileRank); } @Test(expected = NoSuchFileRankException.class) public void testFindByPrimaryKeyMissing() throws Exception { long pk = RandomTestUtil.nextLong(); _persistence.findByPrimaryKey(pk); } @Test public void testFindAll() throws Exception { _persistence.findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, getOrderByComparator()); } protected OrderByComparator<DLFileRank> getOrderByComparator() { return OrderByComparatorFactoryUtil.create("DLFileRank", "fileRankId", true, "groupId", true, "companyId", true, "userId", true, "createDate", true, "fileEntryId", true, "active", true); } @Test public void testFetchByPrimaryKeyExisting() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); DLFileRank existingDLFileRank = _persistence.fetchByPrimaryKey(newDLFileRank.getPrimaryKey()); Assert.assertEquals(existingDLFileRank, newDLFileRank); } @Test public void testFetchByPrimaryKeyMissing() throws Exception { long pk = RandomTestUtil.nextLong(); DLFileRank missingDLFileRank = _persistence.fetchByPrimaryKey(pk); Assert.assertNull(missingDLFileRank); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereAllPrimaryKeysExist() throws Exception { DLFileRank newDLFileRank1 = addDLFileRank(); DLFileRank newDLFileRank2 = addDLFileRank(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newDLFileRank1.getPrimaryKey()); primaryKeys.add(newDLFileRank2.getPrimaryKey()); Map<Serializable, DLFileRank> dlFileRanks = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(2, dlFileRanks.size()); Assert.assertEquals(newDLFileRank1, dlFileRanks.get(newDLFileRank1.getPrimaryKey())); Assert.assertEquals(newDLFileRank2, dlFileRanks.get(newDLFileRank2.getPrimaryKey())); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereNoPrimaryKeysExist() throws Exception { long pk1 = RandomTestUtil.nextLong(); long pk2 = RandomTestUtil.nextLong(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(pk1); primaryKeys.add(pk2); Map<Serializable, DLFileRank> dlFileRanks = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertTrue(dlFileRanks.isEmpty()); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereSomePrimaryKeysExist() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); long pk = RandomTestUtil.nextLong(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newDLFileRank.getPrimaryKey()); primaryKeys.add(pk); Map<Serializable, DLFileRank> dlFileRanks = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(1, dlFileRanks.size()); Assert.assertEquals(newDLFileRank, dlFileRanks.get(newDLFileRank.getPrimaryKey())); } @Test public void testFetchByPrimaryKeysWithNoPrimaryKeys() throws Exception { Set<Serializable> primaryKeys = new HashSet<Serializable>(); Map<Serializable, DLFileRank> dlFileRanks = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertTrue(dlFileRanks.isEmpty()); } @Test public void testFetchByPrimaryKeysWithOnePrimaryKey() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newDLFileRank.getPrimaryKey()); Map<Serializable, DLFileRank> dlFileRanks = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(1, dlFileRanks.size()); Assert.assertEquals(newDLFileRank, dlFileRanks.get(newDLFileRank.getPrimaryKey())); } @Test public void testActionableDynamicQuery() throws Exception { final IntegerWrapper count = new IntegerWrapper(); ActionableDynamicQuery actionableDynamicQuery = DLFileRankLocalServiceUtil.getActionableDynamicQuery(); actionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod<DLFileRank>() { @Override public void performAction(DLFileRank dlFileRank) { Assert.assertNotNull(dlFileRank); count.increment(); } }); actionableDynamicQuery.performActions(); Assert.assertEquals(count.getValue(), _persistence.countAll()); } @Test public void testDynamicQueryByPrimaryKeyExisting() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(DLFileRank.class, _dynamicQueryClassLoader); dynamicQuery.add(RestrictionsFactoryUtil.eq("fileRankId", newDLFileRank.getFileRankId())); List<DLFileRank> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(1, result.size()); DLFileRank existingDLFileRank = result.get(0); Assert.assertEquals(existingDLFileRank, newDLFileRank); } @Test public void testDynamicQueryByPrimaryKeyMissing() throws Exception { DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(DLFileRank.class, _dynamicQueryClassLoader); dynamicQuery.add(RestrictionsFactoryUtil.eq("fileRankId", RandomTestUtil.nextLong())); List<DLFileRank> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(0, result.size()); } @Test public void testDynamicQueryByProjectionExisting() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(DLFileRank.class, _dynamicQueryClassLoader); dynamicQuery.setProjection(ProjectionFactoryUtil.property("fileRankId")); Object newFileRankId = newDLFileRank.getFileRankId(); dynamicQuery.add(RestrictionsFactoryUtil.in("fileRankId", new Object[] { newFileRankId })); List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(1, result.size()); Object existingFileRankId = result.get(0); Assert.assertEquals(existingFileRankId, newFileRankId); } @Test public void testDynamicQueryByProjectionMissing() throws Exception { DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(DLFileRank.class, _dynamicQueryClassLoader); dynamicQuery.setProjection(ProjectionFactoryUtil.property("fileRankId")); dynamicQuery.add(RestrictionsFactoryUtil.in("fileRankId", new Object[] { RandomTestUtil.nextLong() })); List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(0, result.size()); } @Test public void testResetOriginalValues() throws Exception { DLFileRank newDLFileRank = addDLFileRank(); _persistence.clearCache(); DLFileRank existingDLFileRank = _persistence.findByPrimaryKey(newDLFileRank.getPrimaryKey()); Assert.assertEquals(Long.valueOf(existingDLFileRank.getCompanyId()), ReflectionTestUtil.<Long>invoke(existingDLFileRank, "getOriginalCompanyId", new Class<?>[0])); Assert.assertEquals(Long.valueOf(existingDLFileRank.getUserId()), ReflectionTestUtil.<Long>invoke(existingDLFileRank, "getOriginalUserId", new Class<?>[0])); Assert.assertEquals(Long.valueOf(existingDLFileRank.getFileEntryId()), ReflectionTestUtil.<Long>invoke(existingDLFileRank, "getOriginalFileEntryId", new Class<?>[0])); } protected DLFileRank addDLFileRank() throws Exception { long pk = RandomTestUtil.nextLong(); DLFileRank dlFileRank = _persistence.create(pk); dlFileRank.setGroupId(RandomTestUtil.nextLong()); dlFileRank.setCompanyId(RandomTestUtil.nextLong()); dlFileRank.setUserId(RandomTestUtil.nextLong()); dlFileRank.setCreateDate(RandomTestUtil.nextDate()); dlFileRank.setFileEntryId(RandomTestUtil.nextLong()); dlFileRank.setActive(RandomTestUtil.randomBoolean()); _dlFileRanks.add(_persistence.update(dlFileRank)); return dlFileRank; } private List<DLFileRank> _dlFileRanks = new ArrayList<DLFileRank>(); private DLFileRankPersistence _persistence; private ClassLoader _dynamicQueryClassLoader; }