Search in sources :

Example 1 with Address

use of org.drools.modelcompiler.domain.Address in project drools by kiegroup.

the class CompilerTest method testSimpleInsertWithProperties.

@Test
public void testSimpleInsertWithProperties() {
    String str = "import " + Result.class.getCanonicalName() + ";" + "import " + Person.class.getCanonicalName() + ";" + "rule R when\n" + "  $p : Person( address.city.startsWith(\"M\"))\n" + "then\n" + "  Result r = new Result($p.getName());" + "  insert(r);\n" + "end";
    KieSession ksession = getKieSession(str);
    ksession.insert(new Person("Mark", 37, new Address("London")));
    ksession.insert(new Person("Luca", 32, new Address("Milan")));
    ksession.fireAllRules();
    Collection<Result> results = getObjectsIntoList(ksession, Result.class);
    assertEquals(1, results.size());
    assertEquals("Luca", results.iterator().next().getValue());
}
Also used : Address(org.drools.modelcompiler.domain.Address) KieSession(org.kie.api.runtime.KieSession) Person(org.drools.modelcompiler.domain.Person) Result(org.drools.modelcompiler.domain.Result) Test(org.junit.Test)

Example 2 with Address

use of org.drools.modelcompiler.domain.Address in project drools by kiegroup.

the class CompilerTest method testNullSafeDereferncing2.

@Test
@Ignore("the codegen does not support it yet")
public void testNullSafeDereferncing2() {
    String str = "import " + Result.class.getCanonicalName() + ";" + "import " + Person.class.getCanonicalName() + ";" + "rule R when\n" + "  $p : Person( address!.city.startsWith(\"M\") )\n" + "then\n" + "  Result r = new Result($p.getName());" + "  insert(r);\n" + "end";
    KieSession ksession = getKieSession(str);
    ksession.insert(new Person("John1", 41, null));
    ksession.insert(new Person("John2", 42, new Address("Milan")));
    ksession.fireAllRules();
    List<Result> results = getObjectsIntoList(ksession, Result.class);
    assertEquals(1, results.size());
    assertEquals("John2", results.get(0).getValue());
}
Also used : Address(org.drools.modelcompiler.domain.Address) KieSession(org.kie.api.runtime.KieSession) Person(org.drools.modelcompiler.domain.Person) Result(org.drools.modelcompiler.domain.Result) Ignore(org.junit.Ignore) Test(org.junit.Test)

Example 3 with Address

use of org.drools.modelcompiler.domain.Address in project drools by kiegroup.

the class CompilerTest method testChainOfMethodCallInConstraintSub.

@Test
public void testChainOfMethodCallInConstraintSub() {
    String str = "import " + Person.class.getCanonicalName() + ";" + "rule R when\n" + // DRL feature "Grouped accessors for nested objects" is addressed by the RuleDescr directly.
    "  $p : Person( address.( city.length() == 5 && city.startsWith(\"I\") ) )\n" + "then\n" + "  insert(\"matched\");\n" + "end";
    KieSession ksession = getKieSession(str);
    Person john = new Person("John", 47);
    Address a = new Address("Italy");
    john.setAddress(a);
    ksession.insert(john);
    ksession.fireAllRules();
    Collection<String> results = getObjectsIntoList(ksession, String.class);
    assertEquals(1, results.size());
}
Also used : Address(org.drools.modelcompiler.domain.Address) KieSession(org.kie.api.runtime.KieSession) Person(org.drools.modelcompiler.domain.Person) Test(org.junit.Test)

Example 4 with Address

use of org.drools.modelcompiler.domain.Address in project drools by kiegroup.

the class FlowTest method testOrConditional.

