use of org.kie.workbench.common.stunner.bpmn.backend.converters.fromstunner.properties.PropertyWriter in project kie-wb-common by kiegroup.
the class ReusableSubprocessConverterTest method testToFlowElement_autostart.
@Test
public void testToFlowElement_autostart() {
final ReusableSubprocess definition = new ReusableSubprocess();
definition.getExecutionSet().setAdHocAutostart(new AdHocAutostart(true));
final View<BaseReusableSubprocess> view = new ViewImpl<>(definition, Bounds.create());
final Node<View<BaseReusableSubprocess>, ?> node = new NodeImpl<>(java.util.UUID.randomUUID().toString());
node.setContent(view);
final PropertyWriter propertyWriter = tested.toFlowElement(node);
assertTrue(CallActivityPropertyWriter.class.isInstance(propertyWriter));
assertTrue(CustomElement.autoStart.of(propertyWriter.getFlowElement()).get());
}
use of org.kie.workbench.common.stunner.bpmn.backend.converters.fromstunner.properties.PropertyWriter in project kie-wb-common by kiegroup.
the class ReusableSubprocessConverterTest method testToFlowElementForAbortParent.
private void testToFlowElementForAbortParent(boolean independent, boolean abortParent, boolean expectedAbortParent) {
final ReusableSubprocess definition = new ReusableSubprocess();
definition.getExecutionSet().setIndependent(new Independent(independent));
definition.getExecutionSet().setAbortParent(new AbortParent(abortParent));
final View<BaseReusableSubprocess> view = new ViewImpl<>(definition, Bounds.create());
final Node<View<BaseReusableSubprocess>, ?> node = new NodeImpl<>(java.util.UUID.randomUUID().toString());
node.setContent(view);
final PropertyWriter propertyWriter = tested.toFlowElement(node);
assertEquals(expectedAbortParent, CustomElement.abortParent.of(propertyWriter.getFlowElement()).get());
}
use of org.kie.workbench.common.stunner.bpmn.backend.converters.fromstunner.properties.PropertyWriter in project kie-wb-common by kiegroup.
the class ReusableSubprocessConverterTest method testToFlowElement_case.
@Test
public void testToFlowElement_case() {
final BaseReusableSubprocess definition = new ReusableSubprocess();
definition.getExecutionSet().setIsCase(new IsCase(true));
final View<BaseReusableSubprocess> view = new ViewImpl<>(definition, Bounds.create());
final Node<View<BaseReusableSubprocess>, ?> node = new NodeImpl<>(java.util.UUID.randomUUID().toString());
node.setContent(view);
final PropertyWriter propertyWriter = tested.toFlowElement(node);
assertTrue(CallActivityPropertyWriter.class.isInstance(propertyWriter));
assertTrue(CustomElement.isCase.of(propertyWriter.getFlowElement()).get());
}
use of org.kie.workbench.common.stunner.bpmn.backend.converters.fromstunner.properties.PropertyWriter in project kie-wb-common by kiegroup.
the class ReusableSubprocessConverterTest method testToFlowElement_notautostart.
@Test
public void testToFlowElement_notautostart() {
final ReusableSubprocess definition = new ReusableSubprocess();
definition.getExecutionSet().setAdHocAutostart(new AdHocAutostart(false));
final View<BaseReusableSubprocess> view = new ViewImpl<>(definition, Bounds.create());
final Node<View<BaseReusableSubprocess>, ?> node = new NodeImpl<>(java.util.UUID.randomUUID().toString());
node.setContent(view);
final PropertyWriter propertyWriter = tested.toFlowElement(node);
assertTrue(CallActivityPropertyWriter.class.isInstance(propertyWriter));
assertFalse(CustomElement.autoStart.of(propertyWriter.getFlowElement()).get());
}
use of org.kie.workbench.common.stunner.bpmn.backend.converters.fromstunner.properties.PropertyWriter in project kie-wb-common by kiegroup.
the class ReusableSubprocessConverterTest method testToFlowElement.
@Test
public void testToFlowElement() {
final ReusableSubprocess definition = new ReusableSubprocess();
definition.getExecutionSet().setSlaDueDate(new SLADueDate(SLA_DUE_DATE));
definition.getExecutionSet().setIsAsync(new IsAsync(Boolean.TRUE));
final View<BaseReusableSubprocess> view = new ViewImpl<>(definition, Bounds.create());
final Node<View<BaseReusableSubprocess>, ?> node = new NodeImpl<>(java.util.UUID.randomUUID().toString());
node.setContent(view);
final PropertyWriter propertyWriter = tested.toFlowElement(node);
assertTrue(CallActivityPropertyWriter.class.isInstance(propertyWriter));
assertTrue(CustomElement.async.of(propertyWriter.getFlowElement()).get());
assertTrue(CallActivityPropertyWriter.class.isInstance(propertyWriter));
assertTrue(CustomElement.slaDueDate.of(propertyWriter.getFlowElement()).get().contains(SLA_DUE_DATE));
}
Aggregations