/** * 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.polls.service.persistence.test; import com.liferay.arquillian.extension.junit.bridge.junit.Arquillian; import com.liferay.polls.exception.NoSuchChoiceException; import com.liferay.polls.model.PollsChoice; import com.liferay.polls.service.PollsChoiceLocalServiceUtil; import com.liferay.polls.service.persistence.PollsChoicePersistence; import com.liferay.polls.service.persistence.PollsChoiceUtil; 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.StringPool; 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 org.junit.runner.RunWith; 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.Objects; import java.util.Set; /** * @generated */ @RunWith(Arquillian.class) public class PollsChoicePersistenceTest { @ClassRule @Rule public static final AggregateTestRule aggregateTestRule = new AggregateTestRule(new LiferayIntegrationTestRule(), PersistenceTestRule.INSTANCE, new TransactionalTestRule(Propagation.REQUIRED, "com.liferay.polls.service")); @Before public void setUp() { _persistence = PollsChoiceUtil.getPersistence(); Class<?> clazz = _persistence.getClass(); _dynamicQueryClassLoader = clazz.getClassLoader(); } @After public void tearDown() throws Exception { Iterator<PollsChoice> iterator = _pollsChoices.iterator(); while (iterator.hasNext()) { _persistence.remove(iterator.next()); iterator.remove(); } } @Test public void testCreate() throws Exception { long pk = RandomTestUtil.nextLong(); PollsChoice pollsChoice = _persistence.create(pk); Assert.assertNotNull(pollsChoice); Assert.assertEquals(pollsChoice.getPrimaryKey(), pk); } @Test public void testRemove() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); _persistence.remove(newPollsChoice); PollsChoice existingPollsChoice = _persistence.fetchByPrimaryKey(newPollsChoice.getPrimaryKey()); Assert.assertNull(existingPollsChoice); } @Test public void testUpdateNew() throws Exception { addPollsChoice(); } @Test public void testUpdateExisting() throws Exception { long pk = RandomTestUtil.nextLong(); PollsChoice newPollsChoice = _persistence.create(pk); newPollsChoice.setUuid(RandomTestUtil.randomString()); newPollsChoice.setGroupId(RandomTestUtil.nextLong()); newPollsChoice.setCompanyId(RandomTestUtil.nextLong()); newPollsChoice.setUserId(RandomTestUtil.nextLong()); newPollsChoice.setUserName(RandomTestUtil.randomString()); newPollsChoice.setCreateDate(RandomTestUtil.nextDate()); newPollsChoice.setModifiedDate(RandomTestUtil.nextDate()); newPollsChoice.setQuestionId(RandomTestUtil.nextLong()); newPollsChoice.setName(RandomTestUtil.randomString()); newPollsChoice.setDescription(RandomTestUtil.randomString()); newPollsChoice.setLastPublishDate(RandomTestUtil.nextDate()); _pollsChoices.add(_persistence.update(newPollsChoice)); PollsChoice existingPollsChoice = _persistence.findByPrimaryKey(newPollsChoice.getPrimaryKey()); Assert.assertEquals(existingPollsChoice.getUuid(), newPollsChoice.getUuid()); Assert.assertEquals(existingPollsChoice.getChoiceId(), newPollsChoice.getChoiceId()); Assert.assertEquals(existingPollsChoice.getGroupId(), newPollsChoice.getGroupId()); Assert.assertEquals(existingPollsChoice.getCompanyId(), newPollsChoice.getCompanyId()); Assert.assertEquals(existingPollsChoice.getUserId(), newPollsChoice.getUserId()); Assert.assertEquals(existingPollsChoice.getUserName(), newPollsChoice.getUserName()); Assert.assertEquals(Time.getShortTimestamp( existingPollsChoice.getCreateDate()), Time.getShortTimestamp(newPollsChoice.getCreateDate())); Assert.assertEquals(Time.getShortTimestamp( existingPollsChoice.getModifiedDate()), Time.getShortTimestamp(newPollsChoice.getModifiedDate())); Assert.assertEquals(existingPollsChoice.getQuestionId(), newPollsChoice.getQuestionId()); Assert.assertEquals(existingPollsChoice.getName(), newPollsChoice.getName()); Assert.assertEquals(existingPollsChoice.getDescription(), newPollsChoice.getDescription()); Assert.assertEquals(Time.getShortTimestamp( existingPollsChoice.getLastPublishDate()), Time.getShortTimestamp(newPollsChoice.getLastPublishDate())); } @Test public void testCountByUuid() throws Exception { _persistence.countByUuid(StringPool.BLANK); _persistence.countByUuid(StringPool.NULL); _persistence.countByUuid((String)null); } @Test public void testCountByUUID_G() throws Exception { _persistence.countByUUID_G(StringPool.BLANK, RandomTestUtil.nextLong()); _persistence.countByUUID_G(StringPool.NULL, 0L); _persistence.countByUUID_G((String)null, 0L); } @Test public void testCountByUuid_C() throws Exception { _persistence.countByUuid_C(StringPool.BLANK, RandomTestUtil.nextLong()); _persistence.countByUuid_C(StringPool.NULL, 0L); _persistence.countByUuid_C((String)null, 0L); } @Test public void testCountByQuestionId() throws Exception { _persistence.countByQuestionId(RandomTestUtil.nextLong()); _persistence.countByQuestionId(0L); } @Test public void testCountByQ_N() throws Exception { _persistence.countByQ_N(RandomTestUtil.nextLong(), StringPool.BLANK); _persistence.countByQ_N(0L, StringPool.NULL); _persistence.countByQ_N(0L, (String)null); } @Test public void testFindByPrimaryKeyExisting() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); PollsChoice existingPollsChoice = _persistence.findByPrimaryKey(newPollsChoice.getPrimaryKey()); Assert.assertEquals(existingPollsChoice, newPollsChoice); } @Test(expected = NoSuchChoiceException.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<PollsChoice> getOrderByComparator() { return OrderByComparatorFactoryUtil.create("PollsChoice", "uuid", true, "choiceId", true, "groupId", true, "companyId", true, "userId", true, "userName", true, "createDate", true, "modifiedDate", true, "questionId", true, "name", true, "description", true, "lastPublishDate", true); } @Test public void testFetchByPrimaryKeyExisting() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); PollsChoice existingPollsChoice = _persistence.fetchByPrimaryKey(newPollsChoice.getPrimaryKey()); Assert.assertEquals(existingPollsChoice, newPollsChoice); } @Test public void testFetchByPrimaryKeyMissing() throws Exception { long pk = RandomTestUtil.nextLong(); PollsChoice missingPollsChoice = _persistence.fetchByPrimaryKey(pk); Assert.assertNull(missingPollsChoice); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereAllPrimaryKeysExist() throws Exception { PollsChoice newPollsChoice1 = addPollsChoice(); PollsChoice newPollsChoice2 = addPollsChoice(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newPollsChoice1.getPrimaryKey()); primaryKeys.add(newPollsChoice2.getPrimaryKey()); Map<Serializable, PollsChoice> pollsChoices = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(2, pollsChoices.size()); Assert.assertEquals(newPollsChoice1, pollsChoices.get(newPollsChoice1.getPrimaryKey())); Assert.assertEquals(newPollsChoice2, pollsChoices.get(newPollsChoice2.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, PollsChoice> pollsChoices = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertTrue(pollsChoices.isEmpty()); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereSomePrimaryKeysExist() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); long pk = RandomTestUtil.nextLong(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newPollsChoice.getPrimaryKey()); primaryKeys.add(pk); Map<Serializable, PollsChoice> pollsChoices = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(1, pollsChoices.size()); Assert.assertEquals(newPollsChoice, pollsChoices.get(newPollsChoice.getPrimaryKey())); } @Test public void testFetchByPrimaryKeysWithNoPrimaryKeys() throws Exception { Set<Serializable> primaryKeys = new HashSet<Serializable>(); Map<Serializable, PollsChoice> pollsChoices = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertTrue(pollsChoices.isEmpty()); } @Test public void testFetchByPrimaryKeysWithOnePrimaryKey() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newPollsChoice.getPrimaryKey()); Map<Serializable, PollsChoice> pollsChoices = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(1, pollsChoices.size()); Assert.assertEquals(newPollsChoice, pollsChoices.get(newPollsChoice.getPrimaryKey())); } @Test public void testActionableDynamicQuery() throws Exception { final IntegerWrapper count = new IntegerWrapper(); ActionableDynamicQuery actionableDynamicQuery = PollsChoiceLocalServiceUtil.getActionableDynamicQuery(); actionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod<PollsChoice>() { @Override public void performAction(PollsChoice pollsChoice) { Assert.assertNotNull(pollsChoice); count.increment(); } }); actionableDynamicQuery.performActions(); Assert.assertEquals(count.getValue(), _persistence.countAll()); } @Test public void testDynamicQueryByPrimaryKeyExisting() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(PollsChoice.class, _dynamicQueryClassLoader); dynamicQuery.add(RestrictionsFactoryUtil.eq("choiceId", newPollsChoice.getChoiceId())); List<PollsChoice> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(1, result.size()); PollsChoice existingPollsChoice = result.get(0); Assert.assertEquals(existingPollsChoice, newPollsChoice); } @Test public void testDynamicQueryByPrimaryKeyMissing() throws Exception { DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(PollsChoice.class, _dynamicQueryClassLoader); dynamicQuery.add(RestrictionsFactoryUtil.eq("choiceId", RandomTestUtil.nextLong())); List<PollsChoice> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(0, result.size()); } @Test public void testDynamicQueryByProjectionExisting() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(PollsChoice.class, _dynamicQueryClassLoader); dynamicQuery.setProjection(ProjectionFactoryUtil.property("choiceId")); Object newChoiceId = newPollsChoice.getChoiceId(); dynamicQuery.add(RestrictionsFactoryUtil.in("choiceId", new Object[] { newChoiceId })); List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(1, result.size()); Object existingChoiceId = result.get(0); Assert.assertEquals(existingChoiceId, newChoiceId); } @Test public void testDynamicQueryByProjectionMissing() throws Exception { DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(PollsChoice.class, _dynamicQueryClassLoader); dynamicQuery.setProjection(ProjectionFactoryUtil.property("choiceId")); dynamicQuery.add(RestrictionsFactoryUtil.in("choiceId", new Object[] { RandomTestUtil.nextLong() })); List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(0, result.size()); } @Test public void testResetOriginalValues() throws Exception { PollsChoice newPollsChoice = addPollsChoice(); _persistence.clearCache(); PollsChoice existingPollsChoice = _persistence.findByPrimaryKey(newPollsChoice.getPrimaryKey()); Assert.assertTrue(Objects.equals(existingPollsChoice.getUuid(), ReflectionTestUtil.invoke(existingPollsChoice, "getOriginalUuid", new Class<?>[0]))); Assert.assertEquals(Long.valueOf(existingPollsChoice.getGroupId()), ReflectionTestUtil.<Long>invoke(existingPollsChoice, "getOriginalGroupId", new Class<?>[0])); Assert.assertEquals(Long.valueOf(existingPollsChoice.getQuestionId()), ReflectionTestUtil.<Long>invoke(existingPollsChoice, "getOriginalQuestionId", new Class<?>[0])); Assert.assertTrue(Objects.equals(existingPollsChoice.getName(), ReflectionTestUtil.invoke(existingPollsChoice, "getOriginalName", new Class<?>[0]))); } protected PollsChoice addPollsChoice() throws Exception { long pk = RandomTestUtil.nextLong(); PollsChoice pollsChoice = _persistence.create(pk); pollsChoice.setUuid(RandomTestUtil.randomString()); pollsChoice.setGroupId(RandomTestUtil.nextLong()); pollsChoice.setCompanyId(RandomTestUtil.nextLong()); pollsChoice.setUserId(RandomTestUtil.nextLong()); pollsChoice.setUserName(RandomTestUtil.randomString()); pollsChoice.setCreateDate(RandomTestUtil.nextDate()); pollsChoice.setModifiedDate(RandomTestUtil.nextDate()); pollsChoice.setQuestionId(RandomTestUtil.nextLong()); pollsChoice.setName(RandomTestUtil.randomString()); pollsChoice.setDescription(RandomTestUtil.randomString()); pollsChoice.setLastPublishDate(RandomTestUtil.nextDate()); _pollsChoices.add(_persistence.update(pollsChoice)); return pollsChoice; } private List<PollsChoice> _pollsChoices = new ArrayList<PollsChoice>(); private PollsChoicePersistence _persistence; private ClassLoader _dynamicQueryClassLoader; }