@Test
public void testOrConditional() {
    final org.drools.model.Global<java.util.List> var_list = globalOf(java.util.List.class, "defaultpkg", "list");
    final Variable<Employee> var_$pattern_Employee$1$ = declarationOf(Employee.class, "$pattern_Employee$1$");
    final Variable<Address> var_$address = declarationOf(Address.class, "$address", reactiveFrom(var_$pattern_Employee$1$, (_this) -> _this.getAddress()));
    org.drools.model.Rule rule = rule("R").build(or(and(input(var_$pattern_Employee$1$), expr("$expr$2$", var_$address, (_this) -> org.drools.modelcompiler.util.EvaluationUtil.areNullSafeEquals(_this.getCity(), "Big City")).indexedBy(String.class, org.drools.model.Index.ConstraintType.EQUAL, 0, _this -> _this.getCity(), "Big City").reactOn("city")), and(input(var_$pattern_Employee$1$), expr("$expr$4$", var_$address, (_this) -> org.drools.modelcompiler.util.EvaluationUtil.areNullSafeEquals(_this.getCity(), "Small City")).indexedBy(String.class, org.drools.model.Index.ConstraintType.EQUAL, 0, _this -> _this.getCity(), "Small City").reactOn("city"))), on(var_$address, var_list).execute(($address, list) -> {
        list.add($address.getCity());
    }));
    Model model = new ModelImpl().addRule(rule).addGlobal(var_list);
    KieBase kieBase = KieBaseBuilder.createKieBaseFromModel(model);
    KieSession kieSession = kieBase.newKieSession();
    List<String> results = new ArrayList<>();
    kieSession.setGlobal("list", results);
    final Employee bruno = createEmployee("Bruno", new Address("Elm", 10, "Small City"));
    kieSession.insert(bruno);
    final Employee alice = createEmployee("Alice", new Address("Elm", 10, "Big City"));
    kieSession.insert(alice);
    kieSession.fireAllRules();
    Assertions.assertThat(results).containsExactlyInAnyOrder("Big City", "Small City");
}
Also used : Arrays(java.util.Arrays) CoreMatchers.hasItem(org.hamcrest.CoreMatchers.hasItem) FlowDSL.eval(org.drools.model.FlowDSL.eval) ObjectOutput(java.io.ObjectOutput) Man(org.drools.modelcompiler.domain.Man) Global(org.drools.model.Global) FlowDSL.not(org.drools.model.FlowDSL.not) Toy(org.drools.modelcompiler.domain.Toy) FlowDSL.and(org.drools.model.FlowDSL.and) FlowDSL.accFunction(org.drools.model.FlowDSL.accFunction) Relationship(org.drools.modelcompiler.domain.Relationship) BaseModelTest.getObjectsIntoList(org.drools.modelcompiler.BaseModelTest.getObjectsIntoList) Assert.assertThat(org.junit.Assert.assertThat) Query2Def(org.drools.model.Query2Def) Child(org.drools.modelcompiler.domain.Child) ClassObjectFilter(org.kie.api.runtime.ClassObjectFilter) AccumulateFunction(org.kie.api.runtime.rule.AccumulateFunction) FlowDSL.from(org.drools.model.FlowDSL.from) QueryResults(org.kie.api.runtime.rule.QueryResults) Arrays.asList(java.util.Arrays.asList) Map(java.util.Map) FlowDSL.reactiveFrom(org.drools.model.FlowDSL.reactiveFrom) Assertions(org.assertj.core.api.Assertions) KieSession(org.kie.api.runtime.KieSession) FlowDSL.declarationOf(org.drools.model.FlowDSL.declarationOf) TargetPolicy(org.drools.modelcompiler.domain.TargetPolicy) FlowDSL.or(org.drools.model.FlowDSL.or) EventProcessingOption(org.kie.api.conf.EventProcessingOption) Collection(java.util.Collection) FlowDSL.on(org.drools.model.FlowDSL.on) Customer(org.drools.modelcompiler.domain.Customer) Serializable(java.io.Serializable) ConstraintType(org.drools.model.Index.ConstraintType) List(java.util.List) Query(org.drools.model.Query) FlowDSL.executeScript(org.drools.model.FlowDSL.executeScript) InternationalAddress(org.drools.modelcompiler.oopathdtables.InternationalAddress) Assert.assertFalse(org.junit.Assert.assertFalse) KnowledgeBaseFactory(org.drools.core.impl.KnowledgeBaseFactory) FlowDSL.bind(org.drools.model.FlowDSL.bind) FlowDSL.valueOf(org.drools.model.FlowDSL.valueOf) Person(org.drools.modelcompiler.domain.Person) ObjectInput(java.io.ObjectInput) InOperator(org.drools.model.operators.InOperator) FlowDSL.when(org.drools.model.FlowDSL.when) ModelImpl(org.drools.model.impl.ModelImpl) FlowDSL.globalOf(org.drools.model.FlowDSL.globalOf) StockTick(org.drools.modelcompiler.domain.StockTick) Employee.createEmployee(org.drools.modelcompiler.domain.Employee.createEmployee) ClockType(org.drools.core.ClockType) FlowDSL.accumulate(org.drools.model.FlowDSL.accumulate) ArrayList(java.util.ArrayList) Result(org.drools.modelcompiler.domain.Result) KieSessionConfiguration(org.kie.api.runtime.KieSessionConfiguration) Adult(org.drools.modelcompiler.domain.Adult) Employee(org.drools.modelcompiler.domain.Employee) FlowDSL.execute(org.drools.model.FlowDSL.execute) Woman(org.drools.modelcompiler.domain.Woman) KieBase(org.kie.api.KieBase) Model(org.drools.model.Model) FlowDSL.rule(org.drools.model.FlowDSL.rule) FlowDSL.expr(org.drools.model.FlowDSL.expr) Variable(org.drools.model.Variable) FlowDSL.query(org.drools.model.FlowDSL.query) Address(org.drools.modelcompiler.domain.Address) FlowDSL.window(org.drools.model.FlowDSL.window) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Test(org.junit.Test) FlowDSL.input(org.drools.model.FlowDSL.input) SessionPseudoClock(org.kie.api.time.SessionPseudoClock) FactHandle(org.kie.api.runtime.rule.FactHandle) TimeUnit(java.util.concurrent.TimeUnit) KieBaseBuilder(org.drools.modelcompiler.builder.KieBaseBuilder) ClockTypeOption(org.kie.api.runtime.conf.ClockTypeOption) Assert.assertNull(org.junit.Assert.assertNull) FlowDSL.forall(org.drools.model.FlowDSL.forall) Rule(org.drools.model.Rule) Query1Def(org.drools.model.Query1Def) Assert.assertEquals(org.junit.Assert.assertEquals) InternationalAddress(org.drools.modelcompiler.oopathdtables.InternationalAddress) Address(org.drools.modelcompiler.domain.Address) ArrayList(java.util.ArrayList) Employee.createEmployee(org.drools.modelcompiler.domain.Employee.createEmployee) Employee(org.drools.modelcompiler.domain.Employee) KieBase(org.kie.api.KieBase) Rule(org.drools.model.Rule) Model(org.drools.model.Model) BaseModelTest.getObjectsIntoList(org.drools.modelcompiler.BaseModelTest.getObjectsIntoList) Arrays.asList(java.util.Arrays.asList) List(java.util.List) ArrayList(java.util.ArrayList) KieSession(org.kie.api.runtime.KieSession) ModelImpl(org.drools.model.impl.ModelImpl) Test(org.junit.Test)

