use of org.kie.soup.project.datamodel.commons.util.RawMVELEvaluator in project drools-wb by kiegroup.
the class RowExpanderTests method testExpansionWithGuvnorDependentEnumsExplicitExpansion3_2enum_x_2values.
@Test
public void testExpansionWithGuvnorDependentEnumsExplicitExpansion3_2enum_x_2values() {
GuidedDecisionTable52 model = new GuidedDecisionTable52();
final String enumDefinitions = "'Fact.field1' : ['f1a', 'f1b'], " + "'Fact.field2[field1=f1a]' : ['f1af2a', 'f1af2b'], " + "'Fact.field2[field1=f1b]' : ['f1bf2a', 'f1bf2b']";
final ModuleDataModelOracle projectLoader = ModuleDataModelOracleBuilder.newModuleOracleBuilder(new RawMVELEvaluator()).addFact("Fact").addField(new ModelField("field1", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).addField(new ModelField("field2", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).end().build();
final PackageDataModelOracle packageLoader = PackageDataModelOracleBuilder.newPackageOracleBuilder(new RawMVELEvaluator()).setModuleOracle(projectLoader).addEnum(enumDefinitions, Thread.currentThread().getContextClassLoader()).build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(projectLoader.getModuleModelFields());
dataModel.setWorkbenchEnumDefinitions(packageLoader.getPackageWorkbenchDefinitions());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
Pattern52 p1 = new Pattern52();
p1.setBoundName("f1");
p1.setFactType("Fact");
model.getConditions().add(p1);
ConditionCol52 c1 = new ConditionCol52();
c1.setFactField("field1");
c1.setOperator("==");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c1);
ConditionCol52 c2 = new ConditionCol52();
c2.setFactField("field2");
c2.setOperator("==");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c2);
ActionSetFieldCol52 a1 = new ActionSetFieldCol52();
a1.setBoundName("f1");
a1.setFactField("field1");
model.getActionCols().add(a1);
ActionInsertFactCol52 a2 = new ActionInsertFactCol52();
a2.setBoundName("f2");
a2.setFactType("Fact");
a2.setFactField("field1");
model.getActionCols().add(a2);
RowExpander re = new RowExpander(model, oracle);
// Explicitly expand the first column, not the second
re.setExpandColumn(c1, false);
re.setExpandColumn(c2, true);
List<RowExpander.ColumnValues> columns = re.getColumns();
assertEquals(6, columns.size());
assertTrue(columns.get(0) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(1) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(2) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(3) instanceof RowExpander.ColumnDynamicValues);
assertTrue(columns.get(4) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(5) instanceof RowExpander.ColumnValues);
// Can't check size of values for ColumnDynamicValues as they depend on the other columns
assertEquals(1, columns.get(0).values.size());
assertEquals(1, columns.get(1).values.size());
assertEquals(1, columns.get(2).values.size());
assertEquals(1, columns.get(4).values.size());
assertEquals(1, columns.get(5).values.size());
// Expected data
// --> null, null
RowExpander.RowIterator ri = re.iterator();
assertTrue(ri.hasNext());
List<DTCellValue52> row0 = ri.next();
assertEquals(6, row0.size());
assertNull(row0.get(2));
assertNull(row0.get(3));
assertFalse(ri.hasNext());
}
use of org.kie.soup.project.datamodel.commons.util.RawMVELEvaluator in project drools-wb by kiegroup.
the class RowExpanderTests method testRowExpansionWithValuesListAndColumnExpansionDisabledAndDefaultValues.
@Test
@SuppressWarnings("serial")
public void testRowExpansionWithValuesListAndColumnExpansionDisabledAndDefaultValues() {
GuidedDecisionTable52 model = new GuidedDecisionTable52();
final ModuleDataModelOracle projectLoader = ModuleDataModelOracleBuilder.newModuleOracleBuilder(new RawMVELEvaluator()).addFact("Driver").addField(new ModelField("age", Integer.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_NUMERIC_INTEGER)).addField(new ModelField("name", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).addField(new ModelField("dateOfBirth", Boolean.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_DATE)).end().build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(projectLoader.getModuleModelFields());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
Pattern52 p1 = new Pattern52();
p1.setBoundName("c1");
p1.setFactType("Driver");
ConditionCol52 c1 = new ConditionCol52();
c1.setFactField("name");
c1.setOperator("==");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
c1.setValueList("c1a,c1b");
p1.getChildColumns().add(c1);
model.getConditions().add(p1);
Pattern52 p2 = new Pattern52();
p2.setBoundName("c2");
p2.setFactType("Driver");
ConditionCol52 c2 = new ConditionCol52();
c2.setFactField("age");
c2.setOperator("==");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
c2.setValueList("c2a,c2b");
c2.setDefaultValue(new DTCellValue52("c2default"));
p2.getChildColumns().add(c2);
model.getConditions().add(p2);
Pattern52 p3 = new Pattern52();
p3.setBoundName("c3");
p3.setFactType("Driver");
ConditionCol52 c3 = new ConditionCol52();
c3.setFactField("dateOfBirth");
c3.setOperator("==");
c3.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
c3.setValueList("c3a,c3b");
p3.getChildColumns().add(c3);
model.getConditions().add(p3);
RowExpander re = new RowExpander(model, oracle);
re.setExpandColumn(c2, false);
assertEquals(5, re.getColumns().size());
RowExpander.RowIterator i = re.iterator();
List<List<DTCellValue52>> rows = new ArrayList<List<DTCellValue52>>();
while (i.hasNext()) {
List<DTCellValue52> row = i.next();
rows.add(row);
}
assertEquals(4, rows.size());
assertEquals("", rows.get(0).get(0).getStringValue());
assertEquals("", rows.get(0).get(1).getStringValue());
assertEquals("c1a", rows.get(0).get(2).getStringValue());
assertEquals("c2default", rows.get(0).get(3).getStringValue());
assertEquals("c3a", rows.get(0).get(4).getStringValue());
assertEquals("", rows.get(1).get(0).getStringValue());
assertEquals("", rows.get(1).get(1).getStringValue());
assertEquals("c1a", rows.get(1).get(2).getStringValue());
assertEquals("c2default", rows.get(1).get(3).getStringValue());
assertEquals("c3b", rows.get(1).get(4).getStringValue());
assertEquals("", rows.get(2).get(0).getStringValue());
assertEquals("", rows.get(2).get(1).getStringValue());
assertEquals("c1b", rows.get(2).get(2).getStringValue());
assertEquals("c2default", rows.get(2).get(3).getStringValue());
assertEquals("c3a", rows.get(2).get(4).getStringValue());
assertEquals("", rows.get(3).get(0).getStringValue());
assertEquals("", rows.get(3).get(1).getStringValue());
assertEquals("c1b", rows.get(3).get(2).getStringValue());
assertEquals("c2default", rows.get(3).get(3).getStringValue());
assertEquals("c3b", rows.get(3).get(4).getStringValue());
}
use of org.kie.soup.project.datamodel.commons.util.RawMVELEvaluator in project drools-wb by kiegroup.
the class GuidedDecisionTableTest method testNumeric.
@Test
@SuppressWarnings("serial")
public void testNumeric() {
final GuidedDecisionTable52 model = new GuidedDecisionTable52();
final ModuleDataModelOracle loader = ModuleDataModelOracleBuilder.newModuleOracleBuilder(new RawMVELEvaluator()).addFact("Driver").addField(new ModelField("age", Integer.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_NUMERIC_INTEGER)).addField(new ModelField("name", String.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_STRING)).end().build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(loader.getModuleModelFields());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
final ColumnUtilities utils = new ColumnUtilities(model, oracle);
final AttributeCol52 at = new AttributeCol52();
at.setAttribute("salience");
final AttributeCol52 at_ = new AttributeCol52();
at_.setAttribute("enabled");
model.getAttributeCols().add(at);
model.getAttributeCols().add(at_);
final ConditionCol52 c1 = new ConditionCol52();
final Pattern52 p1 = new Pattern52();
p1.setBoundName("c1");
p1.setFactType("Driver");
c1.setFactField("name");
c1.setOperator("==");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c1);
model.getConditions().add(p1);
final ConditionCol52 c1_ = new ConditionCol52();
final Pattern52 p1_ = new Pattern52();
p1_.setBoundName("c1");
p1_.setFactType("Driver");
c1_.setFactField("age");
c1_.setOperator("==");
c1_.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1_.getChildColumns().add(c1_);
model.getConditions().add(p1_);
final ConditionCol52 c2 = new ConditionCol52();
final Pattern52 p2 = new Pattern52();
p2.setBoundName("c1");
p2.setFactType("Driver");
c2.setFactField("age");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p2.getChildColumns().add(c2);
model.getConditions().add(p2);
final ActionSetFieldCol52 a = new ActionSetFieldCol52();
a.setBoundName("c1");
a.setFactField("name");
model.getActionCols().add(a);
final ActionSetFieldCol52 a2 = new ActionSetFieldCol52();
a2.setBoundName("c1");
a2.setFactField("age");
model.getActionCols().add(a2);
final ActionInsertFactCol52 ins = new ActionInsertFactCol52();
ins.setBoundName("x");
ins.setFactType("Driver");
ins.setFactField("name");
model.getActionCols().add(ins);
final ActionInsertFactCol52 ins_ = new ActionInsertFactCol52();
ins_.setBoundName("x");
ins_.setFactType("Driver");
ins_.setFactField("age");
model.getActionCols().add(ins_);
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(at));
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(c1_));
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(a2));
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(ins_));
assertEquals(DataType.TYPE_BOOLEAN, utils.getType(at_));
assertEquals(DataType.TYPE_STRING, utils.getType(c1));
assertEquals(DataType.TYPE_STRING, utils.getType(a));
assertEquals(DataType.TYPE_STRING, utils.getType(ins));
assertEquals(DataType.TYPE_STRING, utils.getType(c2));
}
use of org.kie.soup.project.datamodel.commons.util.RawMVELEvaluator in project drools-wb by kiegroup.
the class GuidedDecisionTableTest method testNoConstraintLists.
@Test
public void testNoConstraintLists() {
final GuidedDecisionTable52 model = new GuidedDecisionTable52();
final PackageDataModelOracle loader = PackageDataModelOracleBuilder.newPackageOracleBuilder(new RawMVELEvaluator()).addEnum("Driver", "name", new String[] { "bob", "michael" }).build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(loader.getModuleModelFields());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
final ColumnUtilities utils = new ColumnUtilities(model, oracle);
// add cols for LHS
final ConditionCol52 c1 = new ConditionCol52();
final Pattern52 p1 = new Pattern52();
p1.setBoundName("c1");
p1.setFactType("Driver");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c1);
model.getConditions().add(p1);
final ConditionCol52 c2 = new ConditionCol52();
final Pattern52 p2 = new Pattern52();
p2.setBoundName("c2");
p2.setFactType("Driver");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
c2.setValueList("a,b,c");
p2.getChildColumns().add(c2);
model.getConditions().add(p1);
assertEquals(0, utils.getValueList(c1).length);
assertEquals(3, utils.getValueList(c2).length);
}
use of org.kie.soup.project.datamodel.commons.util.RawMVELEvaluator in project drools-wb by kiegroup.
the class GuidedDecisionTableTest method testValueLists.
@Test
public void testValueLists() {
final GuidedDecisionTable52 model = new GuidedDecisionTable52();
final PackageDataModelOracle loader = PackageDataModelOracleBuilder.newPackageOracleBuilder(new RawMVELEvaluator()).addEnum("Driver", "name", new String[] { "bob", "michael" }).addEnum("Person", "rating", new String[] { "1", "2" }).build();
// Emulate server-to-client conversions
final AsyncPackageDataModelOracle oracle = getOracle();
final PackageDataModelOracleBaselinePayload dataModel = new PackageDataModelOracleBaselinePayload();
dataModel.setModelFields(loader.getModuleModelFields());
dataModel.setWorkbenchEnumDefinitions(loader.getPackageWorkbenchDefinitions());
populateDataModelOracle(mock(Path.class), model, oracle, dataModel);
final ColumnUtilities utils = new ColumnUtilities(model, oracle);
final Map<String, String> currentValueMap = new HashMap<>();
// add cols for LHS
final ConditionCol52 c1 = new ConditionCol52();
final Pattern52 p1 = new Pattern52();
p1.setBoundName("c1");
p1.setFactType("Driver");
c1.setFactField("name");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(c1);
model.getConditions().add(p1);
final ConditionCol52 c1_ = new ConditionCol52();
final Pattern52 p1_ = new Pattern52();
p1_.setBoundName("c1");
p1_.setFactType("Driver");
c1_.setFactField("name");
p1_.getChildColumns().add(c1_);
c1_.setConstraintValueType(BaseSingleFieldConstraint.TYPE_RET_VALUE);
model.getConditions().add(p1_);
final ConditionCol52 c1__ = new ConditionCol52();
c1__.setFactField("sex");
p1_.getChildColumns().add(c1__);
c1__.setConstraintValueType(BaseSingleFieldConstraint.TYPE_RET_VALUE);
c1__.setValueList("Male,Female");
model.getConditions().add(p1_);
final ConditionCol52 c1___ = new ConditionCol52();
final Pattern52 p1__ = new Pattern52();
p1__.setBoundName("c1");
p1__.setFactType("Driver");
c1___.setFactField("name");
c1___.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
c1___.setValueList("one,two,three");
p1__.getChildColumns().add(c1___);
model.getConditions().add(p1__);
final ConditionCol52 c2 = new ConditionCol52();
final Pattern52 p2 = new Pattern52();
p2.setBoundName("c2");
p2.setFactType("Driver");
c2.setFactField("nothing");
c2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p2.getChildColumns().add(c2);
model.getConditions().add(p2);
final ActionSetFieldCol52 asf = new ActionSetFieldCol52();
asf.setBoundName("c1");
asf.setFactField("name");
model.getActionCols().add(asf);
final ActionInsertFactCol52 ins = new ActionInsertFactCol52();
ins.setBoundName("x");
ins.setFactField("rating");
ins.setFactType("Person");
model.getActionCols().add(ins);
final ActionInsertFactCol52 ins_ = new ActionInsertFactCol52();
ins_.setBoundName("x");
ins_.setFactField("rating");
ins_.setFactType("Person");
ins_.setValueList("one,two,three");
model.getActionCols().add(ins_);
final ActionSetFieldCol52 asf_ = new ActionSetFieldCol52();
asf_.setBoundName("c1");
asf_.setFactField("goo");
model.getActionCols().add(asf_);
final ActionSetFieldCol52 asf__ = new ActionSetFieldCol52();
asf__.setBoundName("c1");
asf__.setType("String");
asf__.setFactField("goo");
asf__.setValueList("one,two,three");
model.getActionCols().add(asf__);
assertTrue(oracle.hasEnums(p1.getFactType(), c1.getFactField()));
assertFalse(utils.hasValueList(c1));
String[] r = oracle.getEnums(p1.getFactType(), c1.getFactField(), currentValueMap).getFixedList();
assertEquals(2, r.length);
assertEquals("bob", r[0]);
assertEquals("michael", r[1]);
assertTrue(oracle.hasEnums(p1_.getFactType(), c1_.getFactField()));
assertFalse(utils.hasValueList(c1_));
r = oracle.getEnums(p1_.getFactType(), c1_.getFactField(), currentValueMap).getFixedList();
assertEquals(2, r.length);
assertEquals("bob", r[0]);
assertEquals("michael", r[1]);
assertFalse(oracle.hasEnums(p1_.getFactType(), c1__.getFactField()));
assertTrue(utils.hasValueList(c1__));
r = utils.getValueList(c1__);
assertEquals(2, r.length);
assertEquals("Male", r[0]);
assertEquals("Female", r[1]);
assertTrue(oracle.hasEnums(p1__.getFactType(), c1___.getFactField()));
assertTrue(utils.hasValueList(c1___));
r = utils.getValueList(c1___);
assertEquals(3, r.length);
assertEquals("one", r[0]);
assertEquals("two", r[1]);
assertEquals("three", r[2]);
assertEquals(0, utils.getValueList(c2).length);
assertTrue(oracle.hasEnums(p1.getFactType(), asf.getFactField()));
assertFalse(utils.hasValueList(asf));
r = oracle.getEnums(p1.getFactType(), asf.getFactField(), currentValueMap).getFixedList();
assertEquals(2, r.length);
assertEquals("bob", r[0]);
assertEquals("michael", r[1]);
assertTrue(oracle.hasEnums(ins.getFactType(), ins.getFactField()));
assertFalse(utils.hasValueList(ins));
r = oracle.getEnums(ins.getFactType(), ins.getFactField(), currentValueMap).getFixedList();
assertEquals(2, r.length);
assertEquals("1", r[0]);
assertEquals("2", r[1]);
assertTrue(oracle.hasEnums(ins_.getFactType(), ins_.getFactField()));
assertTrue(utils.hasValueList(ins_));
r = utils.getValueList(ins_);
assertEquals(3, r.length);
assertEquals("one", r[0]);
assertEquals("two", r[1]);
assertEquals("three", r[2]);
assertEquals(0, utils.getValueList(asf_).length);
assertFalse(oracle.hasEnums(p1.getFactType(), asf__.getFactField()));
assertTrue(utils.hasValueList(asf__));
r = utils.getValueList(asf__);
assertEquals(3, r.length);
assertEquals("one", r[0]);
assertEquals("two", r[1]);
assertEquals("three", r[2]);
AttributeCol52 at = new AttributeCol52();
at.setAttribute("no-loop");
model.getAttributeCols().add(at);
r = utils.getValueList(at);
assertEquals(2, r.length);
assertEquals("true", r[0]);
assertEquals("false", r[1]);
at.setAttribute("enabled");
assertEquals(2, utils.getValueList(at).length);
at.setAttribute("salience");
assertEquals(0, utils.getValueList(at).length);
}
Aggregations