未验证 提交 a06af3e4 编写于 作者: E Elias Ricken de Medeiros 提交者: GitHub

Set application version when deployment exists already (#3209)

Set application version when deployment exists already
上级 a73c2a42
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
......@@ -273,6 +273,7 @@ public class BpmnDeployer implements Deployer {
if (persistedProcessDefinition != null) {
processDefinition.setId(persistedProcessDefinition.getId());
processDefinition.setVersion(persistedProcessDefinition.getVersion());
processDefinition.setAppVersion(persistedProcessDefinition.getAppVersion());
processDefinition.setSuspensionState(persistedProcessDefinition.getSuspensionState());
}
}
......
/*
* Copyright 2020 Alfresco, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.activiti.engine.impl.bpmn.deployer;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock;
import static org.mockito.MockitoAnnotations.initMocks;
import java.util.Collections;
import org.activiti.engine.impl.persistence.entity.ProcessDefinitionEntityImpl;
import org.junit.Before;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
public class BpmnDeployerTest {
@InjectMocks
private BpmnDeployer bpmnDeployer;
@Mock
private BpmnDeploymentHelper bpmnDeploymentHelper;
@Before
public void setUp() throws Exception {
initMocks(this);
}
@Test
public void makeProcessDefinitionsConsistentWithPersistedVersions_should_setAppVersion() {
//given
ParsedDeployment parsedDeployment = mock(ParsedDeployment.class);
ProcessDefinitionEntityImpl parsedProcessDefinition = new ProcessDefinitionEntityImpl();
given(parsedDeployment.getAllProcessDefinitions()).willReturn(Collections.singletonList(
parsedProcessDefinition));
ProcessDefinitionEntityImpl persistedProcessDefinition = new ProcessDefinitionEntityImpl();
persistedProcessDefinition.setId("procId");
persistedProcessDefinition.setVersion(1);
persistedProcessDefinition.setAppVersion(2);
given(bpmnDeploymentHelper.getPersistedInstanceOfProcessDefinition(parsedProcessDefinition))
.willReturn(persistedProcessDefinition);
//when
bpmnDeployer.makeProcessDefinitionsConsistentWithPersistedVersions(
parsedDeployment);
//then
assertThat(parsedProcessDefinition.getId()).isEqualTo(persistedProcessDefinition.getId());
assertThat(parsedProcessDefinition.getVersion()).isEqualTo(persistedProcessDefinition.getVersion());
assertThat(parsedProcessDefinition.getAppVersion()).isEqualTo(persistedProcessDefinition.getAppVersion());
assertThat(parsedProcessDefinition.getSuspensionState()).isEqualTo(persistedProcessDefinition.getSuspensionState());
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册