Search in sources :

Example 31 with ModelBuilder

use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.

the class BasicGraphTest method testLoop.

@Test
public void testLoop() {
    String str = "package mypkg;\n" + "import " + Person.class.getCanonicalName() + ";" + "rule R1 when\n" + "  $p : Person(name == \"Mario\")\n" + "then\n" + "  modify($p) { setAge( 18 ) };" + "end\n" + "rule R2 when\n" + "  $p : Person(age > 10)\n" + "then\n" + "  modify($p) { setName( \"Toshiya\" ) };" + "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);
    assertLink(graph, "mypkg.R2", "mypkg.R1", ReactivityType.NEGATIVE);
}
Also used : ModelBuilder(org.drools.impact.analysis.parser.ModelBuilder) Graph(org.drools.impact.analysis.graph.Graph) AnalysisModel(org.drools.impact.analysis.model.AnalysisModel) ModelToGraphConverter(org.drools.impact.analysis.graph.ModelToGraphConverter) Test(org.junit.Test)

Example 32 with ModelBuilder

use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.

the class RhsTest method testForEachDelete.

@Test
public void testForEachDelete() {
    String str = "package mypkg;\n" + "import " + List.class.getCanonicalName() + ";" + "rule R1\n" + "  when\n" + "    $objectList : List() from collect(Object())\n" + "  then\n" + "    for(Object $object : $objectList){\n" + "      delete($object);\n" + "    }\n" + "end";
    AnalysisModel analysisModel = new ModelBuilder().build(str);
    ModelToGraphConverter converter = new ModelToGraphConverter();
    Graph graph = converter.toGraph(analysisModel);
    // at the moment, R1's patternClass is parsed as `List`. It will be addressed in DROOLS-6616
    assertLink(graph, "mypkg.R1", "mypkg.R1");
}
Also used : ModelBuilder(org.drools.impact.analysis.parser.ModelBuilder) Graph(org.drools.impact.analysis.graph.Graph) AnalysisModel(org.drools.impact.analysis.model.AnalysisModel) ModelToGraphConverter(org.drools.impact.analysis.graph.ModelToGraphConverter) Test(org.junit.Test)

Example 33 with ModelBuilder

use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.

the class RhsTest method testForEachInsert.

@Test
public void testForEachInsert() {
    String str = "package mypkg;\n" + "import " + Person.class.getCanonicalName() + ";" + "import " + Address.class.getCanonicalName() + ";" + "rule R1\n" + "  when\n" + "    $person : Person()\n" + "  then\n" + "    for(Address $address : $person.getAddresses()){\n" + "      insert($address);\n" + "    }\n" + "end\n" + "rule R2\n" + "  when\n" + "    Address()\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);
}
Also used : ModelBuilder(org.drools.impact.analysis.parser.ModelBuilder) Graph(org.drools.impact.analysis.graph.Graph) Address(org.drools.impact.analysis.integrationtests.domain.Address) AnalysisModel(org.drools.impact.analysis.model.AnalysisModel) ModelToGraphConverter(org.drools.impact.analysis.graph.ModelToGraphConverter) Test(org.junit.Test)

Example 34 with ModelBuilder

use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.

the class SpecialUsageTest method testModifyMapInt.

@Test
public void testModifyMapInt() {
    String str = "package mypkg;\n" + "import " + ControlFact.class.getCanonicalName() + ";" + "dialect \"mvel\"" + "rule R1 when\n" + "  $c : ControlFact()\n" + "then\n" + "  $c.mapDataInt[\"Key1\"] = 100;" + "  modify ($c) {mapDataInt = $c.mapDataInt};" + "end\n" + "rule R2 when\n" + "  $c : ControlFact(mapDataInt[\"Key1\"] == 100)\n" + "then\n" + "end\n" + "rule R3 when\n" + "  $c : ControlFact(mapDataInt[\"Key1\"] != 100)\n" + "then\n" + "end\n" + "rule R4 when\n" + "  $c : ControlFact(mapDataInt[\"Key2\"] == 100)\n" + "then\n" + "end\n" + "rule R5 when\n" + "  $c : ControlFact(mapDataInt[\"Key1\"] == 200)\n" + "then\n" + "end\n";
    // runRule(str, new ControlFact());
    AnalysisModel analysisModel = new ModelBuilder().build(str);
    ModelToGraphConverter converter = new ModelToGraphConverter();
    Graph graph = converter.toGraph(analysisModel);
    assertLink(graph, "mypkg.R1", "mypkg.R2", ReactivityType.POSITIVE);
    assertLink(graph, "mypkg.R1", "mypkg.R3", ReactivityType.NEGATIVE);
    assertLink(graph, "mypkg.R1", "mypkg.R4", ReactivityType.UNKNOWN);
    assertLink(graph, "mypkg.R1", "mypkg.R5", ReactivityType.NEGATIVE);
}
Also used : ModelBuilder(org.drools.impact.analysis.parser.ModelBuilder) Graph(org.drools.impact.analysis.graph.Graph) AnalysisModel(org.drools.impact.analysis.model.AnalysisModel) ModelToGraphConverter(org.drools.impact.analysis.graph.ModelToGraphConverter) ControlFact(org.drools.impact.analysis.integrationtests.domain.ControlFact) Test(org.junit.Test)

