/* * #%L * Alfresco Records Management Module * %% * Copyright (C) 2005 - 2016 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - * If the software was purchased under a paid Alfresco license, the terms of * the paid license agreement will prevail. Otherwise, the software is * provided under the following open source license terms: * - * Alfresco 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 3 of the License, or * (at your option) any later version. * - * Alfresco 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. * - * You should have received a copy of the GNU Lesser General Public License * along with Alfresco. If not, see <http://www.gnu.org/licenses/>. * #L% */ package org.alfresco.module.org_alfresco_module_rm.test.legacy.action; import org.alfresco.module.org_alfresco_module_rm.action.impl.FileReportAction; import org.alfresco.module.org_alfresco_module_rm.test.util.BaseRMTestCase; import org.alfresco.repo.content.MimetypeMap; import org.alfresco.repo.security.authentication.AuthenticationUtil; import org.alfresco.service.cmr.action.Action; import org.alfresco.service.cmr.repository.NodeRef; import org.apache.commons.lang.StringUtils; import org.springframework.extensions.webscripts.GUID; /** * File report action unit test * * @author Tuna Aksoy * @since 2.2 * @version 1.0 */ public class FileReportActionTest extends BaseRMTestCase { @Override protected boolean isUserTest() { return true; } public void testFileReport() { fileReport(MimetypeMap.MIMETYPE_HTML); } public void testfileReportDefaultMimetype() { fileReport(null); } private void fileReport(final String mimeType) { AuthenticationUtil.setAdminUserAsFullyAuthenticatedUser(); // create record folder final NodeRef recordFolder = recordFolderService.createRecordFolder(rmContainer, GUID.generate()); // close the record folder recordFolderService.closeRecordFolder(recordFolder); // create hold final NodeRef hold = holdService.createHold(filePlan, "holdName", "holdReason", "holdDescription"); doTestInTransaction(new FailureTest() { @Override public void run() throws Exception { // execute action executeAction(mimeType, recordFolder, hold); } }); doTestInTransaction(new Test<Void>() { public Void run() { // reopen the record folder rmActionService.executeRecordsManagementAction(recordFolder, "openRecordFolder"); return null; } @Override public void test(Void result) throws Exception { // execute action executeAction(mimeType, recordFolder, hold); } }); } private void executeAction(String mimeType, NodeRef recordFolder, NodeRef hold) { Action action = actionService.createAction(FileReportAction.NAME); if (StringUtils.isNotBlank(mimeType)) { action.setParameterValue(FileReportAction.MIMETYPE, mimeType); } action.setParameterValue(FileReportAction.DESTINATION, recordFolder.toString()); action.setParameterValue(FileReportAction.REPORT_TYPE, "rmr:destructionReport"); actionService.executeAction(action, hold); } }