use of org.kie.api.runtime.query.QueryContext in project jbpm by kiegroup.
the class AsyncContinuationSupportTest method waitForAllJobsToComplete.
private boolean waitForAllJobsToComplete() throws Exception {
int attempts = 10;
do {
List<RequestInfo> running = executorService.getRunningRequests(new QueryContext());
attempts--;
if (running.isEmpty()) {
return true;
}
Thread.sleep(500);
} while (attempts > 0);
return false;
}
use of org.kie.api.runtime.query.QueryContext in project jbpm by kiegroup.
the class AsyncContinuationSupportTest method testAsyncModeWithServiceTask.
@Test(timeout = 10000)
public void testAsyncModeWithServiceTask() throws Exception {
final NodeLeftCountDownProcessEventListener countDownListener = new NodeLeftCountDownProcessEventListener("EndProcess", 1);
RuntimeEnvironment environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().userGroupCallback(userGroupCallback).addAsset(ResourceFactory.newClassPathResource("BPMN2-ServiceProcess.bpmn2"), ResourceType.BPMN2).addEnvironmentEntry("ExecutorService", executorService).addEnvironmentEntry("AsyncMode", "true").registerableItemsFactory(new DefaultRegisterableItemsFactory() {
@Override
public Map<String, WorkItemHandler> getWorkItemHandlers(RuntimeEngine runtime) {
Map<String, WorkItemHandler> handlers = super.getWorkItemHandlers(runtime);
handlers.put("Service Task", new ServiceTaskHandler());
return handlers;
}
@Override
public List<ProcessEventListener> getProcessEventListeners(RuntimeEngine runtime) {
List<ProcessEventListener> listeners = super.getProcessEventListeners(runtime);
listeners.add(countDownListener);
return listeners;
}
}).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("ServiceProcess");
assertEquals(ProcessInstance.STATE_ACTIVE, processInstance.getState());
long processInstanceId = processInstance.getId();
countDownListener.waitTillCompleted();
processInstance = runtime.getKieSession().getProcessInstance(processInstanceId);
assertNull(processInstance);
List<? extends NodeInstanceLog> logs = runtime.getAuditService().findNodeInstances(processInstanceId);
assertNotNull(logs);
assertEquals(6, logs.size());
waitForAllJobsToComplete();
List<RequestInfo> completed = executorService.getCompletedRequests(new QueryContext());
// there should be 2 completed commands (for service task and end node)
assertEquals(2, completed.size());
Set<String> commands = completed.stream().map(RequestInfo::getCommandName).collect(Collectors.toSet());
assertEquals(1, commands.size());
assertEquals(AsyncSignalEventCommand.class.getName(), commands.iterator().next());
}
use of org.kie.api.runtime.query.QueryContext in project jbpm by kiegroup.
the class AsyncContinuationSupportTest method testAsyncModeWithScriptTask.
@Test(timeout = 10000)
public void testAsyncModeWithScriptTask() throws Exception {
final NodeLeftCountDownProcessEventListener countDownListener = new NodeLeftCountDownProcessEventListener("EndProcess", 1);
RuntimeEnvironment environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().userGroupCallback(userGroupCallback).addAsset(ResourceFactory.newClassPathResource("BPMN2-ScriptTask.bpmn2"), ResourceType.BPMN2).addEnvironmentEntry("ExecutorService", executorService).addEnvironmentEntry("AsyncMode", "true").registerableItemsFactory(new DefaultRegisterableItemsFactory() {
@Override
public Map<String, WorkItemHandler> getWorkItemHandlers(RuntimeEngine runtime) {
Map<String, WorkItemHandler> handlers = super.getWorkItemHandlers(runtime);
handlers.put("async", new SystemOutWorkItemHandler());
return handlers;
}
@Override
public List<ProcessEventListener> getProcessEventListeners(RuntimeEngine runtime) {
List<ProcessEventListener> listeners = super.getProcessEventListeners(runtime);
listeners.add(countDownListener);
return listeners;
}
}).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("ScriptTask");
assertEquals(ProcessInstance.STATE_ACTIVE, processInstance.getState());
long processInstanceId = processInstance.getId();
countDownListener.waitTillCompleted();
processInstance = runtime.getKieSession().getProcessInstance(processInstanceId);
assertNull(processInstance);
List<? extends NodeInstanceLog> logs = runtime.getAuditService().findNodeInstances(processInstanceId);
assertNotNull(logs);
assertEquals(8, logs.size());
waitForAllJobsToComplete();
List<RequestInfo> completed = executorService.getCompletedRequests(new QueryContext());
// there should 3 completed commands (for script, for task and end node)
assertEquals(3, completed.size());
Set<String> commands = completed.stream().map(RequestInfo::getCommandName).collect(Collectors.toSet());
assertEquals(1, commands.size());
assertEquals(AsyncSignalEventCommand.class.getName(), commands.iterator().next());
}
use of org.kie.api.runtime.query.QueryContext in project jbpm by kiegroup.
the class AsyncContinuationSupportTest method testAsyncModeWithSignalProcess.
@Test(timeout = 10000)
public void testAsyncModeWithSignalProcess() throws Exception {
final NodeTriggeredCountDownProcessEventListener countDownListenerSignalAsync = new NodeTriggeredCountDownProcessEventListener("Signal", 1);
final NodeLeftCountDownProcessEventListener countDownListener = new NodeLeftCountDownProcessEventListener("EndProcess", 1);
RuntimeEnvironment environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().userGroupCallback(userGroupCallback).addAsset(ResourceFactory.newClassPathResource("BPMN2-WaitForEvent.bpmn2"), ResourceType.BPMN2).addEnvironmentEntry("ExecutorService", executorService).addEnvironmentEntry("AsyncMode", "true").registerableItemsFactory(new DefaultRegisterableItemsFactory() {
@Override
public List<ProcessEventListener> getProcessEventListeners(RuntimeEngine runtime) {
List<ProcessEventListener> listeners = super.getProcessEventListeners(runtime);
listeners.add(countDownListener);
listeners.add(countDownListenerSignalAsync);
return listeners;
}
}).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("WaitForEvent");
assertEquals(ProcessInstance.STATE_ACTIVE, processInstance.getState());
long processInstanceId = processInstance.getId();
// wait for the signal not to be triggered in async way before sending signal
countDownListenerSignalAsync.waitTillCompleted();
// Send async signal to the process instance
System.out.println("<<<< Sending signal >>>>>");
runtime.getKieSession().signalEvent("MySignal", null);
countDownListener.waitTillCompleted();
processInstance = runtime.getKieSession().getProcessInstance(processInstanceId);
assertNull(processInstance);
List<? extends NodeInstanceLog> logs = runtime.getAuditService().findNodeInstances(processInstanceId);
assertNotNull(logs);
assertEquals(8, logs.size());
waitForAllJobsToComplete();
List<RequestInfo> completed = executorService.getCompletedRequests(new QueryContext());
List<RequestInfo> all = executorService.getAllRequests(new QueryContext());
logger.info("all jobs from db {}", all);
// there should be 2 completed commands (for script task and end node)
assertEquals(2, completed.size());
Set<String> commands = completed.stream().map(RequestInfo::getCommandName).collect(Collectors.toSet());
assertEquals(1, commands.size());
assertEquals(AsyncSignalEventCommand.class.getName(), commands.iterator().next());
}
use of org.kie.api.runtime.query.QueryContext in project jbpm by kiegroup.
the class AsyncContinuationSupportTest method testAsyncScriptTaskIgnoreNotExistingDeployments.
@Test(timeout = 1000000)
public void testAsyncScriptTaskIgnoreNotExistingDeployments() throws Exception {
final NodeLeftCountDownProcessEventListener countDownListener = new NodeLeftCountDownProcessEventListener("Hello", 1);
final NodeLeftCountDownProcessEventListener countDownListener2 = new NodeLeftCountDownProcessEventListener("Task 1", 1);
RuntimeEnvironment environment = RuntimeEnvironmentBuilder.Factory.get().newDefaultBuilder().userGroupCallback(userGroupCallback).addAsset(ResourceFactory.newClassPathResource("BPMN2-AsyncScriptTask.bpmn2"), ResourceType.BPMN2).addEnvironmentEntry("ExecutorService", executorService).registerableItemsFactory(new DefaultRegisterableItemsFactory() {
@Override
public Map<String, WorkItemHandler> getWorkItemHandlers(RuntimeEngine runtime) {
Map<String, WorkItemHandler> handlers = super.getWorkItemHandlers(runtime);
handlers.put("async", new AsyncWorkItemHandler(executorService, PrintOutCommand.class.getName()));
return handlers;
}
@Override
public List<ProcessEventListener> getProcessEventListeners(RuntimeEngine runtime) {
List<ProcessEventListener> listeners = super.getProcessEventListeners(runtime);
listeners.add(countDownListener);
listeners.add(countDownListener2);
return listeners;
}
}).get();
manager = RuntimeManagerFactory.Factory.get().newSingletonRuntimeManager(environment, "special-test-case");
assertNotNull(manager);
RuntimeEngine runtime = manager.getRuntimeEngine(EmptyContext.get());
KieSession ksession = runtime.getKieSession();
assertNotNull(ksession);
Map<String, Object> params = new HashMap<>();
params.put("delayAsync", "2s");
ProcessInstance processInstance = ksession.startProcess("AsyncScriptTask", params);
assertEquals(ProcessInstance.STATE_ACTIVE, processInstance.getState());
long processInstanceId = processInstance.getId();
countDownListener.waitTillCompleted(1000);
manager.close();
List<RequestInfo> queued = executorService.getQueuedRequests(new QueryContext());
assertNotNull(queued);
assertEquals(1, queued.size());
assertEquals(PrintOutCommand.class.getName(), queued.get(0).getCommandName());
countDownListener2.waitTillCompleted(2000);
queued = executorService.getQueuedRequests(new QueryContext());
assertNotNull(queued);
assertEquals(1, queued.size());
assertEquals(PrintOutCommand.class.getName(), queued.get(0).getCommandName());
manager = RuntimeManagerFactory.Factory.get().newSingletonRuntimeManager(environment, "special-test-case");
assertNotNull(manager);
runtime = manager.getRuntimeEngine(EmptyContext.get());
countDownListener2.reset(1);
((RequeueAware) executorService).requeueById(queued.get(0).getId());
countDownListener2.waitTillCompleted();
processInstance = runtime.getKieSession().getProcessInstance(processInstanceId);
assertNull(processInstance);
List<? extends NodeInstanceLog> logs = runtime.getAuditService().findNodeInstances(processInstanceId);
assertNotNull(logs);
assertEquals(8, logs.size());
}
Aggregations