Example 35 with ModelBuilder

use of org.drools.impact.analysis.parser.ModelBuilder in project drools by kiegroup.

the class SpecialUsageTest method testModifyMap.

@Test
public void testModifyMap() {
    String str = "package mypkg;\n" + "import " + ControlFact.class.getCanonicalName() + ";" + "dialect \"mvel\"" + "rule R1 when\n" + "  $c : ControlFact()\n" + "then\n" + "  $c.mapData[\"Key1\"] = \"Value1\";" + "  modify ($c) {mapData = $c.mapData};" + "end\n" + "rule R2 when\n" + "  $c : ControlFact(mapData[\"Key1\"] == \"Value1\")\n" + "then\n" + "end\n" + "rule R3 when\n" + "  $c : ControlFact(mapData[\"Key1\"] != \"Value1\")\n" + "then\n" + "end\n" + "rule R4 when\n" + "  $c : ControlFact(mapData[\"Key2\"] == \"Value1\")\n" + "then\n" + "end\n" + "rule R5 when\n" + "  $c : ControlFact(mapData[\"Key1\"] == \"Value2\")\n" + "then\n" + "end\n";
    // runRule(str, new ControlFact());
    AnalysisModel analysisModel = new ModelBuilder().build(str);
    ModelToGraphConverter converter = new ModelToGraphConverter();
    Graph graph = converter.toGraph(analysisModel);
    assertLink(graph, "mypkg.R1", "mypkg.R2", ReactivityType.POSITIVE);
    assertLink(graph, "mypkg.R1", "mypkg.R3", ReactivityType.NEGATIVE);
    assertLink(graph, "mypkg.R1", "mypkg.R4", ReactivityType.UNKNOWN);
    assertLink(graph, "mypkg.R1", "mypkg.R5", ReactivityType.NEGATIVE);
}
Also used : ModelBuilder(org.drools.impact.analysis.parser.ModelBuilder) Graph(org.drools.impact.analysis.graph.Graph) AnalysisModel(org.drools.impact.analysis.model.AnalysisModel) ModelToGraphConverter(org.drools.impact.analysis.graph.ModelToGraphConverter) ControlFact(org.drools.impact.analysis.integrationtests.domain.ControlFact) Test(org.junit.Test)

Aggregations

Graph (org.drools.impact.analysis.graph.Graph)36 ModelToGraphConverter (org.drools.impact.analysis.graph.ModelToGraphConverter)36 AnalysisModel (org.drools.impact.analysis.model.AnalysisModel)36 ModelBuilder (org.drools.impact.analysis.parser.ModelBuilder)36 Test (org.junit.Test)34 Person (org.drools.impact.analysis.integrationtests.domain.Person)9 Address (org.drools.impact.analysis.integrationtests.domain.Address)5 ImpactAnalysisHelper (org.drools.impact.analysis.graph.ImpactAnalysisHelper)4 ControlFact (org.drools.impact.analysis.integrationtests.domain.ControlFact)3 GraphCollapsionHelper (org.drools.impact.analysis.graph.GraphCollapsionHelper)2 PropHolder (org.drools.impact.analysis.integrationtests.domain.PropHolder)2 BigDecimal (java.math.BigDecimal)1 ArrayList (java.util.ArrayList)1 Node (org.drools.impact.analysis.graph.Node)1 AbstractGraphTest (org.drools.impact.analysis.integrationtests.AbstractGraphTest)1 ProductItem (org.drools.impact.analysis.integrationtests.domain.ProductItem)1 LoanApplication (org.drools.impact.analysis.integrationtests.kogito.domain.LoanApplication)1