use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class JobDefinitionAuthorizationTest method testQueryWithMultiple.
public void testQueryWithMultiple() {
// given
createGrantAuthorization(PROCESS_DEFINITION, ANY, userId, READ);
createGrantAuthorization(PROCESS_DEFINITION, TIMER_START_PROCESS_KEY, userId, READ);
// when
JobDefinitionQuery query = managementService.createJobDefinitionQuery();
// then
verifyQueryResults(query, 2);
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testSuspensionJobDefinitionIncludeJobsdUsingBuilder.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionJobDefinitionIncludeJobsdUsingBuilder() {
// 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)
JobDefinitionQuery query = managementService.createJobDefinitionQuery();
JobDefinition jobDefinition = query.singleResult();
assertFalse(jobDefinition.isSuspended());
JobQuery jobQuery = managementService.createJobQuery();
assertEquals(0, jobQuery.suspended().count());
assertEquals(1, jobQuery.active().count());
// when
// suspend the job definition and the job
managementService.updateJobDefinitionSuspensionState().byJobDefinitionId(jobDefinition.getId()).includeJobs(true).suspend();
// then
// there exists a suspended job definition and job
assertEquals(1, query.suspended().count());
assertEquals(1, jobQuery.suspended().count());
assertEquals(0, jobQuery.active().count());
}
use of org.camunda.bpm.engine.management.JobDefinitionQuery in project camunda-bpm-platform by camunda.
the class SuspendJobDefinitionTest method testMultipleSuspensionByProcessDefinitionKey_shouldExecuteImmediatelyAndSuspendJobs.
public void testMultipleSuspensionByProcessDefinitionKey_shouldExecuteImmediatelyAndSuspendJobs() {
// 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)
// when
// suspend the job definition
managementService.suspendJobDefinitionByProcessDefinitionKey(key, true, null);
// then
// all job definitions are suspended
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(3, jobDefinitionQuery.suspended().count());
assertEquals(0, jobDefinitionQuery.active().count());
// and the jobs too
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 SuspendJobDefinitionTest method testSuspensionByProcessDefinitionKey_shouldExecuteDelayedAndRetainJobs.
@Deployment(resources = { "org/camunda/bpm/engine/test/api/mgmt/SuspensionTest.testBase.bpmn" })
public void testSuspensionByProcessDefinitionKey_shouldExecuteDelayedAndRetainJobs() {
// 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(), 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();
assertEquals(0, jobQuery.suspended().count());
assertEquals(1, jobQuery.active().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 SuspendJobDefinitionTest method testMultipleSuspensionByProcessDefinitionKeyAndSuspendJobsFlag_shouldRetainJobs.
public void testMultipleSuspensionByProcessDefinitionKeyAndSuspendJobsFlag_shouldRetainJobs() {
// 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)
// when
// suspend the job definition
managementService.suspendJobDefinitionByProcessDefinitionKey(key, false);
// then
// all job definitions are suspended
JobDefinitionQuery jobDefinitionQuery = managementService.createJobDefinitionQuery();
assertEquals(3, jobDefinitionQuery.suspended().count());
assertEquals(0, jobDefinitionQuery.active().count());
// but the jobs are still active
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);
}
}
Aggregations