use of org.camunda.bpm.engine.SuspendedEntityInteractionException in project camunda-bpm-platform by camunda.
the class ProcessInstanceSuspensionTest method testProcessInstanceSignalFailAfterSuspendByProcessDefinitionKey.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/oneTaskProcess.bpmn20.xml" })
public void testProcessInstanceSignalFailAfterSuspendByProcessDefinitionKey() {
// Suspend process instance
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().singleResult();
ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinition.getId());
runtimeService.suspendProcessInstanceByProcessDefinitionKey(processDefinition.getKey());
try {
runtimeService.signal(processInstance.getId());
fail();
} catch (SuspendedEntityInteractionException e) {
// This is expected
assertTextPresent("is suspended", e.getMessage());
assertTrue(e instanceof BadUserRequestException);
}
try {
runtimeService.signal(processInstance.getId(), new HashMap<String, Object>());
fail();
} catch (SuspendedEntityInteractionException e) {
// This is expected
assertTextPresent("is suspended", e.getMessage());
assertTrue(e instanceof BadUserRequestException);
}
}
use of org.camunda.bpm.engine.SuspendedEntityInteractionException in project camunda-bpm-platform by camunda.
the class ProcessInstanceSuspensionTest method testMessageEventReceiveFailAfterSuspendByProcessDefinitionKey.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/runtime/ProcessInstanceSuspensionTest.testMessageEventReceiveFailAfterSuspend.bpmn20.xml" })
public void testMessageEventReceiveFailAfterSuspendByProcessDefinitionKey() {
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().singleResult();
runtimeService.startProcessInstanceById(processDefinition.getId());
runtimeService.suspendProcessInstanceByProcessDefinitionKey(processDefinition.getKey());
EventSubscription subscription = runtimeService.createEventSubscriptionQuery().singleResult();
try {
runtimeService.messageEventReceived("someMessage", subscription.getExecutionId());
fail();
} catch (SuspendedEntityInteractionException e) {
// This is expected
assertTextPresent("is suspended", e.getMessage());
}
try {
runtimeService.messageEventReceived("someMessage", subscription.getExecutionId(), new HashMap<String, Object>());
fail();
} catch (SuspendedEntityInteractionException e) {
// This is expected
assertTextPresent("is suspended", e.getMessage());
}
}
use of org.camunda.bpm.engine.SuspendedEntityInteractionException in project camunda-bpm-platform by camunda.
the class ProcessInstanceSuspensionTest method testCallActivityReturnAfterProcessInstanceSuspend.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/runtime/ProcessInstanceSuspensionTest.callSimpleProcess.bpmn20.xml", "org/camunda/bpm/engine/test/api/runtime/subProcess.bpmn20.xml" })
public void testCallActivityReturnAfterProcessInstanceSuspend() {
ProcessInstance instance = runtimeService.startProcessInstanceByKey("callSimpleProcess");
runtimeService.suspendProcessInstanceById(instance.getId());
Task task = taskService.createTaskQuery().singleResult();
try {
taskService.complete(task.getId());
fail("this should not be successful, as the execution of a suspended instance is resumed");
} catch (SuspendedEntityInteractionException e) {
// this is expected to fail
}
// should be successful after reactivation
runtimeService.activateProcessInstanceById(instance.getId());
taskService.complete(task.getId());
assertEquals(1, runtimeService.createProcessInstanceQuery().count());
}
use of org.camunda.bpm.engine.SuspendedEntityInteractionException in project camunda-bpm-platform by camunda.
the class ProcessInstanceSuspensionTest method testMICallActivityReturnAfterProcessInstanceSuspendByProcessDefinitionKey.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/runtime/ProcessInstanceSuspensionTest.callMISimpleProcess.bpmn20.xml", "org/camunda/bpm/engine/test/api/runtime/subProcess.bpmn20.xml" })
public void testMICallActivityReturnAfterProcessInstanceSuspendByProcessDefinitionKey() {
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().processDefinitionKey("callMISimpleProcess").singleResult();
runtimeService.startProcessInstanceByKey("callMISimpleProcess");
runtimeService.suspendProcessInstanceByProcessDefinitionKey(processDefinition.getKey());
List<Task> tasks = taskService.createTaskQuery().list();
Task task1 = tasks.get(0);
Task task2 = tasks.get(1);
try {
taskService.complete(task1.getId());
fail("this should not be successful, as the execution of a suspended instance is resumed");
} catch (SuspendedEntityInteractionException e) {
// this is expected to fail
}
try {
taskService.complete(task2.getId());
fail("this should not be successful, as the execution of a suspended instance is resumed");
} catch (SuspendedEntityInteractionException e) {
// this is expected to fail
}
// should be successful after reactivation
runtimeService.activateProcessInstanceByProcessDefinitionKey(processDefinition.getKey());
taskService.complete(task1.getId());
taskService.complete(task2.getId());
assertEquals(0, runtimeService.createProcessInstanceQuery().count());
}
use of org.camunda.bpm.engine.SuspendedEntityInteractionException in project camunda-bpm-platform by camunda.
the class ProcessInstanceSuspensionTest method testTaskLifecycleOperationsFailAfterProcessInstanceSuspendByProcessDefinitionId.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/oneTaskProcess.bpmn20.xml" })
public void testTaskLifecycleOperationsFailAfterProcessInstanceSuspendByProcessDefinitionId() {
// Start a new process instance with one task
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().singleResult();
ProcessInstance processInstance = runtimeService.startProcessInstanceById(processDefinition.getId());
final Task task = taskService.createTaskQuery().processInstanceId(processInstance.getId()).singleResult();
assertNotNull(task);
// Suspend the process instance
runtimeService.suspendProcessInstanceByProcessDefinitionId(processDefinition.getId());
// Completing the task should fail
try {
taskService.complete(task.getId());
fail("It is not allowed to complete a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Claiming the task should fail
try {
taskService.claim(task.getId(), "jos");
fail("It is not allowed to claim a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Adding candidate groups on the task should fail
try {
taskService.addCandidateGroup(task.getId(), "blahGroup");
fail("It is not allowed to add a candidate group on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Adding candidate users on the task should fail
try {
taskService.addCandidateUser(task.getId(), "blahUser");
fail("It is not allowed to add a candidate user on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Adding group identity links on the task should fail
try {
taskService.addGroupIdentityLink(task.getId(), "blahGroup", IdentityLinkType.CANDIDATE);
fail("It is not allowed to add a candidate user on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Adding an identity link on the task should fail
try {
taskService.addUserIdentityLink(task.getId(), "blahUser", IdentityLinkType.OWNER);
fail("It is not allowed to add an identityLink on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Set an assignee on the task should fail
try {
taskService.setAssignee(task.getId(), "mispiggy");
fail("It is not allowed to set an assignee on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Set an owner on the task should fail
try {
taskService.setOwner(task.getId(), "kermit");
fail("It is not allowed to set an owner on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Removing candidate groups on the task should fail
try {
taskService.deleteCandidateGroup(task.getId(), "blahGroup");
fail("It is not allowed to remove a candidate group on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Removing candidate users on the task should fail
try {
taskService.deleteCandidateUser(task.getId(), "blahUser");
fail("It is not allowed to remove a candidate user on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Removing group identity links on the task should fail
try {
taskService.deleteGroupIdentityLink(task.getId(), "blahGroup", IdentityLinkType.CANDIDATE);
fail("It is not allowed to remove a candidate user on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
// Removing an identity link on the task should fail
try {
taskService.deleteUserIdentityLink(task.getId(), "blahUser", IdentityLinkType.OWNER);
fail("It is not allowed to remove an identityLink on a task of a suspended process instance");
} catch (SuspendedEntityInteractionException e) {
// This is good
}
}
Aggregations