use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testFromCollectFreeFormLineBothValues.
@Test
public void testFromCollectFreeFormLineBothValues() {
TemplateModel m = new TemplateModel();
m.name = "r1";
FreeFormLine ffl = new FreeFormLine();
ffl.setText("Person( field1 == \"@{f1}\", field2 == \"@{f2}\" )");
FactPattern fp = new FactPattern("java.util.List");
FromCollectCompositeFactPattern fac = new FromCollectCompositeFactPattern();
fac.setRightPattern(ffl);
fac.setFactPattern(fp);
m.addLhsItem(fac);
String expected = "rule \"r1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "java.util.List() from collect ( Person( field1 == \"foo\", field2 == \"bar\" ) ) \n" + "then\n" + "end";
m.addRow(new String[] { "foo", "bar" });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testUpdateModifyMultipleFieldsWithMultipleSkipped3.
@Test
public void testUpdateModifyMultipleFieldsWithMultipleSkipped3() {
TemplateModel m = new TemplateModel();
m.name = "r1";
FactPattern fp = new FactPattern("Person");
fp.setBoundName("$p");
m.addLhsItem(fp);
ActionUpdateField auf1 = new ActionUpdateField("$p");
ActionFieldValue afv0 = new ActionFieldValue();
afv0.setNature(FieldNatureType.TYPE_TEMPLATE);
afv0.setField("field1");
afv0.setValue("$f1");
auf1.addFieldValue(afv0);
ActionFieldValue afv1 = new ActionFieldValue();
afv1.setNature(FieldNatureType.TYPE_TEMPLATE);
afv1.setField("field2");
afv1.setValue("$f2");
auf1.addFieldValue(afv1);
ActionFieldValue afv2 = new ActionFieldValue();
afv2.setNature(FieldNatureType.TYPE_TEMPLATE);
afv2.setField("field3");
afv2.setValue("$f3");
auf1.addFieldValue(afv2);
m.addRhsItem(auf1);
String expected = "rule \"r1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + " $p : Person()\n" + "then\n" + " modify( $p ) {\n" + " setField3(\"v3\")\n" + " }\n" + "end";
m.addRow(new String[] { null, null, "v3" });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testCompositeFactPatternBothValues.
@Test
public void testCompositeFactPatternBothValues() {
TemplateModel m = new TemplateModel();
m.name = "t1";
CompositeFactPattern cp = new CompositeFactPattern(CompositeFactPattern.COMPOSITE_TYPE_OR);
FactPattern p1 = new FactPattern("Person");
SingleFieldConstraint sfc1 = new SingleFieldConstraint();
sfc1.setFieldName("field1");
sfc1.setFieldType(DataType.TYPE_STRING);
sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc1.setValue("$f1");
sfc1.setOperator("==");
p1.addConstraint(sfc1);
FactPattern p2 = new FactPattern("Person");
SingleFieldConstraint sfc2 = new SingleFieldConstraint();
sfc2.setFieldName("field2");
sfc2.setFieldType(DataType.TYPE_STRING);
sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc2.setValue("$f2");
sfc2.setOperator("==");
p2.addConstraint(sfc2);
cp.addFactPattern(p1);
cp.addFactPattern(p2);
m.addLhsItem(cp);
String expected = "rule \"t1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "(\n" + "Person( field1 == \"foo\" )\n" + "or\n" + "Person( field2 == \"bar\" )\n" + ")\n" + "then\n" + "end\n";
m.addRow(new String[] { "foo", "bar" });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testSimpleFromCollectBothValues.
@Test
public void testSimpleFromCollectBothValues() {
TemplateModel m = new TemplateModel();
m.name = "r1";
FactPattern fp = new FactPattern("Person");
SingleFieldConstraint sfc = new SingleFieldConstraint("field1");
sfc.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc.setFieldType(DataType.TYPE_STRING);
sfc.setOperator("==");
sfc.setValue("$f1");
fp.addConstraint(sfc);
FactPattern fp2 = new FactPattern("java.util.List");
SingleFieldConstraint sfc2 = new SingleFieldConstraint("size");
sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc2.setFieldType(DataType.TYPE_NUMERIC_INTEGER);
sfc2.setOperator(">");
sfc2.setValue("$f2");
fp2.addConstraint(sfc2);
FromCollectCompositeFactPattern fac = new FromCollectCompositeFactPattern();
fac.setRightPattern(fp);
fac.setFactPattern(fp2);
m.addLhsItem(fac);
String expected = "rule \"r1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "java.util.List( size > 1 ) from collect ( Person( field1 == \"foo\" ) ) \n" + "then\n" + "end";
m.addRow(new String[] { "1", "foo" });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method checkLHSMultipleFactPatternsWhenPattern1LiteralPattern2Template.
@Test
public void checkLHSMultipleFactPatternsWhenPattern1LiteralPattern2Template() {
FactPattern fp1 = new FactPattern("Smurf");
fp1.setBoundName("p1");
SingleFieldConstraint p1sfc1 = new SingleFieldConstraint();
p1sfc1.setOperator("==");
p1sfc1.setFactType("Smurf");
p1sfc1.setFieldName("field1");
p1sfc1.setFieldType(DataType.TYPE_STRING);
p1sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_LITERAL);
p1sfc1.setValue("value1");
SingleFieldConstraint p1sfc2 = new SingleFieldConstraint();
p1sfc2.setOperator("==");
p1sfc2.setFactType("Smurf");
p1sfc2.setFieldName("field2");
p1sfc2.setFieldType(DataType.TYPE_STRING);
p1sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_LITERAL);
p1sfc2.setValue("value2");
fp1.addConstraint(p1sfc1);
fp1.addConstraint(p1sfc2);
FactPattern fp2 = new FactPattern("Smurf");
fp2.setBoundName("p2");
SingleFieldConstraint p2sfc1 = new SingleFieldConstraint();
p2sfc1.setOperator("==");
p2sfc1.setFactType("Smurf");
p2sfc1.setFieldName("field3");
p2sfc1.setFieldType(DataType.TYPE_STRING);
p2sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
p2sfc1.setValue("$key");
fp2.addConstraint(p2sfc1);
// Test 1
TemplateModel m1 = new TemplateModel();
m1.addLhsItem(fp1);
m1.addLhsItem(fp2);
m1.name = "r1";
m1.addRow(new String[] { null });
final String expected1 = "rule \"r1_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( field1 == \"value1\", field2 == \"value2\" )\n" + " then\n" + "end";
checkMarshall(expected1, m1);
// Test 2
TemplateModel m2 = new TemplateModel();
m2.addLhsItem(fp1);
m2.addLhsItem(fp2);
m2.name = "r2";
m2.addRow(new String[] { "value3" });
final String expected2 = "rule \"r2_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( field1 == \"value1\", field2 == \"value2\" )\n" + " p2 : Smurf( field3 == \"value3\" )\n" + " then\n" + "end";
checkMarshall(expected2, m2);
}
Aggregations