/* * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * * This file is part of Entando software. * Entando is a free software; * You can redistribute it and/or modify it * under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation; version 2. * * See the file License for the specific language governing permissions * and limitations under the License * * * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * */ package com.agiletec.plugins.jpcontentworkflow.util; import java.sql.Connection; import java.sql.Statement; import javax.sql.DataSource; import com.agiletec.aps.system.services.baseconfig.ConfigInterface; import com.agiletec.plugins.jacms.aps.system.services.content.model.Content; import com.agiletec.plugins.jpcontentworkflow.aps.system.JpcontentworkflowSystemConstants; import com.agiletec.plugins.jpcontentworkflow.aps.system.services.workflow.ContentWorkflowManager; /** * @author E.Santoboni */ public class WorkflowTestHelper { public WorkflowTestHelper(ContentWorkflowManager workflowManager, ConfigInterface configManager) { this(workflowManager, configManager, null); } public WorkflowTestHelper(ContentWorkflowManager workflowManager, ConfigInterface configManager, DataSource dataSource) { this._workflowManager = workflowManager; this._configManager = configManager; this._dataSource = dataSource; } public void setWorkflowConfig() throws Exception { this.updateConfig(SET_CONFIG); } public void resetWorkflowConfig() throws Exception { this.updateConfig(RESET_CONFIG); this.updateConfig(RESET_CONFIG); } public void setContentStates() throws Exception { this.executeQuery(SET_STATES_1); this.executeQuery(SET_STATES_2); this.executeQuery(SET_STATES_3); this.executeQuery(SET_STATES_4); } public void resetContentStates() throws Exception { this.executeQuery(RESET_STATES_1); this.executeQuery(RESET_STATES_2); } private void executeQuery(String query) throws Exception { Connection conn = this._dataSource.getConnection(); Statement stat = conn.createStatement(); stat.execute(query); stat.close(); conn.close(); } private void updateConfig(String config) throws Exception { this._configManager.updateConfigItem(JpcontentworkflowSystemConstants.CONTENT_WORKFLOW_CONFIG_ITEM, config); this._workflowManager.init(); } private static final String SET_STATES_1 = "UPDATE contents SET status = 'step1' WHERE contentid = 'ART104'"; private static final String SET_STATES_2 = "UPDATE contents SET status = 'step3' WHERE contentid = 'ART111'"; private static final String SET_STATES_3 = "UPDATE contents SET status = 'step2' WHERE contentid = 'ART102'"; private static final String SET_STATES_4 = "UPDATE contents SET status = '" + Content.STATUS_READY + "' WHERE contentid = 'RAH101' "; private static final String RESET_STATES_1 = "UPDATE contents SET status = '" + Content.STATUS_DRAFT + "' WHERE " + "contentid = 'ART102' OR contentid = 'ART104' OR contentid = 'RAH101'"; private static final String RESET_STATES_2 = "UPDATE contents SET status = '" + Content.STATUS_READY + "' WHERE " + "contentid = 'ART111'"; private static final String SET_CONFIG = "<contenttypes>" + "<contenttype typecode=\"ART\">" + "<step code=\"step1\" descr=\"Step 1\" role=\"pageManager\" />" + "<step code=\"step2\" descr=\"Step 2\" />" + "<step code=\"step3\" descr=\"Step 3\" role=\"supervisor\" />" + "</contenttype>" + "<contenttype typecode=\"EVN\" role=\"pageManager\" />" + "</contenttypes>"; private static final String RESET_CONFIG = "<contenttypes />"; private ContentWorkflowManager _workflowManager; private ConfigInterface _configManager; private DataSource _dataSource; }