use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testActionUpdateFactFirstValue.
@Test
public void testActionUpdateFactFirstValue() {
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.setField1(\"foo\");\n" + "end";
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 testRHSNonEmptyStringValues.
@Test
public void testRHSNonEmptyStringValues() {
FactPattern fp = new FactPattern("Smurf");
fp.setBoundName("p1");
ActionUpdateField auf1 = new ActionUpdateField("p1");
auf1.addFieldValue(new ActionFieldValue("name", "$name", DataType.TYPE_STRING));
auf1.getFieldValues()[0].setNature(BaseSingleFieldConstraint.TYPE_TEMPLATE);
ActionUpdateField auf2 = new ActionUpdateField("p1");
auf2.addFieldValue(new ActionFieldValue("age", "$age", DataType.TYPE_NUMERIC_INTEGER));
auf2.getFieldValues()[0].setNature(BaseSingleFieldConstraint.TYPE_TEMPLATE);
// Test 1
TemplateModel m1 = new TemplateModel();
m1.addLhsItem(fp);
m1.addRhsItem(auf1);
m1.addRhsItem(auf2);
m1.name = "r1";
m1.addRow(new String[] { null, null });
final String expected1 = "rule \"r1_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf()\n" + " then\n" + "end";
checkMarshall(expected1, m1);
// Test 2
TemplateModel m2 = new TemplateModel();
m2.addLhsItem(fp);
m2.addRhsItem(auf1);
m2.addRhsItem(auf2);
m2.name = "r2";
m2.addRow(new String[] { " ", "35" });
final String expected2 = "rule \"r2_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf()\n" + " then\n" + " modify( p1 ) {\n" + " setAge( 35 )\n" + " }\n" + "end";
checkMarshall(expected2, m2);
// Test 3
TemplateModel m3 = new TemplateModel();
m3.addLhsItem(fp);
m3.addRhsItem(auf1);
m3.addRhsItem(auf2);
m3.name = "r3";
m3.addRow(new String[] { "", null });
final String expected3 = "rule \"r3_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf()\n" + " then\n" + "end";
checkMarshall(expected3, m3);
// Test 4
TemplateModel m4 = new TemplateModel();
m4.addLhsItem(fp);
m4.addRhsItem(auf1);
m4.addRhsItem(auf2);
m4.name = "r4";
m4.addRow(new String[] { "", "35" });
final String expected4 = "rule \"r4_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf()\n" + " then\n" + " modify( p1 ) {\n" + " setAge( 35 )\n" + " }\n" + "end";
checkMarshall(expected4, m4);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testNestedCompositeConstraints5FirstValue.
@Test
public void testNestedCompositeConstraints5FirstValue() {
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\" )\n" + "then\n" + "end\n";
m.addRow(new String[] { "foo", null, null });
checkMarshall(expected, m);
}
use of org.drools.workbench.models.guided.template.shared.TemplateModel in project drools by kiegroup.
the class RuleTemplateModelDRLPersistenceTest method testCompositeConstraintWithConnectiveConstraintBothValues.
@Test
public void testCompositeConstraintWithConnectiveConstraintBothValues() {
TemplateModel m = new TemplateModel();
m.name = "t1";
FactPattern p1 = new FactPattern("Person");
m.addLhsItem(p1);
CompositeFieldConstraint comp = new CompositeFieldConstraint();
comp.setCompositeJunctionType(CompositeFieldConstraint.COMPOSITE_TYPE_OR);
p1.addConstraint(comp);
final SingleFieldConstraint X = new SingleFieldConstraint();
X.setFieldName("field1");
X.setFieldType(DataType.TYPE_STRING);
X.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
X.setValue("$f1");
X.setOperator("==");
comp.addConstraint(X);
ConnectiveConstraint connective = new ConnectiveConstraint();
connective.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
connective.setFieldType(DataType.TYPE_STRING);
connective.setOperator("|| ==");
connective.setValue("goo");
X.setConnectives(new ConnectiveConstraint[1]);
X.getConnectives()[0] = connective;
final SingleFieldConstraint Y = new SingleFieldConstraint();
Y.setFieldName("field2");
Y.setFieldType(DataType.TYPE_STRING);
Y.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
Y.setValue("$f2");
Y.setOperator("==");
comp.addConstraint(Y);
String expected = "rule \"t1_0\"\n" + "dialect \"mvel\"\n" + "when\n" + "Person( field1 == \"foo\" || == \"goo\" || field2 == \"bar\" )\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 testLHSDelimitedNonEmptyStringValues.
@Test
public void testLHSDelimitedNonEmptyStringValues() {
FactPattern fp = new FactPattern("Smurf");
fp.setBoundName("p1");
SingleFieldConstraint sfc1 = new SingleFieldConstraint();
sfc1.setOperator("==");
sfc1.setFactType("Smurf");
sfc1.setFieldName("name");
sfc1.setFieldType(DataType.TYPE_STRING);
sfc1.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc1.setValue("$f1");
SingleFieldConstraint sfc2 = new SingleFieldConstraint();
sfc2.setOperator("==");
sfc2.setFactType("Smurf");
sfc2.setFieldName("age");
sfc2.setFieldType(DataType.TYPE_NUMERIC_INTEGER);
sfc2.setConstraintValueType(SingleFieldConstraint.TYPE_TEMPLATE);
sfc2.setValue("$f2");
fp.addConstraint(sfc1);
fp.addConstraint(sfc2);
// Test 1
TemplateModel m1 = new TemplateModel();
m1.addLhsItem(fp);
m1.name = "r1";
m1.addRow(new String[] { null, null });
final String expected1 = "rule \"r1_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " then\n" + "end";
checkMarshall(expected1, m1);
// Test 2
TemplateModel m2 = new TemplateModel();
m2.addLhsItem(fp);
m2.name = "r2";
m2.addRow(new String[] { "\" \"", "35" });
final String expected2 = "rule \"r2_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( name == \" \", age == 35 )\n" + " then\n" + "end";
checkMarshall(expected2, m2);
// Test 3
TemplateModel m3 = new TemplateModel();
m3.addLhsItem(fp);
m3.name = "r3";
m3.addRow(new String[] { "\"\"", null });
final String expected3 = "rule \"r3_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( name == \"\" )\n" + " then\n" + "end";
checkMarshall(expected3, m3);
// Test 4
TemplateModel m4 = new TemplateModel();
m4.addLhsItem(fp);
m4.name = "r4";
m4.addRow(new String[] { "\"\"", "35" });
final String expected4 = "rule \"r4_0\"\n" + " dialect \"mvel\"\n" + " when\n" + " p1 : Smurf( name == \"\", age == 35 )\n" + " then\n" + "end";
checkMarshall(expected4, m4);
}
Aggregations