/** * 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.dynamic.data.lists.helper; import com.liferay.dynamic.data.lists.model.DDLRecordSet; import com.liferay.dynamic.data.lists.model.DDLRecordSetConstants; import com.liferay.dynamic.data.lists.service.DDLRecordSetLocalServiceUtil; import com.liferay.dynamic.data.mapping.model.DDMForm; import com.liferay.dynamic.data.mapping.model.DDMStructure; import com.liferay.dynamic.data.mapping.storage.DDMFormValues; import com.liferay.dynamic.data.mapping.storage.StorageType; import com.liferay.dynamic.data.mapping.test.util.DDMStructureTestHelper; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.model.Group; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.test.util.RandomTestUtil; import com.liferay.portal.kernel.test.util.ServiceContextTestUtil; import com.liferay.portal.kernel.test.util.TestPropsValues; import com.liferay.portal.kernel.util.LocaleUtil; import com.liferay.portal.kernel.util.PortalUtil; import java.util.HashMap; import java.util.Locale; import java.util.Map; /** * @author Marcellus Tavares * @author André de Oliveira */ public class DDLRecordSetTestHelper { public DDLRecordSetTestHelper(Group group) throws Exception { _group = group; } public DDLRecordSet addRecordSet(DDMForm ddmForm) throws Exception { DDMStructureTestHelper ddmStructureTestHelper = new DDMStructureTestHelper( PortalUtil.getClassNameId(DDLRecordSet.class), _group); DDMStructure ddmStructure = ddmStructureTestHelper.addStructure( ddmForm, StorageType.JSON.toString()); return addRecordSet(ddmStructure); } public DDLRecordSet addRecordSet(DDMStructure ddmStructure) throws Exception { return addRecordSet( ddmStructure, DDLRecordSetConstants.SCOPE_DYNAMIC_DATA_LISTS); } public DDLRecordSet addRecordSet(DDMStructure ddmStructure, int scope) throws Exception { Map<Locale, String> nameMap = new HashMap<>(); nameMap.put(LocaleUtil.US, RandomTestUtil.randomString()); ServiceContext serviceContext = ServiceContextTestUtil.getServiceContext(_group.getGroupId()); return DDLRecordSetLocalServiceUtil.addRecordSet( TestPropsValues.getUserId(), _group.getGroupId(), ddmStructure.getStructureId(), null, nameMap, null, DDLRecordSetConstants.MIN_DISPLAY_ROWS_DEFAULT, scope, serviceContext); } public DDLRecordSet updateRecordSet( long recordSetId, DDMFormValues settingsDDMFormValues) throws PortalException { return DDLRecordSetLocalServiceUtil.updateRecordSet( recordSetId, settingsDDMFormValues); } public DDLRecordSet updateRecordSet( long recordSetId, DDMStructure ddmStructure) throws Exception { Map<Locale, String> nameMap = new HashMap<>(); nameMap.put(LocaleUtil.US, RandomTestUtil.randomString()); ServiceContext serviceContext = ServiceContextTestUtil.getServiceContext(_group.getGroupId()); return DDLRecordSetLocalServiceUtil.updateRecordSet( recordSetId, ddmStructure.getStructureId(), nameMap, null, DDLRecordSetConstants.MIN_DISPLAY_ROWS_DEFAULT, serviceContext); } private final Group _group; }