use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testNestedCompositeConstraints2FirstValue.
@Test
public void testNestedCompositeConstraints2FirstValue() {
TemplateModel m = new TemplateModel();
m.name = "t1";
FactPattern p = new FactPattern("Person");
CompositeFieldConstraint comp = new CompositeFieldConstraint();
comp.setCompositeJunctionType(CompositeFieldConstraint.COMPOSITE_TYPE_OR);
p.addConstraint(comp);
m.addLhsItem(p);
final SingleFieldConstraint sfc1 = new SingleFieldConstraint();
sfc1.setFieldName("field1");
sfc1.setFieldType(DataType.TYPE_STRING);
sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc1.setValue("$f1");
sfc1.setOperator("==");
comp.addConstraint(sfc1);
CompositeFieldConstraint comp2 = new CompositeFieldConstraint();
comp2.setCompositeJunctionType(CompositeFieldConstraint.COMPOSITE_TYPE_AND);
final SingleFieldConstraint comp2sfc1 = new SingleFieldConstraint();
comp2sfc1.setFieldType(DataType.TYPE_STRING);
comp2sfc1.setFieldName("field2");
comp2sfc1.setOperator("==");
comp2sfc1.setValue("$f2");
comp2sfc1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_TEMPLATE);
comp2.addConstraint(comp2sfc1);
comp.addConstraint(comp2);
String expected = "rule \"t1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "Person( field1 == \"foo\" )\n" + "then\n" + "end\n";
m.addRow(new String[] { "foo", null });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testNestedCompositeConstraints5AllValues.
@Test
public void testNestedCompositeConstraints5AllValues() {
TemplateModel m = new TemplateModel();
m.name = "t1";
FactPattern p = new FactPattern("Person");
CompositeFieldConstraint comp = new CompositeFieldConstraint();
comp.setCompositeJunctionType(CompositeFieldConstraint.COMPOSITE_TYPE_OR);
p.addConstraint(comp);
m.addLhsItem(p);
final SingleFieldConstraint comp1sfc1 = new SingleFieldConstraint();
comp1sfc1.setFieldName("field1");
comp1sfc1.setFieldType(DataType.TYPE_STRING);
comp1sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
comp1sfc1.setValue("$f1");
comp1sfc1.setOperator("==");
comp.addConstraint(comp1sfc1);
final SingleFieldConstraint comp1sfc2 = new SingleFieldConstraint();
comp1sfc2.setFieldName("field2");
comp1sfc2.setFieldType(DataType.TYPE_STRING);
comp1sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
comp1sfc2.setValue("$f2");
comp1sfc2.setOperator("==");
comp.addConstraint(comp1sfc2);
final SingleFieldConstraint comp1sfc3 = new SingleFieldConstraint();
comp1sfc3.setFieldName("field3");
comp1sfc3.setFieldType(DataType.TYPE_STRING);
comp1sfc3.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
comp1sfc3.setValue("$f3");
comp1sfc3.setOperator("==");
comp.addConstraint(comp1sfc3);
String expected = "rule \"t1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "Person( field1 == \"foo\" || field2 == \"bar\" || field3 == \"goo\" )\n" + "then\n" + "end\n";
m.addRow(new String[] { "foo", "bar", "goo" });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method checkPattern1StrictlyLiteralPattern2StrictlyTemplate.
@Test
public void checkPattern1StrictlyLiteralPattern2StrictlyTemplate() {
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_NUMERIC_INTEGER);
p1sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_LITERAL);
p1sfc2.setValue("123");
ActionUpdateField p1auf1 = new ActionUpdateField("p1");
p1auf1.addFieldValue(new ActionFieldValue("field1", "newValue", DataType.TYPE_STRING));
p1auf1.getFieldValues()[0].setNature(BaseSingleFieldConstraint.TYPE_LITERAL);
ActionUpdateField p1auf2 = new ActionUpdateField("p1");
p1auf2.addFieldValue(new ActionFieldValue("field2", "12345", DataType.TYPE_NUMERIC_INTEGER));
p1auf2.getFieldValues()[0].setNature(BaseSingleFieldConstraint.TYPE_LITERAL);
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("field1");
p2sfc1.setFieldType(DataType.TYPE_STRING);
p2sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
p2sfc1.setValue("$oldField1");
SingleFieldConstraint p2sfc2 = new SingleFieldConstraint();
p2sfc2.setOperator("==");
p2sfc2.setFactType("Smurf");
p2sfc2.setFieldName("field2");
p2sfc2.setFieldType(DataType.TYPE_NUMERIC_INTEGER);
p2sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
p2sfc2.setValue("$oldField2");
ActionUpdateField p2auf1 = new ActionUpdateField("p2");
p2auf1.addFieldValue(new ActionFieldValue("field1", "$newField1", DataType.TYPE_STRING));
p2auf1.getFieldValues()[0].setNature(BaseSingleFieldConstraint.TYPE_TEMPLATE);
ActionUpdateField p2auf2 = new ActionUpdateField("p2");
p2auf2.addFieldValue(new ActionFieldValue("field2", "$newField2", DataType.TYPE_NUMERIC_INTEGER));
p2auf2.getFieldValues()[0].setNature(BaseSingleFieldConstraint.TYPE_TEMPLATE);
fp2.addConstraint(p2sfc1);
fp2.addConstraint(p2sfc2);
// Test 1
TemplateModel m1 = new TemplateModel();
m1.addLhsItem(fp1);
m1.addLhsItem(fp2);
m1.addRhsItem(p1auf1);
m1.addRhsItem(p1auf2);
m1.addRhsItem(p2auf1);
m1.addRhsItem(p2auf2);
m1.name = "r1";
m1.addRow(new String[] { null, null, null, null });
final String expected1 = "rule \"r1_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( field1 == \"value1\", field2 == 123 )\n" + " then\n" + " modify( p1 ) {" + " setField1( \"newValue\" )," + " setField2( 12345 )" + " }" + "end";
checkMarshall(expected1, m1);
m1.addRow(new String[] { "abc", "0", "def", "1" });
final String expected2 = "rule \"r1_1\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( field1 == \"value1\", field2 == 123 )\n" + " p2 : Smurf( field1 == \"abc\", field2 == 0 )\n" + " then\n" + " modify( p1 ) {" + " setField1( \"newValue\" )," + " setField2( 12345 )" + " }" + " modify( p2 ) {" + " setField1( \"def\" )," + " setField2( 1 )" + " }" + "end";
checkMarshall(expected2 + expected1, m1);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testActionUpdateFactSecondValue.
@Test
public void testActionUpdateFactSecondValue() {
TemplateModel m = new TemplateModel();
m.name = "r1";
FactPattern fp = new FactPattern("Person");
fp.setBoundName("$p");
m.addLhsItem(fp);
ActionSetField asf = new ActionSetField("$p");
ActionFieldValue afv0 = new ActionFieldValue();
afv0.setNature(FieldNatureType.TYPE_TEMPLATE);
afv0.setField("field1");
afv0.setValue("$f1");
asf.addFieldValue(afv0);
ActionFieldValue afv1 = new ActionFieldValue();
afv1.setNature(FieldNatureType.TYPE_TEMPLATE);
afv1.setField("field2");
afv1.setValue("$f2");
asf.addFieldValue(afv1);
m.addRhsItem(asf);
String expected = "rule \"r1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "$p : Person()\n" + "then\n" + "$p.setField2(\"bar\");\n" + "end";
m.addRow(new String[] { null, "bar" });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testNestedCompositeConstraints2SecondValue.
@Test
public void testNestedCompositeConstraints2SecondValue() {
TemplateModel m = new TemplateModel();
m.name = "t1";
FactPattern p = new FactPattern("Person");
CompositeFieldConstraint comp = new CompositeFieldConstraint();
comp.setCompositeJunctionType(CompositeFieldConstraint.COMPOSITE_TYPE_OR);
p.addConstraint(comp);
m.addLhsItem(p);
final SingleFieldConstraint sfc1 = new SingleFieldConstraint();
sfc1.setFieldName("field1");
sfc1.setFieldType(DataType.TYPE_STRING);
sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc1.setValue("$f1");
sfc1.setOperator("==");
comp.addConstraint(sfc1);
CompositeFieldConstraint comp2 = new CompositeFieldConstraint();
comp2.setCompositeJunctionType(CompositeFieldConstraint.COMPOSITE_TYPE_AND);
final SingleFieldConstraint comp2sfc1 = new SingleFieldConstraint();
comp2sfc1.setFieldType(DataType.TYPE_STRING);
comp2sfc1.setFieldName("field2");
comp2sfc1.setOperator("==");
comp2sfc1.setValue("$f2");
comp2sfc1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_TEMPLATE);
comp2.addConstraint(comp2sfc1);
comp.addConstraint(comp2);
String expected = "rule \"t1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "Person( ( field2 == \"bar\" ) )\n" + "then\n" + "end\n";
m.addRow(new String[] { null, "bar" });
checkMarshall(expected, m);
}
Aggregations