use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.
the class AsyncWorkItemHandlerTest method testRunProcessWithAsyncHandlerRecordExecutionErrorTaskAutoAck.
@SuppressWarnings("unchecked")
@Test(timeout = 20000)
public void testRunProcessWithAsyncHandlerRecordExecutionErrorTaskAutoAck() throws Exception {
CountDownAsyncJobListener countDownListener = new CountDownAsyncJobListener(1);
((ExecutorServiceImpl) executorService).addAsyncJobListener(countDownListener);
((ExecutorServiceImpl) executorService).setRetries(0);
RuntimeEnvironment environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().userGroupCallback(userGroupCallback).addAsset(ResourceFactory.newClassPathResource("BPMN2-UserTaskWithRollback.bpmn2"), ResourceType.BPMN2).get();
manager = RuntimeManagerFactory.Factory.get().newSingletonRuntimeManager(environment);
assertNotNull(manager);
RuntimeEngine runtime = manager.getRuntimeEngine(EmptyContext.get());
KieSession ksession = runtime.getKieSession();
assertNotNull(ksession);
ProcessInstance processInstance = ksession.startProcess("UserTaskWithRollback");
assertEquals(ProcessInstance.STATE_ACTIVE, processInstance.getState());
processInstance = runtime.getKieSession().getProcessInstance(processInstance.getId());
assertNotNull(processInstance);
manager.disposeRuntimeEngine(runtime);
runtime = manager.getRuntimeEngine(EmptyContext.get());
TaskService taskService = runtime.getTaskService();
List<TaskSummary> tasks = taskService.getTasksAssignedAsPotentialOwner("john", "en-UK");
assertEquals(1, tasks.size());
long taskId = tasks.get(0).getId();
TaskLifeCycleEventListener listener = new DefaultTaskEventListener() {
@Override
public void afterTaskStartedEvent(TaskEvent event) {
throw new TaskExecutionException("On purpose");
}
};
try {
((EventService<TaskLifeCycleEventListener>) taskService).registerTaskEventListener(listener);
taskService.start(taskId, "john");
fail("Start task should fail due to broken script");
} catch (Throwable e) {
// expected
}
manager.disposeRuntimeEngine(runtime);
ExecutionErrorManager errorManager = ((AbstractRuntimeManager) manager).getExecutionErrorManager();
assertNotNull("ErrorManager is null", errorManager);
ExecutionErrorStorage errorStorage = errorManager.getStorage();
assertNotNull("ErrorStorage is null", errorStorage);
List<ExecutionError> errors = errorStorage.list(0, 10);
assertEquals(1, errors.size());
ExecutionError error = errors.get(0);
assertNotNull(error);
assertEquals("Task", error.getType());
assertEquals("UserTaskWithRollback", error.getProcessId());
assertEquals("Hello", error.getActivityName());
assertEquals(manager.getIdentifier(), error.getDeploymentId());
assertNotNull(error.getError());
assertNotNull(error.getErrorMessage());
assertNotNull(error.getActivityId());
assertNotNull(error.getProcessInstanceId());
assertNull(error.getAcknowledgedAt());
assertNull(error.getAcknowledgedBy());
assertFalse(error.isAcknowledged());
countDownListener.reset(1);
// first run should not ack the job as it's in error state
CommandContext ctx = new CommandContext();
ctx.setData("SingleRun", "true");
ctx.setData("EmfName", "org.jbpm.persistence.complete");
executorService.scheduleRequest(TaskAutoAckErrorCommand.class.getName(), ctx);
countDownListener.waitTillCompleted();
errors = errorStorage.list(0, 10);
assertEquals(1, errors.size());
error = errors.get(0);
assertNotNull(error);
assertFalse(error.isAcknowledged());
runtime = manager.getRuntimeEngine(EmptyContext.get());
tasks = taskService.getTasksAssignedAsPotentialOwner("john", "en-UK");
assertEquals(1, tasks.size());
taskId = tasks.get(0).getId();
((EventService<TaskLifeCycleEventListener>) taskService).removeTaskEventListener(listener);
taskService.start(taskId, "john");
Map<String, Object> results = new HashMap<>();
results.put("output1", "ok");
taskService.complete(taskId, "john", results);
manager.disposeRuntimeEngine(runtime);
countDownListener.reset(1);
// since task was completed auto ack should work
executorService.scheduleRequest(TaskAutoAckErrorCommand.class.getName(), ctx);
countDownListener.waitTillCompleted();
errors = errorStorage.list(0, 10);
assertEquals(1, errors.size());
error = errors.get(0);
assertNotNull(error);
assertTrue(error.isAcknowledged());
}
use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.
the class AsyncWorkItemHandlerCmdCallback method closeErrorHandler.
private void closeErrorHandler(RuntimeManager manager) {
ExecutionErrorManager errorManager = ((AbstractRuntimeManager) manager).getExecutionErrorManager();
if (errorManager == null) {
return;
}
((ExecutionErrorManagerImpl) errorManager).closeHandler();
}
use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.
the class AbstractDeploymentService method undeploy.
@Override
public void undeploy(DeploymentUnit unit) {
List<Integer> states = new ArrayList<Integer>();
states.add(ProcessInstance.STATE_ACTIVE);
states.add(ProcessInstance.STATE_PENDING);
states.add(ProcessInstance.STATE_SUSPENDED);
Collection<ProcessInstanceDesc> activeProcesses = runtimeDataService.getProcessInstancesByDeploymentId(unit.getIdentifier(), states, new QueryContext());
if (!activeProcesses.isEmpty()) {
throw new IllegalStateException("Undeploy forbidden - there are active processes instances for deployment " + unit.getIdentifier());
}
synchronized (this) {
DeployedUnit deployed = deploymentsMap.remove(unit.getIdentifier());
if (deployed != null) {
RuntimeManager manager = deployed.getRuntimeManager();
((AbstractRuntimeManager) manager).close(true);
}
notifyOnUnDeploy(unit, deployed);
}
}
use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.
the class AutoAckErrorCommand method execute.
@Override
public ExecutionResults execute(CommandContext ctx) throws Exception {
ExecutionResults executionResults = new ExecutionResults();
String emfName = (String) ctx.getData("EmfName");
if (emfName == null) {
emfName = "org.jbpm.domain";
}
String singleRun = (String) ctx.getData("SingleRun");
if ("true".equalsIgnoreCase(singleRun)) {
// disable rescheduling
this.nextScheduleTimeAdd = -1;
}
String nextRun = (String) ctx.getData("NextRun");
if (nextRun != null) {
nextScheduleTimeAdd = DateTimeUtils.parseDateAsDuration(nextRun);
}
// get hold of persistence and create instance of audit service
EntityManagerFactory emf = EntityManagerFactoryManager.get().getOrCreate(emfName);
EntityManager em = emf.createEntityManager();
try {
List<ExecutionErrorInfo> errorsToAck = findErrorsToAck(em);
logger.debug("Found {} jobs that can be auto ack", errorsToAck.size());
errorsToAck.forEach(error -> {
AbstractRuntimeManager manager = (AbstractRuntimeManager) RuntimeManagerRegistry.get().getManager(error.getDeploymentId());
if (manager != null) {
ExecutionErrorManager errorManager = manager.getExecutionErrorManager();
errorManager.getStorage().acknowledge("SYSTEM", error.getErrorId());
logger.debug("Error {} has been auto acknowledged by system based on {}", error.getErrorId(), getAckRule());
} else {
logger.warn("Unable to ack error {} due missing runtime manager for '{}'", error.getErrorId(), error.getDeploymentId());
}
});
} finally {
em.close();
}
return executionResults;
}
use of org.jbpm.runtime.manager.impl.AbstractRuntimeManager in project jbpm by kiegroup.
the class GlobalQuartzDBTimerServiceTest method testTimerStartManagerClose.
@Test(timeout = 20000)
public void testTimerStartManagerClose() throws Exception {
NodeLeftCountDownProcessEventListener countDownListener = new NodeLeftCountDownProcessEventListener("StartProcess", 3);
QuartzSchedulerService additionalCopy = new QuartzSchedulerService();
additionalCopy.initScheduler(null);
// prepare listener to assert results
final List<Long> timerExporations = new ArrayList<Long>();
ProcessEventListener listener = new DefaultProcessEventListener() {
@Override
public void beforeProcessStarted(ProcessStartedEvent event) {
timerExporations.add(event.getProcessInstance().getId());
}
};
environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().entityManagerFactory(emf).addAsset(ResourceFactory.newClassPathResource("org/jbpm/test/functional/timer/TimerStart2.bpmn2"), ResourceType.BPMN2).schedulerService(globalScheduler).registerableItemsFactory(new TestRegisterableItemsFactory(listener, countDownListener)).get();
manager = getManager(environment, false);
RuntimeEngine runtime = manager.getRuntimeEngine(ProcessInstanceIdContext.get());
KieSession ksession = runtime.getKieSession();
assertEquals(0, timerExporations.size());
countDownListener.waitTillCompleted();
manager.disposeRuntimeEngine(runtime);
int atDispose = timerExporations.size();
assertTrue(atDispose > 0);
((AbstractRuntimeManager) manager).close(true);
countDownListener.reset(1);
countDownListener.waitTillCompleted(3000);
assertEquals(atDispose, timerExporations.size());
additionalCopy.shutdown();
}
Aggregations