use of org.kie.soup.project.datamodel.oracle.ModelField in project drools-wb by kiegroup.
the class GuidedDecisionTableTest method testConditionPredicateChoices.
@SuppressWarnings("serial")
@Test
public void testConditionPredicateChoices() {
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 ConditionCol52 c1 = new ConditionCol52();
final Pattern52 p1 = new Pattern52();
p1.setBoundName("c1");
p1.setFactType("Driver");
c1.setConstraintValueType(BaseSingleFieldConstraint.TYPE_PREDICATE);
c1.setFieldType(DataType.TYPE_STRING);
c1.setValueList("age>10,age>20,age>30");
p1.getChildColumns().add(c1);
model.getConditions().add(p1);
assertTrue(utils.getValueList(c1).length > 0);
assertTrue(utils.getValueList(c1).length == 3);
assertEquals("age>10", utils.getValueList(c1)[0]);
assertEquals("age>20", utils.getValueList(c1)[1]);
assertEquals("age>30", utils.getValueList(c1)[2]);
}
use of org.kie.soup.project.datamodel.oracle.ModelField in project drools-wb by kiegroup.
the class GuidedDecisionTableTest method testGetType.
@Test
@SuppressWarnings("serial")
public void testGetType() {
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)).addField(new ModelField("date", Date.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_DATE)).addField(new ModelField("approved", Boolean.class.getName(), ModelField.FIELD_CLASS_TYPE.REGULAR_CLASS, ModelField.FIELD_ORIGIN.DECLARED, FieldAccessorsAndMutators.BOTH, DataType.TYPE_BOOLEAN)).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 salienceAttribute = new AttributeCol52();
salienceAttribute.setAttribute("salience");
final AttributeCol52 enabledAttribute = new AttributeCol52();
enabledAttribute.setAttribute("enabled");
model.getAttributeCols().add(salienceAttribute);
model.getAttributeCols().add(enabledAttribute);
final Pattern52 p1 = new Pattern52();
final ConditionCol52 conditionColName = new ConditionCol52();
p1.setBoundName("c1");
p1.setFactType("Driver");
conditionColName.setFactField("name");
conditionColName.setOperator("==");
conditionColName.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(conditionColName);
final ConditionCol52 conditionColAge = new ConditionCol52();
conditionColAge.setFactField("age");
conditionColAge.setOperator("==");
conditionColAge.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(conditionColAge);
final ConditionCol52 conditionColDate = new ConditionCol52();
conditionColDate.setFactField("date");
conditionColDate.setOperator("==");
conditionColDate.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(conditionColDate);
final ConditionCol52 conditionColApproved = new ConditionCol52();
conditionColApproved.setFactField("approved");
conditionColApproved.setOperator("==");
conditionColApproved.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(conditionColApproved);
final ConditionCol52 conditionColAge2 = new ConditionCol52();
conditionColAge2.setFactField("age");
conditionColAge2.setConstraintValueType(BaseSingleFieldConstraint.TYPE_LITERAL);
p1.getChildColumns().add(conditionColAge2);
model.getConditions().add(p1);
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(salienceAttribute));
assertEquals(DataType.TYPE_BOOLEAN, utils.getType(enabledAttribute));
assertEquals(DataType.TYPE_STRING, utils.getType(conditionColName));
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(conditionColAge));
assertEquals(DataType.TYPE_DATE, utils.getType(conditionColDate));
assertEquals(DataType.TYPE_BOOLEAN, utils.getType(conditionColApproved));
assertEquals(DataType.TYPE_STRING, utils.getType(a));
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(a2));
assertEquals(DataType.TYPE_STRING, utils.getType(ins));
assertEquals(DataType.TYPE_NUMERIC_INTEGER, utils.getType(ins_));
assertEquals(DataType.TYPE_STRING, utils.getType(conditionColAge2));
}
use of org.kie.soup.project.datamodel.oracle.ModelField in project drools-wb by kiegroup.
the class RowExpanderTests method testExpansionWithGuvnorDependentEnumsExplicitExpansion2_2enum_x_2values.
@Test
public void testExpansionWithGuvnorDependentEnumsExplicitExpansion2_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, true);
re.setExpandColumn(c2, false);
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(2, columns.get(2).values.size());
assertEquals(1, columns.get(4).values.size());
assertEquals(1, columns.get(5).values.size());
// Expected data
// --> f1a, null
// --> f1b, null
RowExpander.RowIterator ri = re.iterator();
assertTrue(ri.hasNext());
List<DTCellValue52> row0 = ri.next();
assertEquals(6, row0.size());
assertEquals("f1a", row0.get(2).getStringValue());
assertNull(row0.get(3));
assertTrue(ri.hasNext());
List<DTCellValue52> row1 = ri.next();
assertEquals(6, row1.size());
assertEquals("f1b", row1.get(2).getStringValue());
assertNull(row1.get(3));
assertFalse(ri.hasNext());
}
use of org.kie.soup.project.datamodel.oracle.ModelField in project drools-wb by kiegroup.
the class RowExpanderTests method testExpansionWithGuvnorDependentEnumsExplicitExpansion1_2enum_x_2values.
@Test
public void testExpansionWithGuvnorDependentEnumsExplicitExpansion1_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 set which columns to expand
for (ConditionCol52 c : p1.getChildColumns()) {
re.setExpandColumn(c, 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(2, columns.get(2).values.size());
assertEquals(1, columns.get(4).values.size());
assertEquals(1, columns.get(5).values.size());
// Expected data
// --> f1a, f1af2a
// --> f1a, f1af2b
// --> f1b, f1bf2a
// --> f1b, f1bf2b
RowExpander.RowIterator ri = re.iterator();
assertTrue(ri.hasNext());
List<DTCellValue52> row0 = ri.next();
assertEquals(6, row0.size());
assertEquals("f1a", row0.get(2).getStringValue());
assertEquals("f1af2a", row0.get(3).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row1 = ri.next();
assertEquals(6, row1.size());
assertEquals("f1a", row1.get(2).getStringValue());
assertEquals("f1af2b", row1.get(3).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row3 = ri.next();
assertEquals(6, row3.size());
assertEquals("f1b", row3.get(2).getStringValue());
assertEquals("f1bf2a", row3.get(3).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row4 = ri.next();
assertEquals(6, row4.size());
assertEquals("f1b", row4.get(2).getStringValue());
assertEquals("f1bf2b", row4.get(3).getStringValue());
assertFalse(ri.hasNext());
}
use of org.kie.soup.project.datamodel.oracle.ModelField in project drools-wb by kiegroup.
the class ModelFieldUtil method getAvailableFieldCompletions.
/**
* Returns an array of ModelFields not consumed by the ActionFieldList; i.e. an array of available ModelFields.
*
* @param fieldCompletions The complete collection of ModelFields
* @param afl The model of ModelFields already used
* @return An array of unused ModelFields
*/
public static ModelField[] getAvailableFieldCompletions(final ModelField[] fieldCompletions, final ActionFieldList afl) {
if (fieldCompletions == null || fieldCompletions.length == 0) {
return fieldCompletions;
}
if (afl == null || afl.getFieldValues().length == 0) {
return fieldCompletions;
}
final List<ModelField> availableModelFields = new ArrayList<>();
availableModelFields.addAll(Arrays.asList(fieldCompletions));
for (ActionFieldValue afv : afl.getFieldValues()) {
final List<ModelField> usedModelFields = availableModelFields.stream().filter(m -> m.getName().equals(afv.getField())).collect(Collectors.toList());
availableModelFields.removeAll(usedModelFields);
}
return availableModelFields.toArray(new ModelField[availableModelFields.size()]);
}
Aggregations