use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class ActivateJobDefinitionTest method testActivationJobDefinitionIncludingJobsUsingBuilder.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationJobDefinitionIncludingJobsUsingBuilder() {
// given
// a deployed process definition with asynchronous continuation
// a running process instance with a failed job
runtimeService.startProcessInstanceByKey("suspensionProcess", Variables.createVariables().putValue("fail", true));
// a job definition (which was created for the asynchronous continuation)
// ...which will be suspended with the corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
JobDefinitionQuery query = managementService.createJobDefinitionQuery();
JobDefinition jobDefinition = query.singleResult();
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
// when
// activate the job definition
managementService.updateJobDefinitionSuspensionState().byJobDefinitionId(jobDefinition.getId()).includeJobs(true).activate();
// then
// there exists a active job definition
assertEquals(1, jobQuery.active().count());
assertEquals(0, jobQuery.suspended().count());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class ActivateJobDefinitionTest method testActivationByProcessDefinitionId_shouldRetainJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testActivationByProcessDefinitionId_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());
// then
// there exists a 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());
// 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 testMultipleSuspensionByProcessDefinitionKey_shouldExecuteImmediatelyAndRetainJobs.
public void testMultipleSuspensionByProcessDefinitionKey_shouldExecuteImmediatelyAndRetainJobs() {
// 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);
}
// a job definition (which was created for the asynchronous continuation)
// ...which will be suspended with the corresponding jobs
managementService.suspendJobDefinitionByProcessDefinitionKey("suspensionProcess", true);
// when
// activate the job definition
managementService.activateJobDefinitionByProcessDefinitionKey(key, false, null);
// then
// all job definitions are active
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(0, jobDefinitionQuery.suspended().count());
assertEquals(3, jobDefinitionQuery.active().count());
// but the jobs are still suspended
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(3, jobQuery.suspended().count());
assertEquals(0, 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.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class ProcessDefinitionSuspensionTest method testDelayedMultipleSuspendByKeyAndIncludeInstances_shouldSuspendJobDefinitionAndRetainJob.
public void testDelayedMultipleSuspendByKeyAndIncludeInstances_shouldSuspendJobDefinitionAndRetainJob() {
Date startTime = new Date();
ClockUtil.setCurrentTime(startTime);
final long hourInMs = 60 * 60 * 1000;
String key = "oneFailingServiceTaskProcess";
// Deploy five versions of the same process, so that there exists
// five job definitions
int nrOfProcessDefinitions = 5;
for (int i = 0; i < nrOfProcessDefinitions; i++) {
repositoryService.createDeployment().addClasspathResource("org/camunda/bpm/engine/test/api/repository/ProcessDefinitionSuspensionTest.testWithOneAsyncServiceTask.bpmn").deploy();
// a running process instance with a failed service task
Map<String, Object> params = new HashMap<String, Object>();
params.put("fail", Boolean.TRUE);
runtimeService.startProcessInstanceByKey(key, params);
}
// when
// the process definition will be suspended
repositoryService.suspendProcessDefinitionByKey(key, false, new Date(startTime.getTime() + (2 * hourInMs)));
// then
// there exists a timer job to suspend the process definition delayed
Job timerToSuspendProcessDefinition = managementService.createJobQuery().timers().singleResult();
assertNotNull(timerToSuspendProcessDefinition);
// the job definitions should be still active
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(0, jobDefinitionQuery.suspended().count());
assertEquals(5, jobDefinitionQuery.active().count());
// ...and the corresponding jobs should be still active
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.suspended().count());
assertEquals(6, jobQuery.active().count());
// when
// execute job
managementService.executeJob(timerToSuspendProcessDefinition.getId());
// then
// the job definitions should be suspended...
assertEquals(0, jobDefinitionQuery.active().count());
assertEquals(5, jobDefinitionQuery.suspended().count());
// ...and the corresponding jobs should be still active
assertEquals(0, jobQuery.suspended().count());
assertEquals(5, 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.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class ProcessDefinitionSuspensionTest method testDelayedActivationByIdAndIncludeInstancesFlag_shouldActivateJobDefinitionAndRetainJob.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/repository/ProcessDefinitionSuspensionTest.testWithOneAsyncServiceTask.bpmn" })
public void testDelayedActivationByIdAndIncludeInstancesFlag_shouldActivateJobDefinitionAndRetainJob() {
Date startTime = new Date();
ClockUtil.setCurrentTime(startTime);
final long hourInMs = 60 * 60 * 1000;
// a process definition with a asynchronous continuation, so that there
// exists a job definition
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().singleResult();
JobDefinition jobDefinition = managementService.createJobDefinitionQuery().singleResult();
// a running process instance with a failed service task
Map<String, Object> params = new HashMap<String, Object>();
params.put("fail", Boolean.TRUE);
runtimeService.startProcessInstanceById(processDefinition.getId(), params);
// the process definition, job definition, process instance and job will be suspended
repositoryService.suspendProcessDefinitionById(processDefinition.getId(), true, null);
assertEquals(0, repositoryService.createProcessDefinitionQuery().active().count());
assertEquals(1, repositoryService.createProcessDefinitionQuery().suspended().count());
assertEquals(0, managementService.createJobDefinitionQuery().active().count());
assertEquals(1, managementService.createJobDefinitionQuery().suspended().count());
// when
// the process definition will be activated in 2 hours
repositoryService.activateProcessDefinitionById(processDefinition.getId(), false, new Date(startTime.getTime() + (2 * hourInMs)));
// then
// there exists a job to activate process definition
Job timerToActivateProcessDefinition = managementService.createJobQuery().timers().singleResult();
assertNotNull(timerToActivateProcessDefinition);
// the job definition should still suspended
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(0, jobDefinitionQuery.active().count());
assertEquals(1, jobDefinitionQuery.suspended().count());
JobDefinition suspendedJobDefinition = jobDefinitionQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), suspendedJobDefinition.getId());
assertTrue(suspendedJobDefinition.isSuspended());
// the job is still suspended
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(1, jobQuery.suspended().count());
// the timer job is active
assertEquals(1, jobQuery.active().count());
// when
// execute job
managementService.executeJob(timerToActivateProcessDefinition.getId());
// then
// the job definition should be active
assertEquals(0, jobDefinitionQuery.suspended().count());
assertEquals(1, jobDefinitionQuery.active().count());
JobDefinition activeJobDefinition = jobDefinitionQuery.active().singleResult();
assertEquals(jobDefinition.getId(), activeJobDefinition.getId());
assertFalse(activeJobDefinition.isSuspended());
// the job is still suspended
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
Job job = jobQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), job.getJobDefinitionId());
assertTrue(job.isSuspended());
}
Aggregations