use of org.drools.workbench.models.guided.dtable.shared.model.DTCellValue52 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.drools.workbench.models.guided.dtable.shared.model.DTCellValue52 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.drools.workbench.models.guided.dtable.shared.model.DTCellValue52 in project drools-wb by kiegroup.
the class NewGuidedDecisionTableWizard method complete.
@Override
public void complete() {
// Ensure each page updates the decision table as necessary
for (WizardPage page : this.pages) {
AbstractGuidedDecisionTableWizardPage gep = (AbstractGuidedDecisionTableWizardPage) page;
gep.makeResult(model);
}
// Expand rows
final RowExpander re = new RowExpander(model, oracle);
// Mark columns on which we are to expand (default is to include all)
for (BaseColumn c : model.getExpandedColumns()) {
re.setExpandColumn(c, false);
}
final List<ConditionCol52> columns = columnExpansionPage.getColumnsToExpand();
for (ConditionCol52 c : columns) {
re.setExpandColumn(c, true);
}
// Slurp out expanded rows and construct decision table data
int rowIndex = 0;
final RowExpander.RowIterator ri = re.iterator();
while (ri.hasNext()) {
List<DTCellValue52> row = ri.next();
model.getData().add(row);
model.getData().get(rowIndex).get(0).setNumericValue(new BigDecimal(rowIndex + 1));
rowIndex++;
}
// Save it!
final String baseFileName = summaryPage.getBaseFileName();
final Path contextPath = this.contextPath;
model.setTableName(baseFileName);
super.complete();
handler.save(contextPath, baseFileName, model);
}
use of org.drools.workbench.models.guided.dtable.shared.model.DTCellValue52 in project drools-wb by kiegroup.
the class ActionInsertFactFieldsPage method assertDefaultValue.
@Override
public void assertDefaultValue(final ActionInsertFactCol52 selectedAction) {
final List<String> valueList = Arrays.asList(columnUtilities.getValueList(selectedAction));
if (valueList.size() > 0) {
final String defaultValue = cellUtilities.asString(selectedAction.getDefaultValue());
if (!valueList.contains(defaultValue)) {
selectedAction.getDefaultValue().clearValues();
}
} else {
// Ensure the Default Value has been updated to represent the column's data-type.
final DTCellValue52 defaultValue = selectedAction.getDefaultValue();
final DataType.DataTypes dataType = columnUtilities.getDataType(selectedAction);
cellUtilities.convertDTCellValueType(dataType, defaultValue);
}
}
use of org.drools.workbench.models.guided.dtable.shared.model.DTCellValue52 in project drools-wb by kiegroup.
the class FactPatternConstraintsPage method assertDefaultValue.
@Override
public void assertDefaultValue(final Pattern52 selectedPattern, final ConditionCol52 selectedCondition) {
final List<String> valueList = Arrays.asList(columnUtilities.getValueList(selectedCondition));
if (valueList.size() > 0) {
final String defaultValue = cellUtilities.asString(selectedCondition.getDefaultValue());
if (!valueList.contains(defaultValue)) {
selectedCondition.getDefaultValue().clearValues();
}
} else {
// Ensure the Default Value has been updated to represent the column's data-type.
final DTCellValue52 defaultValue = selectedCondition.getDefaultValue();
final DataType.DataTypes dataType = columnUtilities.getDataType(selectedPattern, selectedCondition);
cellUtilities.convertDTCellValueType(dataType, defaultValue);
}
}
Aggregations