use of org.camunda.bpm.engine.management.JobDefinition in project camunda-bpm-platform by camunda.
the class SuspendJobTest method testSuspensionByProcessInstanceId_shouldSuspendJob.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionByProcessInstanceId_shouldSuspendJob() {
// given
// a running process instance with a failed job
Map<String, Object> params = new HashMap<String, Object>();
params.put("fail", Boolean.TRUE);
ProcessInstance processInstance = runtimeService.startProcessInstanceByKey("suspensionProcess", params);
// the job definition
JobDefinition jobDefinition = managementService.createJobDefinitionQuery().singleResult();
// the failed job
JobQuery jobQuery = managementService.createJobQuery();
Job job = jobQuery.singleResult();
assertFalse(job.isSuspended());
// when
// the job will be suspended
managementService.suspendJobByProcessInstanceId(processInstance.getId());
// then
// the job should be suspended
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
Job suspendedJob = jobQuery.suspended().singleResult();
assertEquals(job.getId(), suspendedJob.getId());
assertEquals(jobDefinition.getId(), suspendedJob.getJobDefinitionId());
assertTrue(suspendedJob.isSuspended());
}
use of org.camunda.bpm.engine.management.JobDefinition in project camunda-bpm-platform by camunda.
the class SuspendJobTest method testSuspensionByJobDefinitionId_shouldSuspendJob.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionByJobDefinitionId_shouldSuspendJob() {
// 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);
// the job definition
JobDefinition jobDefinition = managementService.createJobDefinitionQuery().singleResult();
// the failed job
JobQuery jobQuery = managementService.createJobQuery();
Job job = jobQuery.singleResult();
assertFalse(job.isSuspended());
// when
// the job will be suspended
managementService.suspendJobByJobDefinitionId(jobDefinition.getId());
// then
// the job should be suspended
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
Job suspendedJob = jobQuery.suspended().singleResult();
assertEquals(job.getId(), suspendedJob.getId());
assertEquals(jobDefinition.getId(), suspendedJob.getJobDefinitionId());
assertTrue(suspendedJob.isSuspended());
}
use of org.camunda.bpm.engine.management.JobDefinition in project camunda-bpm-platform by camunda.
the class ModificationExecutionAsyncTest method createModificationJobs.
@Test
public void createModificationJobs() {
ProcessDefinition processDefinition = testRule.deployAndGetDefinition(instance);
rule.getProcessEngineConfiguration().setBatchJobsPerSeed(10);
Batch batch = helper.startAfterAsync("process1", 20, "user1", processDefinition.getId());
JobDefinition seedJobDefinition = helper.getSeedJobDefinition(batch);
JobDefinition modificationJobDefinition = helper.getExecutionJobDefinition(batch);
;
helper.executeSeedJob(batch);
List<Job> modificationJobs = helper.getJobsForDefinition(modificationJobDefinition);
assertEquals(10, modificationJobs.size());
for (Job modificationJob : modificationJobs) {
assertEquals(modificationJobDefinition.getId(), modificationJob.getJobDefinitionId());
assertNull(modificationJob.getDuedate());
assertNull(modificationJob.getProcessDefinitionId());
assertNull(modificationJob.getProcessDefinitionKey());
assertNull(modificationJob.getProcessInstanceId());
assertNull(modificationJob.getExecutionId());
}
// and the seed job still exists
Job seedJob = helper.getJobForDefinition(seedJobDefinition);
assertNotNull(seedJob);
}
use of org.camunda.bpm.engine.management.JobDefinition 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());
}
use of org.camunda.bpm.engine.management.JobDefinition in project camunda-bpm-platform by camunda.
the class ProcessDefinitionSuspensionTest method testActivationById_shouldActivateJobDefinitionAndRetainJob.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/repository/ProcessDefinitionSuspensionTest.testWithOneAsyncServiceTask.bpmn" })
public void testActivationById_shouldActivateJobDefinitionAndRetainJob() {
// 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
repositoryService.activateProcessDefinitionById(processDefinition.getId());
// then
// the job definition should be active...
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());
// ...and the corresponding job should be still suspended
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.active().count());
assertEquals(1, jobQuery.suspended().count());
Job job = jobQuery.suspended().singleResult();
assertEquals(jobDefinition.getId(), job.getJobDefinitionId());
assertTrue(job.isSuspended());
}
Aggregations