Search in sources :

Example 31 with RuleViolations

use of org.kie.workbench.common.stunner.core.rule.RuleViolations in project kie-wb-common by kiegroup.

the class ConnectorCardinalityEvaluationHandlerTest method testEvaluateInMaxOneFailed.

@Test
@SuppressWarnings("unchecked")
public void testEvaluateInMaxOneFailed() {
    when(evalUtils.countEdges(anyString(), any(List.class))).thenReturn(1);
    when(context.getDirection()).thenReturn(EdgeCardinalityContext.Direction.INCOMING);
    when(context.getOperation()).thenReturn(Optional.of(CardinalityContext.Operation.ADD));
    RuleViolations violations = tested.evaluate(RULE_IN_MAX_1, context);
    assertNotNull(violations);
    assertTrue(violations.violations(RuleViolation.Type.ERROR).iterator().hasNext());
}
Also used : RuleViolations(org.kie.workbench.common.stunner.core.rule.RuleViolations) List(java.util.List) Test(org.junit.Test)

Example 32 with RuleViolations

use of org.kie.workbench.common.stunner.core.rule.RuleViolations in project kie-wb-common by kiegroup.

the class ElementCardinalityEvaluationHandlerTest method testMax0EvaluateSuccess.

@Test
@SuppressWarnings("unchecked")
public void testMax0EvaluateSuccess() {
    final Map<String, Integer> count = new HashMap<String, Integer>(1) {

        {
            put(CANDIDATE_ROLE1, 0);
        }
    };
    doReturn(count).when(tested).countLabels(any(Graph.class), anySet());
    when(context.getCandidate()).thenReturn(Optional.empty());
    when(context.getOperation()).thenReturn(Optional.empty());
    final RuleViolations violations = tested.evaluate(RULE_MAX_0, context);
    assertNotNull(violations);
    assertFalse(violations.violations(RuleViolation.Type.ERROR).iterator().hasNext());
}
Also used : Graph(org.kie.workbench.common.stunner.core.graph.Graph) HashMap(java.util.HashMap) RuleViolations(org.kie.workbench.common.stunner.core.rule.RuleViolations) Test(org.junit.Test)

Example 33 with RuleViolations

use of org.kie.workbench.common.stunner.core.rule.RuleViolations in project kie-wb-common by kiegroup.

the class ElementCardinalityEvaluationHandlerTest method testEvaluateSuccessAgain.

@Test
@SuppressWarnings("unchecked")
public void testEvaluateSuccessAgain() {
    final Map<String, Integer> count = new HashMap<String, Integer>(2) {

        {
            put(CANDIDATE_ROLE1, 100);
            put(CANDIDATE_ROLE2, 0);
        }
    };
    doReturn(count).when(tested).countLabels(any(Graph.class), anySet());
    when(context.getCandidate()).thenReturn(Optional.of(candidate));
    when(context.getOperation()).thenReturn(Optional.of(CardinalityContext.Operation.ADD));
    final RuleViolations violations = tested.evaluate(RULE_NO_LIMIT, context);
    assertNotNull(violations);
    assertFalse(violations.violations(RuleViolation.Type.ERROR).iterator().hasNext());
}
Also used : Graph(org.kie.workbench.common.stunner.core.graph.Graph) HashMap(java.util.HashMap) RuleViolations(org.kie.workbench.common.stunner.core.rule.RuleViolations) Test(org.junit.Test)

Example 34 with RuleViolations

use of org.kie.workbench.common.stunner.core.rule.RuleViolations in project kie-wb-common by kiegroup.

the class ElementCardinalityEvaluationHandlerTest method testMin1EvaluateFailed.

@Test
@SuppressWarnings("unchecked")
public void testMin1EvaluateFailed() {
    final Map<String, Integer> count = new HashMap<String, Integer>(1) {

        {
            put(CANDIDATE_ROLE1, 0);
        }
    };
    doReturn(count).when(tested).countLabels(any(Graph.class), anySet());
    when(context.getCandidate()).thenReturn(Optional.empty());
    when(context.getOperation()).thenReturn(Optional.empty());
    final RuleViolations violations = tested.evaluate(RULE_MIN_1, context);
    assertNotNull(violations);
    assertTrue(violations.violations(RuleViolation.Type.WARNING).iterator().hasNext());
}
Also used : Graph(org.kie.workbench.common.stunner.core.graph.Graph) HashMap(java.util.HashMap) RuleViolations(org.kie.workbench.common.stunner.core.rule.RuleViolations) Test(org.junit.Test)

Example 35 with RuleViolations

use of org.kie.workbench.common.stunner.core.rule.RuleViolations in project kie-wb-common by kiegroup.

the class ElementCardinalityEvaluationHandlerTest method testEvaluateSuccess.

@Test
@SuppressWarnings("unchecked")
public void testEvaluateSuccess() {
    final Map<String, Integer> count = new HashMap<String, Integer>(2) {

        {
            put(CANDIDATE_ROLE1, 0);
            put(CANDIDATE_ROLE2, 0);
        }
    };
    doReturn(count).when(tested).countLabels(any(Graph.class), anySet());
    when(context.getCandidate()).thenReturn(Optional.of(candidate));
    when(context.getOperation()).thenReturn(Optional.of(CardinalityContext.Operation.ADD));
    final RuleViolations violations = tested.evaluate(RULE_NO_LIMIT, context);
    assertNotNull(violations);
    assertFalse(violations.violations(RuleViolation.Type.ERROR).iterator().hasNext());
}
Also used : Graph(org.kie.workbench.common.stunner.core.graph.Graph) HashMap(java.util.HashMap) RuleViolations(org.kie.workbench.common.stunner.core.rule.RuleViolations) Test(org.junit.Test)

Aggregations

RuleViolations (org.kie.workbench.common.stunner.core.rule.RuleViolations)76 Test (org.junit.Test)68 RuleViolation (org.kie.workbench.common.stunner.core.rule.RuleViolation)20 DefaultRuleViolations (org.kie.workbench.common.stunner.core.rule.violations.DefaultRuleViolations)19 RuleSet (org.kie.workbench.common.stunner.core.rule.RuleSet)16 RuleEvaluationContext (org.kie.workbench.common.stunner.core.rule.RuleEvaluationContext)14 Edge (org.kie.workbench.common.stunner.core.graph.Edge)13 Graph (org.kie.workbench.common.stunner.core.graph.Graph)13 Node (org.kie.workbench.common.stunner.core.graph.Node)12 HashMap (java.util.HashMap)11 ContainmentRuleViolation (org.kie.workbench.common.stunner.core.rule.violations.ContainmentRuleViolation)11 HashSet (java.util.HashSet)8 List (java.util.List)7 Collection (java.util.Collection)3 AbstractGraphDefinitionTypesTest (org.kie.workbench.common.stunner.core.AbstractGraphDefinitionTypesTest)3 NodeImpl (org.kie.workbench.common.stunner.core.graph.impl.NodeImpl)3 TreeTraverseCallback (org.kie.workbench.common.stunner.core.graph.processing.traverse.tree.TreeTraverseCallback)3 ArrayList (java.util.ArrayList)2 View (org.kie.workbench.common.stunner.core.graph.content.view.View)2 EdgeImpl (org.kie.workbench.common.stunner.core.graph.impl.EdgeImpl)2