use of org.camunda.bpm.engine.runtime.JobQuery in project camunda-bpm-platform by camunda.
the class ActivateJobTest method testActivationByJobDefinitionId_shouldActivateJob.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationByJobDefinitionId_shouldActivateJob() {
// given
// a running process instance with a failed job
Map<String, Object> params = new HashMap<String, Object>();
params.put("fail", Boolean.TRUE);
runtimeService.startProcessInstanceByKey("suspensionProcess", params);
// suspended job definitions and corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// the job definition
JobDefinition jobDefinition = managementService.createJobDefinitionQuery().singleResult();
// the failed job
JobQuery jobQuery = managementService.createJobQuery();
Job job = jobQuery.singleResult();
assertTrue(job.isSuspended());
// when
// the job will be activated
managementService.activateJobByJobDefinitionId(jobDefinition.getId());
// then
// the job should be activated
assertEquals(0, jobQuery.suspended().count());
assertEquals(1, jobQuery.active().count());
Job activeJob = jobQuery.active().singleResult();
assertEquals(job.getId(), activeJob.getId());
assertEquals(jobDefinition.getId(), activeJob.getJobDefinitionId());
assertFalse(activeJob.isSuspended());
}
use of org.camunda.bpm.engine.runtime.JobQuery in project camunda-bpm-platform by camunda.
the class ActivateJobTest method testActivationByProcessDefinitionKeyUsingBuilder.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationByProcessDefinitionKeyUsingBuilder() {
// given
// a running process instance with a failed job
runtimeService.startProcessInstanceByKey("suspensionProcess", Variables.createVariables().putValue("fail", true));
// suspended job definitions and corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// the failed job
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(1, jobQuery.suspended().count());
// when
// the job will be activated
managementService.updateJobSuspensionState().byProcessDefinitionKey("suspensionProcess").activate();
// then
// the job should be active
assertEquals(1, jobQuery.active().count());
assertEquals(0, jobQuery.suspended().count());
}
use of org.camunda.bpm.engine.runtime.JobQuery in project camunda-bpm-platform by camunda.
the class ActivateJobTest method testMultipleActivationByProcessDefinitionKey_shouldActivateJob.
public void testMultipleActivationByProcessDefinitionKey_shouldActivateJob() {
// given
String key = "suspensionProcess";
// Deploy three processes and start for each deployment a process instance
// with a failed job
int nrOfProcessDefinitions = 3;
for (int i = 0; i < nrOfProcessDefinitions; i++) {
repositoryService.createDeployment().addClasspathResource("org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn").deploy();
Map<String, Object> params = new HashMap<String, Object>();
params.put("fail", Boolean.TRUE);
runtimeService.startProcessInstanceByKey(key, params);
}
// suspended job definitions and corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey(key, true);
// when
// the job will be suspended
managementService.activateJobByProcessDefinitionKey(key);
// then
// the job should be activated
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.suspended().count());
assertEquals(3, jobQuery.active().count());
// Clean DB
for (org.camunda.bpm.engine.repository.Deployment deployment : repositoryService.createDeploymentQuery().list()) {
repositoryService.deleteDeployment(deployment.getId(), true);
}
}
use of org.camunda.bpm.engine.runtime.JobQuery in project camunda-bpm-platform by camunda.
the class ActivateJobTest method testActivationByProcessInstanceIdUsingBuilder.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationByProcessInstanceIdUsingBuilder() {
// given
// a running process instance with a failed job
ProcessInstance processInstance = runtimeService.startProcessInstanceByKey("suspensionProcess", Variables.createVariables().putValue("fail", true));
// suspended job definitions and corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// the failed job
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(1, jobQuery.suspended().count());
// when
// the job will be activated
managementService.updateJobSuspensionState().byProcessInstanceId(processInstance.getId()).activate();
// then
// the job should be active
assertEquals(1, jobQuery.active().count());
assertEquals(0, jobQuery.suspended().count());
}
use of org.camunda.bpm.engine.runtime.JobQuery in project camunda-bpm-platform by camunda.
the class ActivateJobDefinitionTest method testActivationByProcessDefinitionIdAndActivateJobsFlag_shouldRetainJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationByProcessDefinitionIdAndActivateJobsFlag_shouldRetainJobs() {
// given
// a deployed process definition with asynchronous continuation
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().singleResult();
// a running process instance with a failed job
Map<String, Object> params = new HashMap<String, Object>();
params.put("fail", Boolean.TRUE);
runtimeService.startProcessInstanceByKey("suspensionProcess", params);
// a job definition (which was created for the asynchronous continuation)
JobDefinition jobDefinition = managementService.createJobDefinitionQuery().singleResult();
// ...which will be suspended with the corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// when
// activate the job definition
managementService.activateJobDefinitionByProcessDefinitionId(processDefinition.getId(), false);
// then
// there exists an active job definition
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(0, jobDefinitionQuery.suspended().count());
assertEquals(1, jobDefinitionQuery.active().count());
JobDefinition activeJobDefinition = jobDefinitionQuery.active().singleResult();
assertEquals(jobDefinition.getId(), activeJobDefinition.getId());
assertFalse(activeJobDefinition.isSuspended());
// the corresponding job is still suspended
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
Job suspendedJob = jobQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), suspendedJob.getJobDefinitionId());
assertTrue(suspendedJob.isSuspended());
}
Aggregations