/** * 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.blogs.social.test; import com.liferay.arquillian.extension.junit.bridge.junit.Arquillian; import com.liferay.blogs.model.BlogsEntry; import com.liferay.blogs.service.BlogsEntryLocalServiceUtil; import com.liferay.blogs.social.BlogsActivityKeys; import com.liferay.blogs.web.constants.BlogsPortletKeys; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.test.rule.AggregateTestRule; import com.liferay.portal.kernel.test.rule.Sync; import com.liferay.portal.kernel.test.rule.SynchronousDestinationTestRule; 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.Constants; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.test.rule.LiferayIntegrationTestRule; import com.liferay.portlet.social.test.BaseSocialActivityInterpreterTestCase; import com.liferay.social.kernel.model.SocialActivityConstants; import com.liferay.social.kernel.model.SocialActivityInterpreter; import org.junit.ClassRule; import org.junit.Rule; import org.junit.runner.RunWith; /** * @author Zsolt Berentey */ @RunWith(Arquillian.class) @Sync public class BlogsActivityInterpreterTest extends BaseSocialActivityInterpreterTestCase { @ClassRule @Rule public static final AggregateTestRule aggregateTestRule = new AggregateTestRule( new LiferayIntegrationTestRule(), SynchronousDestinationTestRule.INSTANCE); @Override protected void addActivities() throws Exception { ServiceContext serviceContext = ServiceContextTestUtil.getServiceContext( group.getGroupId(), TestPropsValues.getUserId()); _entry = BlogsEntryLocalServiceUtil.addEntry( TestPropsValues.getUserId(), RandomTestUtil.randomString(), RandomTestUtil.randomString(), serviceContext); } @Override protected SocialActivityInterpreter getActivityInterpreter() { return getActivityInterpreter( BlogsPortletKeys.BLOGS, BlogsEntry.class.getName()); } @Override protected int[] getActivityTypes() { return new int[] { BlogsActivityKeys.ADD_ENTRY, BlogsActivityKeys.UPDATE_ENTRY, SocialActivityConstants.TYPE_MOVE_TO_TRASH, SocialActivityConstants.TYPE_RESTORE_FROM_TRASH }; } @Override protected void moveModelsToTrash() throws Exception { BlogsEntryLocalServiceUtil.moveEntriesToTrash( group.getGroupId(), TestPropsValues.getUserId()); } @Override protected void renameModels() throws Exception { _entry.setTitle(RandomTestUtil.randomString()); serviceContext.setCommand(Constants.UPDATE); BlogsEntryLocalServiceUtil.updateEntry( _entry.getUserId(), _entry.getEntryId(), _entry.getTitle(), _entry.getSubtitle(), _entry.getDescription(), _entry.getContent(), 1, 1, 2012, 12, 00, true, true, new String[0], StringPool.BLANK, null, null, serviceContext); } @Override protected void restoreModelsFromTrash() throws Exception { BlogsEntryLocalServiceUtil.restoreEntryFromTrash( TestPropsValues.getUserId(), _entry.getEntryId()); } private BlogsEntry _entry; }