use of org.camunda.bpm.model.bpmn.instance.SequenceFlow in project camunda-bpm-platform by camunda.
the class TriggerConditionalEventFromDelegationCodeTest method testNonInterruptingSetVariableInTakeListener.
@Test
public void testNonInterruptingSetVariableInTakeListener() {
BpmnModelInstance modelInstance = Bpmn.createExecutableProcess(CONDITIONAL_EVENT_PROCESS_KEY).startEvent().userTask(TASK_BEFORE_CONDITION_ID).name(TASK_BEFORE_CONDITION).sequenceFlowId(FLOW_ID).userTask(TASK_WITH_CONDITION_ID).endEvent().done();
CamundaExecutionListener listener = modelInstance.newInstance(CamundaExecutionListener.class);
listener.setCamundaEvent(ExecutionListener.EVENTNAME_TAKE);
listener.setCamundaClass(specifier.getDelegateClass().getName());
modelInstance.<SequenceFlow>getModelElementById(FLOW_ID).builder().addExtensionElement(listener);
deployConditionalEventSubProcess(modelInstance, CONDITIONAL_EVENT_PROCESS_KEY, specifier.getCondition(), false);
// given
ProcessInstance procInst = runtimeService.startProcessInstanceByKey(CONDITIONAL_EVENT_PROCESS_KEY);
TaskQuery taskQuery = taskService.createTaskQuery().processInstanceId(procInst.getId());
Task task = taskQuery.singleResult();
assertNotNull(task);
assertEquals(TASK_BEFORE_CONDITION, task.getName());
// when task is completed
taskService.complete(task.getId());
// then take listener sets variable
// non interrupting boundary event is triggered
tasksAfterVariableIsSet = taskQuery.list();
assertEquals(1 + specifier.getExpectedNonInterruptingCount(), tasksAfterVariableIsSet.size());
assertEquals(specifier.getExpectedNonInterruptingCount(), taskQuery.taskName(TASK_AFTER_CONDITION).count());
}
use of org.camunda.bpm.model.bpmn.instance.SequenceFlow in project camunda-bpm-platform by camunda.
the class ConditionalEventTriggeredByExecutionListenerTest method testNonInterruptingSetVariableInTakeListener.
@Test
public void testNonInterruptingSetVariableInTakeListener() {
BpmnModelInstance modelInstance = Bpmn.createExecutableProcess(CONDITIONAL_EVENT_PROCESS_KEY).startEvent(START_EVENT_ID).userTask(TASK_BEFORE_CONDITION_ID).name(TASK_BEFORE_CONDITION).sequenceFlowId(FLOW_ID).userTask(TASK_WITH_CONDITION_ID).name(TASK_WITH_CONDITION).endEvent(END_EVENT_ID).done();
CamundaExecutionListener listener = modelInstance.newInstance(CamundaExecutionListener.class);
listener.setCamundaEvent(ExecutionListener.EVENTNAME_TAKE);
listener.setCamundaExpression(EXPR_SET_VARIABLE);
modelInstance.<SequenceFlow>getModelElementById(FLOW_ID).builder().addExtensionElement(listener);
modelInstance = specifier.specifyConditionalProcess(modelInstance, false);
engine.manageDeployment(repositoryService.createDeployment().addModelInstance(CONDITIONAL_MODEL, modelInstance).deploy());
// given
ProcessInstance procInst = runtimeService.startProcessInstanceByKey(CONDITIONAL_EVENT_PROCESS_KEY);
TaskQuery taskQuery = taskService.createTaskQuery().processInstanceId(procInst.getId());
Task task = taskQuery.singleResult();
assertNotNull(task);
assertEquals(TASK_BEFORE_CONDITION, task.getName());
// when task is completed
taskService.complete(task.getId());
// then take listener sets variable
// non interrupting boundary event is triggered
tasksAfterVariableIsSet = taskQuery.list();
assertEquals(specifier.expectedTaskCount(), tasksAfterVariableIsSet.size());
assertEquals(specifier.expectedSubscriptions(), conditionEventSubscriptionQuery.list().size());
specifier.assertTaskNames(tasksAfterVariableIsSet, false, false);
}
use of org.camunda.bpm.model.bpmn.instance.SequenceFlow in project camunda-bpm-platform by camunda.
the class ConditionalEventTriggeredByExecutionListenerTest method testNonInterruptingSetVariableOnParentScopeInTakeListener.
@Test
public void testNonInterruptingSetVariableOnParentScopeInTakeListener() {
BpmnModelInstance modelInstance = Bpmn.createExecutableProcess(CONDITIONAL_EVENT_PROCESS_KEY).startEvent(START_EVENT_ID).subProcess().embeddedSubProcess().startEvent().userTask(TASK_BEFORE_CONDITION_ID).name(TASK_BEFORE_CONDITION).sequenceFlowId(FLOW_ID).userTask(TASK_WITH_CONDITION_ID).name(TASK_WITH_CONDITION).endEvent().subProcessDone().endEvent(END_EVENT_ID).done();
CamundaExecutionListener listener = modelInstance.newInstance(CamundaExecutionListener.class);
listener.setCamundaEvent(ExecutionListener.EVENTNAME_TAKE);
listener.setCamundaExpression(EXPR_SET_VARIABLE_ON_PARENT);
modelInstance.<SequenceFlow>getModelElementById(FLOW_ID).builder().addExtensionElement(listener);
modelInstance = specifier.specifyConditionalProcess(modelInstance, false);
engine.manageDeployment(repositoryService.createDeployment().addModelInstance(CONDITIONAL_MODEL, modelInstance).deploy());
// given
ProcessInstance procInst = runtimeService.startProcessInstanceByKey(CONDITIONAL_EVENT_PROCESS_KEY);
TaskQuery taskQuery = taskService.createTaskQuery().processInstanceId(procInst.getId());
Task task = taskQuery.singleResult();
assertNotNull(task);
assertEquals(TASK_BEFORE_CONDITION, task.getName());
// when task is completed
taskService.complete(task.getId());
// then start listener sets variable
// non interrupting boundary event is triggered
tasksAfterVariableIsSet = taskQuery.list();
specifier.assertTaskNames(tasksAfterVariableIsSet, false, false);
}
use of org.camunda.bpm.model.bpmn.instance.SequenceFlow in project camunda-bpm-platform by camunda.
the class ConditionalEventTriggeredByExecutionListenerTest method testSetVariableInTakeListener.
@Test
public void testSetVariableInTakeListener() {
BpmnModelInstance modelInstance = Bpmn.createExecutableProcess(CONDITIONAL_EVENT_PROCESS_KEY).startEvent(START_EVENT_ID).userTask(TASK_BEFORE_CONDITION_ID).name(TASK_BEFORE_CONDITION).sequenceFlowId(FLOW_ID).userTask(TASK_WITH_CONDITION_ID).name(TASK_WITH_CONDITION).endEvent(END_EVENT_ID).done();
CamundaExecutionListener listener = modelInstance.newInstance(CamundaExecutionListener.class);
listener.setCamundaEvent(ExecutionListener.EVENTNAME_TAKE);
listener.setCamundaExpression(EXPR_SET_VARIABLE);
modelInstance.<SequenceFlow>getModelElementById(FLOW_ID).builder().addExtensionElement(listener);
modelInstance = specifier.specifyConditionalProcess(modelInstance, true);
engine.manageDeployment(repositoryService.createDeployment().addModelInstance(CONDITIONAL_MODEL, modelInstance).deploy());
// given
ProcessInstance procInst = runtimeService.startProcessInstanceByKey(CONDITIONAL_EVENT_PROCESS_KEY);
TaskQuery taskQuery = taskService.createTaskQuery().processInstanceId(procInst.getId());
Task task = taskQuery.singleResult();
assertNotNull(task);
assertEquals(TASK_BEFORE_CONDITION, task.getName());
// when task is completed
taskService.complete(task.getId());
// then take listener sets variable
// conditional event is triggered
tasksAfterVariableIsSet = taskQuery.list();
specifier.assertTaskNames(tasksAfterVariableIsSet, true, false);
}
use of org.camunda.bpm.model.bpmn.instance.SequenceFlow in project camunda-bpm-platform by camunda.
the class TargetVariableScopeTest method testSetLocalScopeWithExecutionListenerTake.
@Test
public void testSetLocalScopeWithExecutionListenerTake() {
BpmnModelInstance modelInstance = Bpmn.createExecutableProcess("process").startEvent().id("activityId").sequenceFlowId("sequenceFlow").endEvent().done();
CamundaExecutionListener listener = modelInstance.newInstance(CamundaExecutionListener.class);
listener.setCamundaEvent(ExecutionListener.EVENTNAME_TAKE);
listener.setCamundaClass(ExecutionListener.class.getName());
modelInstance.<SequenceFlow>getModelElementById("sequenceFlow").builder().addExtensionElement(listener);
testHelper.deploy(modelInstance);
engineRule.getRuntimeService().startProcessInstanceByKey("process");
}
Aggregations