use of io.automatiko.engine.api.Application in project automatiko-engine by automatiko-io.
the class FunctionFlowTest method testBasicServiceProcessTaskAsFunctionFlow.
@Test
public void testBasicServiceProcessTaskAsFunctionFlow() throws Exception {
Application app = generateCodeProcessesOnly("servicetask/ServiceProcess.bpmn2");
assertThat(app).isNotNull();
Process<? extends Model> p = app.processes().processById("ServiceProcess");
Model m = p.createModel();
Map<String, Object> parameters = new HashMap<>();
parameters.put("s", "john");
m.fromMap(parameters);
ProcessInstance<?> processInstance = p.createInstance(m);
processInstance.start();
assertThat(processInstance.startDate()).isNotNull();
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_COMPLETED);
Model result = (Model) processInstance.variables();
assertThat(result.toMap()).hasSize(1).containsKeys("s");
assertThat(result.toMap().get("s")).isNotNull().isEqualTo("Hello john!");
}
use of io.automatiko.engine.api.Application in project automatiko-engine by automatiko-io.
the class FunctionTest method testBasicServiceProcessTaskAsFunction.
@Test
public void testBasicServiceProcessTaskAsFunction() throws Exception {
Application app = generateCodeProcessesOnly("servicetask/ServiceProcess.bpmn2");
assertThat(app).isNotNull();
Process<? extends Model> p = app.processes().processById("ServiceProcess");
Model m = p.createModel();
Map<String, Object> parameters = new HashMap<>();
parameters.put("s", "john");
m.fromMap(parameters);
ProcessInstance<?> processInstance = p.createInstance(m);
processInstance.start();
assertThat(processInstance.startDate()).isNotNull();
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_COMPLETED);
Model result = (Model) processInstance.variables();
assertThat(result.toMap()).hasSize(1).containsKeys("s");
assertThat(result.toMap().get("s")).isNotNull().isEqualTo("Hello john!");
}
use of io.automatiko.engine.api.Application in project automatiko-engine by automatiko-io.
the class GatewayTest method testInclusiveGatewayStartToEnd.
@Test
public void testInclusiveGatewayStartToEnd() throws Exception {
Application app = generateCodeProcessesOnly("gateway/InclusiveSplit.bpmn2");
assertThat(app).isNotNull();
Process<? extends Model> p = app.processes().processById("InclusiveSplit");
Map<String, Object> params = new HashMap<>();
params.put("x", "Second");
params.put("y", "None");
Model m = p.createModel();
m.fromMap(params);
ProcessInstance<?> processInstance = p.createInstance(m);
processInstance.start();
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_COMPLETED);
Model result = (Model) processInstance.variables();
assertThat(result.toMap()).hasSize(2).containsKeys("x", "y");
}
use of io.automatiko.engine.api.Application in project automatiko-engine by automatiko-io.
the class GatewayTest method testEventBasedGatewayWithData.
@Test
public void testEventBasedGatewayWithData() throws Exception {
Application app = generateCodeProcessesOnly("gateway/EventBasedSplit.bpmn2");
assertThat(app).isNotNull();
Process<? extends Model> p = app.processes().processById("EventBasedSplit");
Model m = p.createModel();
ProcessInstance<?> processInstance = p.createInstance(m);
processInstance.start();
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_ACTIVE);
processInstance.send(Sig.of("First", "test"));
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_COMPLETED);
Model result = (Model) processInstance.variables();
assertThat(result.toMap()).hasSize(1).containsKey("x");
assertThat(result.toMap().get("x")).isEqualTo("test");
assertThat(p.instances().values(1, 10)).hasSize(0);
// not test the other branch
processInstance = p.createInstance(m);
processInstance.start();
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_ACTIVE);
processInstance.send(Sig.of("Second", "value"));
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_COMPLETED);
result = (Model) processInstance.variables();
assertThat(result.toMap()).hasSize(1).containsKey("x");
assertThat(result.toMap().get("x")).isEqualTo("value");
assertThat(p.instances().values(1, 10)).hasSize(0);
}
use of io.automatiko.engine.api.Application in project automatiko-engine by automatiko-io.
the class GatewayTest method testExclusiveGatewayStartToEnd.
@Test
public void testExclusiveGatewayStartToEnd() throws Exception {
Application app = generateCodeProcessesOnly("gateway/ExclusiveSplit.bpmn2");
assertThat(app).isNotNull();
Process<? extends Model> p = app.processes().processById("ExclusiveSplit");
Map<String, Object> params = new HashMap<>();
params.put("x", "First");
params.put("y", "None");
Model m = p.createModel();
m.fromMap(params);
ProcessInstance<?> processInstance = p.createInstance(m);
processInstance.start();
assertThat(processInstance.status()).isEqualTo(ProcessInstance.STATE_COMPLETED);
Model result = (Model) processInstance.variables();
assertThat(result.toMap()).hasSize(2).containsKeys("x", "y");
}
Aggregations