use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.
the class SpecialUsageTest method testBindVariableLiteralModify.
@Test
public void testBindVariableLiteralModify() {
String str = "package mypkg;\n" + "import " + Person.class.getCanonicalName() + ";" + "rule R1 when\n" + " $p : Person($data : \"ABC\")\n" + "then\n" + " modify($p) { setLikes( $data ) };" + "end\n" + "rule R2 when\n" + " $p : Person(likes == \"ABC\")\n" + "then\n" + "end\n";
AnalysisModel analysisModel = new ModelBuilder().build(str);
ModelToGraphConverter converter = new ModelToGraphConverter();
Graph graph = converter.toGraph(analysisModel);
assertLink(graph, "mypkg.R1", "mypkg.R2", ReactivityType.POSITIVE);
}
use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.
the class DrlSyntaxTest method testExists1.
@Test
public void testExists1() {
String str = "package mypkg;\n" + "import " + Person.class.getCanonicalName() + ";" + "rule R1 when\n" + "then\n" + " insert(new Person());" + "end\n" + "rule R2 when\n" + " exists (Person())\n" + "then\n" + "end\n";
AnalysisModel analysisModel = new ModelBuilder().build(str);
ModelToGraphConverter converter = new ModelToGraphConverter();
Graph graph = converter.toGraph(analysisModel);
assertLink(graph, "mypkg.R1", "mypkg.R2", ReactivityType.POSITIVE);
}
use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.
the class ImpactAnalysisTest method testOrderRules.
@Test
public void testOrderRules() {
AnalysisModel analysisModel = new ModelBuilder().build(ORDER_RULES);
ModelToGraphConverter converter = new ModelToGraphConverter();
Graph graph = converter.toGraph(analysisModel);
// View rules which are impacted by R2
ImpactAnalysisHelper impactFilter = new ImpactAnalysisHelper();
Graph impactedSubGraph = impactFilter.filterImpactedNodes(graph, "mypkg.R2");
assertNull(impactedSubGraph.getNodeMap().get("mypkg.R1"));
assertEquals(Status.CHANGED, impactedSubGraph.getNodeMap().get("mypkg.R2").getStatus());
assertEquals(Status.IMPACTED, impactedSubGraph.getNodeMap().get("mypkg.R3").getStatus());
assertNull(impactedSubGraph.getNodeMap().get("mypkg.R4"));
assertEquals(Status.IMPACTED, impactedSubGraph.getNodeMap().get("mypkg.R5").getStatus());
assertEquals(Status.IMPACTED, impactedSubGraph.getNodeMap().get("mypkg.R6").getStatus());
// TextReporter test
String hierarchyText = TextReporter.toHierarchyText(impactedSubGraph);
List<String> lines = Arrays.asList(hierarchyText.split(System.lineSeparator()));
Assertions.assertThat(lines).containsExactlyInAnyOrder("R2[*]", INDENT + "R3[+]", INDENT + INDENT + "R6[+]", INDENT + INDENT + "R5[+]", INDENT + INDENT + INDENT + "(R3)");
String flatText = TextReporter.toFlatText(impactedSubGraph);
List<String> lines2 = Arrays.asList(flatText.split(System.lineSeparator()));
Assertions.assertThat(lines2).containsExactlyInAnyOrder("R2[*]", "R3[+]", "R6[+]", "R5[+]");
}
use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.
the class PropertyTest method testUnaryBoolean.
@Test
public void testUnaryBoolean() {
String str = "package mypkg;\n" + "import " + Person.class.getCanonicalName() + ";\n" + "rule R1 when\n" + " $p : Person(age >= 20)\n" + "then\n" + " modify ($p) {setEmployed(true)};\n" + "end\n" + "rule R2 when\n" + " $p : Person(age < 20)\n" + "then\n" + " modify ($p) {setEmployed(false)};\n" + "end\n" + "rule R3 when\n" + " $p : Person(employed)\n" + "then\n" + "end\n" + "rule R4 when\n" + " $p : Person(!employed)\n" + "then\n" + "end\n";
// Person person = new Person("John", 30);
// person.setEmployed(false);
// runRule(str, person);
AnalysisModel analysisModel = new ModelBuilder().build(str);
ModelToGraphConverter converter = new ModelToGraphConverter();
Graph graph = converter.toGraph(analysisModel);
assertLink(graph, "mypkg.R1", "mypkg.R3", ReactivityType.POSITIVE);
assertLink(graph, "mypkg.R1", "mypkg.R4", ReactivityType.NEGATIVE);
assertLink(graph, "mypkg.R2", "mypkg.R3", ReactivityType.NEGATIVE);
assertLink(graph, "mypkg.R2", "mypkg.R4", ReactivityType.POSITIVE);
}
use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.
the class PropertyTest method testNestedProperty.
@Test
public void testNestedProperty() {
String str = "package mypkg;\n" + "import " + Person.class.getCanonicalName() + ";" + "rule R1 when\n" + " $p : Person()\n" + "then\n" + " modify ($p) {getAddress().setNumber(10)};" + "end\n" + "rule R2 when\n" + " $p : Person(address.number == 10)\n" + "then\n" + "end\n";
// runRule(str, new Person("John", 20, new Address()));
AnalysisModel analysisModel = new ModelBuilder().build(str);
// [modify ($p) {getAddress().setNumber(10)};] is parsed to modifiedProperties=[ModifiedProperty{property='address', value=null}]
// [address.number == 10] is parsed to Constraint{type=EQUAL, property='null', value=10}
// Currently, it results in UNKNOWN impact. Do we want to analyze this to POSITIVE? (TODO: Confirm customer's expectation)
ModelToGraphConverter converter = new ModelToGraphConverter();
Graph graph = converter.toGraph(analysisModel);
assertLink(graph, "mypkg.R1", "mypkg.R2", ReactivityType.UNKNOWN);
}
Aggregations