use of org.kie.workbench.common.stunner.core.graph.command.ContextualGraphCommandExecutionContext in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testSetEdge1TargetAsNodeB.
@Test
@SuppressWarnings("unchecked")
public void testSetEdge1TargetAsNodeB() {
SetConnectionTargetNodeCommand setTarget = new SetConnectionTargetNodeCommand(graph.nodeB, graph.edge1);
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
CommandResult<RuleViolation> result = setTarget.allow(executionContext);
assertRuleFailedResult(result);
}
use of org.kie.workbench.common.stunner.core.graph.command.ContextualGraphCommandExecutionContext in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testSetEdge1SourceAsEndNode.
@Test
@SuppressWarnings("unchecked")
public void testSetEdge1SourceAsEndNode() {
SetConnectionSourceNodeCommand setTarget = new SetConnectionSourceNodeCommand(graph.endNode, graph.edge1);
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
CommandResult<RuleViolation> result = setTarget.allow(executionContext);
assertSuccessfullResult(result);
}
use of org.kie.workbench.common.stunner.core.graph.command.ContextualGraphCommandExecutionContext in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testMoveIntermNodeIntoParentNode.
@Test
@SuppressWarnings("unchecked")
public void testMoveIntermNodeIntoParentNode() {
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
SetChildrenCommand setChildren = new SetChildrenCommand(graph.parentNode, graph.intermNode);
CommandResult<RuleViolation> result = setChildren.allow(executionContext);
assertRuleFailedResult(result);
}
use of org.kie.workbench.common.stunner.core.graph.command.ContextualGraphCommandExecutionContext in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testMoveSomeConnectedNodesIntoParentNode.
@Test
@SuppressWarnings("unchecked")
public void testMoveSomeConnectedNodesIntoParentNode() {
SetChildrenCommand setChildren = new SetChildrenCommand(graph.parentNode, Arrays.asList(graph.startNode, graph.endNode));
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
CommandResult<RuleViolation> result = setChildren.allow(executionContext);
assertRuleFailedResult(result);
}
use of org.kie.workbench.common.stunner.core.graph.command.ContextualGraphCommandExecutionContext in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testMoveStartNodeIntoNodeB.
@Test
@SuppressWarnings("unchecked")
public void testMoveStartNodeIntoNodeB() {
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
SetChildrenCommand setChildren = new SetChildrenCommand(graph.nodeB, graph.startNode);
CommandResult<RuleViolation> result = setChildren.allow(executionContext);
assertTrue(isError(result));
assertTrue(result.getViolations().iterator().hasNext());
RuleViolation ruleViolation = result.getViolations().iterator().next();
assertTrue(ruleViolation instanceof ContextOperationNotAllowedViolation);
}
Aggregations