/** * 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.document.library.service.test; import com.liferay.arquillian.extension.junit.bridge.junit.Arquillian; import com.liferay.document.library.kernel.model.DLFolderConstants; import com.liferay.document.library.kernel.service.DLAppLocalServiceUtil; import com.liferay.portal.kernel.model.Group; import com.liferay.portal.kernel.repository.model.Folder; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.test.rule.AggregateTestRule; import com.liferay.portal.kernel.test.rule.DeleteAfterTestRun; import com.liferay.portal.kernel.test.rule.Sync; import com.liferay.portal.kernel.test.rule.SynchronousDestinationTestRule; import com.liferay.portal.kernel.test.util.GroupTestUtil; 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.StringPool; import com.liferay.portal.test.rule.LiferayIntegrationTestRule; import com.liferay.subscription.model.Subscription; import com.liferay.subscription.service.SubscriptionLocalServiceUtil; import org.junit.Assert; import org.junit.Before; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; import org.junit.experimental.runners.Enclosed; import org.junit.runner.RunWith; /** * @author Sergio González */ @RunWith(Enclosed.class) public class DLAppLocalServiceTest { @RunWith(Arquillian.class) @Sync public static class WhenDeletingAFolder { @ClassRule @Rule public static final AggregateTestRule aggregateTestRule = new AggregateTestRule( new LiferayIntegrationTestRule(), SynchronousDestinationTestRule.INSTANCE); @Before public void setUp() throws Exception { _group = GroupTestUtil.addGroup(); ServiceContext serviceContext = ServiceContextTestUtil.getServiceContext(_group.getGroupId()); _folder = DLAppLocalServiceUtil.addFolder( TestPropsValues.getUserId(), _group.getGroupId(), DLFolderConstants.DEFAULT_PARENT_FOLDER_ID, RandomTestUtil.randomString(), StringPool.BLANK, serviceContext); } @Test public void shouldDeleteSubscriptions() throws Exception { DLAppLocalServiceUtil.subscribeFolder( TestPropsValues.getUserId(), _group.getGroupId(), _folder.getFolderId()); Subscription subscription = SubscriptionLocalServiceUtil.fetchSubscription( _group.getCompanyId(), TestPropsValues.getUserId(), DLFolderConstants.getClassName(), _folder.getFolderId()); Assert.assertNotNull(subscription); DLAppLocalServiceUtil.deleteFolder(_folder.getFolderId()); subscription = SubscriptionLocalServiceUtil.fetchSubscription( _group.getCompanyId(), TestPropsValues.getUserId(), DLFolderConstants.getClassName(), _folder.getFolderId()); Assert.assertNull(subscription); } private Folder _folder; @DeleteAfterTestRun private Group _group; } }