Example 5 with Address

use of org.drools.modelcompiler.domain.Address in project drools by kiegroup.

the class InTest method testInWithJoin.

@Test
public void testInWithJoin() {
    String str = "import org.drools.modelcompiler.domain.Address; \n" + "rule R when \n" + "    $a1: Address($street: street, city in (\"Brno\", \"Milan\", \"Bratislava\")) \n" + "    $a2: Address(city in (\"Krakow\", \"Paris\", $a1.city)) \n" + "then \n" + "end\n";
    KieSession ksession = getKieSession(str);
    ksession.insert(new Address("Brno"));
    ksession.insert(new Address("Milan"));
    assertEquals(2, ksession.fireAllRules());
}
Also used : Address(org.drools.modelcompiler.domain.Address) KieSession(org.kie.api.runtime.KieSession) Test(org.junit.Test)

Aggregations

Address (org.drools.modelcompiler.domain.Address)17 Test (org.junit.Test)17 KieSession (org.kie.api.runtime.KieSession)17 ArrayList (java.util.ArrayList)10 Employee (org.drools.modelcompiler.domain.Employee)10 Employee.createEmployee (org.drools.modelcompiler.domain.Employee.createEmployee)10 InternationalAddress (org.drools.modelcompiler.domain.InternationalAddress)7 Person (org.drools.modelcompiler.domain.Person)7 Result (org.drools.modelcompiler.domain.Result)3 IOException (java.io.IOException)1 ObjectInput (java.io.ObjectInput)1 ObjectOutput (java.io.ObjectOutput)1 Serializable (java.io.Serializable)1 Arrays (java.util.Arrays)1 Arrays.asList (java.util.Arrays.asList)1 Collection (java.util.Collection)1 List (java.util.List)1 Map (java.util.Map)1 TimeUnit (java.util.concurrent.TimeUnit)1 Assertions (org.assertj.core.api.Assertions)1