/** * 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.portal.workflow.kaleo.service.persistence.test; import com.liferay.arquillian.extension.junit.bridge.junit.Arquillian; 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 com.liferay.portal.workflow.kaleo.exception.NoSuchConditionException; import com.liferay.portal.workflow.kaleo.model.KaleoCondition; import com.liferay.portal.workflow.kaleo.service.KaleoConditionLocalServiceUtil; import com.liferay.portal.workflow.kaleo.service.persistence.KaleoConditionPersistence; import com.liferay.portal.workflow.kaleo.service.persistence.KaleoConditionUtil; 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.Set; /** * @generated */ @RunWith(Arquillian.class) public class KaleoConditionPersistenceTest { @ClassRule @Rule public static final AggregateTestRule aggregateTestRule = new AggregateTestRule(new LiferayIntegrationTestRule(), PersistenceTestRule.INSTANCE, new TransactionalTestRule(Propagation.REQUIRED, "com.liferay.portal.workflow.kaleo.service")); @Before public void setUp() { _persistence = KaleoConditionUtil.getPersistence(); Class<?> clazz = _persistence.getClass(); _dynamicQueryClassLoader = clazz.getClassLoader(); } @After public void tearDown() throws Exception { Iterator<KaleoCondition> iterator = _kaleoConditions.iterator(); while (iterator.hasNext()) { _persistence.remove(iterator.next()); iterator.remove(); } } @Test public void testCreate() throws Exception { long pk = RandomTestUtil.nextLong(); KaleoCondition kaleoCondition = _persistence.create(pk); Assert.assertNotNull(kaleoCondition); Assert.assertEquals(kaleoCondition.getPrimaryKey(), pk); } @Test public void testRemove() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); _persistence.remove(newKaleoCondition); KaleoCondition existingKaleoCondition = _persistence.fetchByPrimaryKey(newKaleoCondition.getPrimaryKey()); Assert.assertNull(existingKaleoCondition); } @Test public void testUpdateNew() throws Exception { addKaleoCondition(); } @Test public void testUpdateExisting() throws Exception { long pk = RandomTestUtil.nextLong(); KaleoCondition newKaleoCondition = _persistence.create(pk); newKaleoCondition.setGroupId(RandomTestUtil.nextLong()); newKaleoCondition.setCompanyId(RandomTestUtil.nextLong()); newKaleoCondition.setUserId(RandomTestUtil.nextLong()); newKaleoCondition.setUserName(RandomTestUtil.randomString()); newKaleoCondition.setCreateDate(RandomTestUtil.nextDate()); newKaleoCondition.setModifiedDate(RandomTestUtil.nextDate()); newKaleoCondition.setKaleoDefinitionId(RandomTestUtil.nextLong()); newKaleoCondition.setKaleoNodeId(RandomTestUtil.nextLong()); newKaleoCondition.setScript(RandomTestUtil.randomString()); newKaleoCondition.setScriptLanguage(RandomTestUtil.randomString()); newKaleoCondition.setScriptRequiredContexts(RandomTestUtil.randomString()); _kaleoConditions.add(_persistence.update(newKaleoCondition)); KaleoCondition existingKaleoCondition = _persistence.findByPrimaryKey(newKaleoCondition.getPrimaryKey()); Assert.assertEquals(existingKaleoCondition.getKaleoConditionId(), newKaleoCondition.getKaleoConditionId()); Assert.assertEquals(existingKaleoCondition.getGroupId(), newKaleoCondition.getGroupId()); Assert.assertEquals(existingKaleoCondition.getCompanyId(), newKaleoCondition.getCompanyId()); Assert.assertEquals(existingKaleoCondition.getUserId(), newKaleoCondition.getUserId()); Assert.assertEquals(existingKaleoCondition.getUserName(), newKaleoCondition.getUserName()); Assert.assertEquals(Time.getShortTimestamp( existingKaleoCondition.getCreateDate()), Time.getShortTimestamp(newKaleoCondition.getCreateDate())); Assert.assertEquals(Time.getShortTimestamp( existingKaleoCondition.getModifiedDate()), Time.getShortTimestamp(newKaleoCondition.getModifiedDate())); Assert.assertEquals(existingKaleoCondition.getKaleoDefinitionId(), newKaleoCondition.getKaleoDefinitionId()); Assert.assertEquals(existingKaleoCondition.getKaleoNodeId(), newKaleoCondition.getKaleoNodeId()); Assert.assertEquals(existingKaleoCondition.getScript(), newKaleoCondition.getScript()); Assert.assertEquals(existingKaleoCondition.getScriptLanguage(), newKaleoCondition.getScriptLanguage()); Assert.assertEquals(existingKaleoCondition.getScriptRequiredContexts(), newKaleoCondition.getScriptRequiredContexts()); } @Test public void testCountByCompanyId() throws Exception { _persistence.countByCompanyId(RandomTestUtil.nextLong()); _persistence.countByCompanyId(0L); } @Test public void testCountByKaleoDefinitionId() throws Exception { _persistence.countByKaleoDefinitionId(RandomTestUtil.nextLong()); _persistence.countByKaleoDefinitionId(0L); } @Test public void testCountByKaleoNodeId() throws Exception { _persistence.countByKaleoNodeId(RandomTestUtil.nextLong()); _persistence.countByKaleoNodeId(0L); } @Test public void testFindByPrimaryKeyExisting() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); KaleoCondition existingKaleoCondition = _persistence.findByPrimaryKey(newKaleoCondition.getPrimaryKey()); Assert.assertEquals(existingKaleoCondition, newKaleoCondition); } @Test(expected = NoSuchConditionException.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<KaleoCondition> getOrderByComparator() { return OrderByComparatorFactoryUtil.create("KaleoCondition", "kaleoConditionId", true, "groupId", true, "companyId", true, "userId", true, "userName", true, "createDate", true, "modifiedDate", true, "kaleoDefinitionId", true, "kaleoNodeId", true, "scriptLanguage", true, "scriptRequiredContexts", true); } @Test public void testFetchByPrimaryKeyExisting() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); KaleoCondition existingKaleoCondition = _persistence.fetchByPrimaryKey(newKaleoCondition.getPrimaryKey()); Assert.assertEquals(existingKaleoCondition, newKaleoCondition); } @Test public void testFetchByPrimaryKeyMissing() throws Exception { long pk = RandomTestUtil.nextLong(); KaleoCondition missingKaleoCondition = _persistence.fetchByPrimaryKey(pk); Assert.assertNull(missingKaleoCondition); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereAllPrimaryKeysExist() throws Exception { KaleoCondition newKaleoCondition1 = addKaleoCondition(); KaleoCondition newKaleoCondition2 = addKaleoCondition(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newKaleoCondition1.getPrimaryKey()); primaryKeys.add(newKaleoCondition2.getPrimaryKey()); Map<Serializable, KaleoCondition> kaleoConditions = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(2, kaleoConditions.size()); Assert.assertEquals(newKaleoCondition1, kaleoConditions.get(newKaleoCondition1.getPrimaryKey())); Assert.assertEquals(newKaleoCondition2, kaleoConditions.get(newKaleoCondition2.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, KaleoCondition> kaleoConditions = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertTrue(kaleoConditions.isEmpty()); } @Test public void testFetchByPrimaryKeysWithMultiplePrimaryKeysWhereSomePrimaryKeysExist() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); long pk = RandomTestUtil.nextLong(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newKaleoCondition.getPrimaryKey()); primaryKeys.add(pk); Map<Serializable, KaleoCondition> kaleoConditions = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(1, kaleoConditions.size()); Assert.assertEquals(newKaleoCondition, kaleoConditions.get(newKaleoCondition.getPrimaryKey())); } @Test public void testFetchByPrimaryKeysWithNoPrimaryKeys() throws Exception { Set<Serializable> primaryKeys = new HashSet<Serializable>(); Map<Serializable, KaleoCondition> kaleoConditions = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertTrue(kaleoConditions.isEmpty()); } @Test public void testFetchByPrimaryKeysWithOnePrimaryKey() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); Set<Serializable> primaryKeys = new HashSet<Serializable>(); primaryKeys.add(newKaleoCondition.getPrimaryKey()); Map<Serializable, KaleoCondition> kaleoConditions = _persistence.fetchByPrimaryKeys(primaryKeys); Assert.assertEquals(1, kaleoConditions.size()); Assert.assertEquals(newKaleoCondition, kaleoConditions.get(newKaleoCondition.getPrimaryKey())); } @Test public void testActionableDynamicQuery() throws Exception { final IntegerWrapper count = new IntegerWrapper(); ActionableDynamicQuery actionableDynamicQuery = KaleoConditionLocalServiceUtil.getActionableDynamicQuery(); actionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod<KaleoCondition>() { @Override public void performAction(KaleoCondition kaleoCondition) { Assert.assertNotNull(kaleoCondition); count.increment(); } }); actionableDynamicQuery.performActions(); Assert.assertEquals(count.getValue(), _persistence.countAll()); } @Test public void testDynamicQueryByPrimaryKeyExisting() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(KaleoCondition.class, _dynamicQueryClassLoader); dynamicQuery.add(RestrictionsFactoryUtil.eq("kaleoConditionId", newKaleoCondition.getKaleoConditionId())); List<KaleoCondition> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(1, result.size()); KaleoCondition existingKaleoCondition = result.get(0); Assert.assertEquals(existingKaleoCondition, newKaleoCondition); } @Test public void testDynamicQueryByPrimaryKeyMissing() throws Exception { DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(KaleoCondition.class, _dynamicQueryClassLoader); dynamicQuery.add(RestrictionsFactoryUtil.eq("kaleoConditionId", RandomTestUtil.nextLong())); List<KaleoCondition> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(0, result.size()); } @Test public void testDynamicQueryByProjectionExisting() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(KaleoCondition.class, _dynamicQueryClassLoader); dynamicQuery.setProjection(ProjectionFactoryUtil.property( "kaleoConditionId")); Object newKaleoConditionId = newKaleoCondition.getKaleoConditionId(); dynamicQuery.add(RestrictionsFactoryUtil.in("kaleoConditionId", new Object[] { newKaleoConditionId })); List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(1, result.size()); Object existingKaleoConditionId = result.get(0); Assert.assertEquals(existingKaleoConditionId, newKaleoConditionId); } @Test public void testDynamicQueryByProjectionMissing() throws Exception { DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(KaleoCondition.class, _dynamicQueryClassLoader); dynamicQuery.setProjection(ProjectionFactoryUtil.property( "kaleoConditionId")); dynamicQuery.add(RestrictionsFactoryUtil.in("kaleoConditionId", new Object[] { RandomTestUtil.nextLong() })); List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery); Assert.assertEquals(0, result.size()); } @Test public void testResetOriginalValues() throws Exception { KaleoCondition newKaleoCondition = addKaleoCondition(); _persistence.clearCache(); KaleoCondition existingKaleoCondition = _persistence.findByPrimaryKey(newKaleoCondition.getPrimaryKey()); Assert.assertEquals(Long.valueOf( existingKaleoCondition.getKaleoNodeId()), ReflectionTestUtil.<Long>invoke(existingKaleoCondition, "getOriginalKaleoNodeId", new Class<?>[0])); } protected KaleoCondition addKaleoCondition() throws Exception { long pk = RandomTestUtil.nextLong(); KaleoCondition kaleoCondition = _persistence.create(pk); kaleoCondition.setGroupId(RandomTestUtil.nextLong()); kaleoCondition.setCompanyId(RandomTestUtil.nextLong()); kaleoCondition.setUserId(RandomTestUtil.nextLong()); kaleoCondition.setUserName(RandomTestUtil.randomString()); kaleoCondition.setCreateDate(RandomTestUtil.nextDate()); kaleoCondition.setModifiedDate(RandomTestUtil.nextDate()); kaleoCondition.setKaleoDefinitionId(RandomTestUtil.nextLong()); kaleoCondition.setKaleoNodeId(RandomTestUtil.nextLong()); kaleoCondition.setScript(RandomTestUtil.randomString()); kaleoCondition.setScriptLanguage(RandomTestUtil.randomString()); kaleoCondition.setScriptRequiredContexts(RandomTestUtil.randomString()); _kaleoConditions.add(_persistence.update(kaleoCondition)); return kaleoCondition; } private List<KaleoCondition> _kaleoConditions = new ArrayList<KaleoCondition>(); private KaleoConditionPersistence _persistence; private ClassLoader _dynamicQueryClassLoader; }