use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testSuspensionByIdAndSuspendJobsFlag_shouldRetainJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionByIdAndSuspendJobsFlag_shouldRetainJobs() {
// given
// a deployed process definition with asynchronous continuation
// 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();
// when
// suspend the job definition
managementService.suspendJobDefinitionById(jobDefinition.getId(), false);
// then
// there exists a suspended job definition
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery().suspended();
assertEquals(1, jobDefinitionQuery.count());
JobDefinition suspendedJobDefinition = jobDefinitionQuery.singleResult();
assertEquals(jobDefinition.getId(), suspendedJobDefinition.getId());
assertTrue(suspendedJobDefinition.isSuspended());
// the corresponding job is still active
JobQuery jobQuery = managementService.createJobQuery().active();
assertEquals(1, jobQuery.count());
Job activeJob = jobQuery.singleResult();
assertEquals(jobDefinition.getId(), activeJob.getJobDefinitionId());
assertFalse(activeJob.isSuspended());
jobQuery = managementService.createJobQuery().suspended();
assertEquals(0, jobQuery.count());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testSuspensionById_shouldExecuteDelayedAndSuspendJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionById_shouldExecuteDelayedAndSuspendJobs() {
// given
// a deployed process definition with asynchronous continuation
// 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();
// when
// suspend the job definition
managementService.suspendJobDefinitionById(jobDefinition.getId(), true, oneWeekLater());
// then
// the job definition is still active
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(1, jobDefinitionQuery.active().count());
assertEquals(0, jobDefinitionQuery.suspended().count());
// there exists a job for the delayed suspension execution
JobQuery jobQuery = managementService.createJobQuery();
Job delayedSuspensionJob = jobQuery.timers().active().singleResult();
assertNotNull(delayedSuspensionJob);
// execute job
managementService.executeJob(delayedSuspensionJob.getId());
// the job definition should be suspended
assertEquals(0, jobDefinitionQuery.active().count());
assertEquals(1, jobDefinitionQuery.suspended().count());
JobDefinition suspendedJobDefinition = jobDefinitionQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), suspendedJobDefinition.getId());
assertTrue(suspendedJobDefinition.isSuspended());
// the corresponding job is still suspended
jobQuery = managementService.createJobQuery().suspended();
assertEquals(1, jobQuery.count());
Job suspendedJob = jobQuery.singleResult();
assertEquals(jobDefinition.getId(), suspendedJob.getJobDefinitionId());
assertTrue(suspendedJob.isSuspended());
jobQuery = managementService.createJobQuery().active();
assertEquals(0, jobQuery.count());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testSuspensionByProcessDefinitionKey_shouldExecuteImmediatelyAndSuspendJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionByProcessDefinitionKey_shouldExecuteImmediatelyAndSuspendJobs() {
// 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();
// when
// suspend the job definition
managementService.suspendJobDefinitionByProcessDefinitionKey(processDefinition.getKey(), true, null);
// then
// there exists a suspended job definition...
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery().suspended();
assertEquals(1, jobDefinitionQuery.count());
JobDefinition suspendedJobDefinition = jobDefinitionQuery.singleResult();
assertEquals(jobDefinition.getId(), suspendedJobDefinition.getId());
assertTrue(suspendedJobDefinition.isSuspended());
// ...and a suspended job of the provided job definition
JobQuery jobQuery = managementService.createJobQuery().suspended();
assertEquals(1, jobQuery.count());
Job suspendedJob = jobQuery.singleResult();
assertEquals(jobDefinition.getId(), suspendedJob.getJobDefinitionId());
assertTrue(suspendedJob.isSuspended());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testSuspensionById_shouldExecuteDelayedAndRetainJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionById_shouldExecuteDelayedAndRetainJobs() {
// given
// a deployed process definition with asynchronous continuation
// 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();
// when
// suspend the job definition
managementService.suspendJobDefinitionById(jobDefinition.getId(), false, oneWeekLater());
// then
// the job definition is still active
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(1, jobDefinitionQuery.active().count());
assertEquals(0, jobDefinitionQuery.suspended().count());
// there exists a job for the delayed suspension execution
JobQuery jobQuery = managementService.createJobQuery();
Job delayedSuspensionJob = jobQuery.timers().active().singleResult();
assertNotNull(delayedSuspensionJob);
// execute job
managementService.executeJob(delayedSuspensionJob.getId());
// the job definition should be suspended
assertEquals(0, jobDefinitionQuery.active().count());
assertEquals(1, jobDefinitionQuery.suspended().count());
JobDefinition suspendedJobDefinition = jobDefinitionQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), suspendedJobDefinition.getId());
assertTrue(suspendedJobDefinition.isSuspended());
// the corresponding job is still active
jobQuery = managementService.createJobQuery().active();
assertEquals(1, jobQuery.count());
Job activeJob = jobQuery.singleResult();
assertEquals(jobDefinition.getId(), activeJob.getJobDefinitionId());
assertFalse(activeJob.isSuspended());
jobQuery = managementService.createJobQuery().suspended();
assertEquals(0, jobQuery.count());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testSuspensionByProcessDefinitionKey_shouldExecuteDelayedAndSuspendJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionByProcessDefinitionKey_shouldExecuteDelayedAndSuspendJobs() {
// 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();
// when
// suspend the job definition
managementService.suspendJobDefinitionByProcessDefinitionKey(processDefinition.getKey(), true, oneWeekLater());
// then
// the job definition is still active
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(1, jobDefinitionQuery.active().count());
assertEquals(0, jobDefinitionQuery.suspended().count());
// there exists a job for the delayed suspension execution
JobQuery jobQuery = managementService.createJobQuery();
Job delayedSuspensionJob = jobQuery.timers().active().singleResult();
assertNotNull(delayedSuspensionJob);
// execute job
managementService.executeJob(delayedSuspensionJob.getId());
// the job definition should be suspended
assertEquals(0, jobDefinitionQuery.active().count());
assertEquals(1, jobDefinitionQuery.suspended().count());
JobDefinition suspendedJobDefinition = jobDefinitionQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), suspendedJobDefinition.getId());
assertTrue(suspendedJobDefinition.isSuspended());
// the corresponding job is suspended
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