use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class JobDefinitionQueryTest method testQueryBySuspended.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/JobDefinitionQueryTest.testBase.bpmn" })
public void testQueryBySuspended() {
JobDefinitionQuery query = managementService.createJobDefinitionQuery().suspended();
verifyQueryResults(query, 0);
// suspend first one
JobDefinition jobDefinition = managementService.createJobDefinitionQuery().jobType(AsyncContinuationJobHandler.TYPE).singleResult();
managementService.suspendJobDefinitionById(jobDefinition.getId());
// only one is suspended
verifyQueryResults(query, 1);
// Suspend second one
jobDefinition = managementService.createJobDefinitionQuery().jobType(TimerStartEventJobHandler.TYPE).singleResult();
managementService.suspendJobDefinitionById(jobDefinition.getId());
// only two are suspended
verifyQueryResults(query, 2);
// suspend third one
jobDefinition = managementService.createJobDefinitionQuery().jobType(TimerCatchIntermediateEventJobHandler.TYPE).singleResult();
managementService.suspendJobDefinitionById(jobDefinition.getId());
// only three are suspended
verifyQueryResults(query, 3);
// suspend fourth one
jobDefinition = managementService.createJobDefinitionQuery().jobType(TimerExecuteNestedActivityJobHandler.TYPE).singleResult();
managementService.suspendJobDefinitionById(jobDefinition.getId());
// all are suspended
verifyQueryResults(query, 4);
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class JobDefinitionQueryTest method testQueryByInvalidJobType.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/JobDefinitionQueryTest.testBase.bpmn" })
public void testQueryByInvalidJobType() {
JobDefinitionQuery query = managementService.createJobDefinitionQuery().jobType("invalid");
verifyQueryResults(query, 0);
try {
managementService.createJobDefinitionQuery().jobType(null);
fail("A ProcessEngineExcpetion was expected.");
} catch (ProcessEngineException e) {
}
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery 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());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class ActivateJobDefinitionTest method testActivationByProcessDefinitionId_shouldExecuteDelayedAndSuspendJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationByProcessDefinitionId_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();
// ...which will be suspended with the corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// when
// activate the job definition
managementService.activateJobDefinitionByProcessDefinitionId(processDefinition.getId(), true, oneWeekLater());
// then
// the job definition is still suspended
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(0, jobDefinitionQuery.active().count());
assertEquals(1, jobDefinitionQuery.suspended().count());
// there exists a job for the delayed activation execution
JobQuery jobQuery = managementService.createJobQuery();
Job delayedActivationJob = jobQuery.timers().active().singleResult();
assertNotNull(delayedActivationJob);
// execute job
managementService.executeJob(delayedActivationJob.getId());
// the job definition should be active
assertEquals(1, jobDefinitionQuery.active().count());
assertEquals(0, jobDefinitionQuery.suspended().count());
JobDefinition activeJobDefinition = jobDefinitionQuery.active().singleResult();
assertEquals(jobDefinition.getId(), activeJobDefinition.getId());
assertFalse(activeJobDefinition.isSuspended());
// the corresponding job is active
jobQuery = managementService.createJobQuery();
assertEquals(1, jobQuery.active().count());
assertEquals(0, jobQuery.suspended().count());
Job activeJob = jobQuery.active().singleResult();
assertEquals(jobDefinition.getId(), activeJob.getJobDefinitionId());
assertFalse(activeJob.isSuspended());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class ActivateJobDefinitionTest method testActivationById_shouldRetainJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationById_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();
// ...which will be suspended with the corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// when
// activate the job definition
managementService.activateJobDefinitionById(jobDefinition.getId());
// then
// there exists a active job definition
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(1, jobDefinitionQuery.active().count());
assertEquals(0, jobDefinitionQuery.suspended().count());
JobDefinition activeJobDefinition = jobDefinitionQuery.active().singleResult();
assertEquals(jobDefinition.getId(), activeJobDefinition.getId());
// the corresponding job is still suspended
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
Job suspendedJob = jobQuery.singleResult();
assertEquals(jobDefinition.getId(), suspendedJob.getJobDefinitionId());
assertTrue(suspendedJob.isSuspended());
}
Aggregations