use of org.kie.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle in project drools-wb by kiegroup.
the class GuidedDecisionTableGraphEditorPresenterTest method checkInitialiseKieEditorTabs.
@Test
public void checkInitialiseKieEditorTabs() {
final ObservablePath dtGraphPath = mock(ObservablePath.class);
final PlaceRequest dtGraphPlaceRequest = mock(PlaceRequest.class);
final GuidedDecisionTableEditorGraphContent dtGraphContent = makeDecisionTableGraphContent(0);
when(dtGraphPath.toURI()).thenReturn("dtGraphPath");
when(dtGraphPath.getFileName()).thenReturn("filename");
when(dtGraphService.loadContent(eq(dtGraphPath))).thenReturn(dtGraphContent);
when(versionRecordManager.getCurrentPath()).thenReturn(dtGraphPath);
when(versionRecordManager.getVersion()).thenReturn("version");
presenter.onStartup(dtGraphPath, dtGraphPlaceRequest);
verify(kieEditorWrapperView, times(1)).clear();
final GuidedDecisionTableView.Presenter document = mock(GuidedDecisionTableView.Presenter.class);
final AsyncPackageDataModelOracle dmo = mock(AsyncPackageDataModelOracle.class);
final Imports imports = mock(Imports.class);
final boolean isReadOnly = true;
final ArgumentCaptor<com.google.gwt.user.client.Command> onFocusCommandCaptor = ArgumentCaptor.forClass(com.google.gwt.user.client.Command.class);
presenter.initialiseKieEditorTabs(document, dtGraphContent.getOverview(), dmo, imports, isReadOnly);
verify(kieEditorWrapperView, times(2)).clear();
verify(kieEditorWrapperView, times(2)).addMainEditorPage(view);
verify(kieEditorWrapperView, times(2)).addOverviewPage(eq(overviewWidget), onFocusCommandCaptor.capture());
verify(overviewWidget, times(2)).setContent(eq(dtGraphContent.getOverview()), any());
verify(kieEditorWrapperView, times(1)).addSourcePage(any(ViewDRLSourceWidget.class));
verify(kieEditorWrapperView, times(1)).addImportsTab(eq(importsWidget));
verify(importsWidget, times(1)).setContent(eq(dmo), eq(imports), eq(isReadOnly));
final com.google.gwt.user.client.Command onFocusCommand = onFocusCommandCaptor.getValue();
assertNotNull(onFocusCommand);
onFocusCommand.execute();
verify(overviewWidget, times(1)).refresh(eq("version"));
}
use of org.kie.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle 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(Attribute.SALIENCE.getAttributeName());
final AttributeCol52 enabledAttribute = new AttributeCol52();
enabledAttribute.setAttribute(Attribute.ENABLED.getAttributeName());
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.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle 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.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle in project drools-wb by kiegroup.
the class RowExpanderTest method testExpansionWithGuvnorDependentEnums_2enum_x_3values.
@Test
public void testExpansionWithGuvnorDependentEnums_2enum_x_3values() {
GuidedDecisionTable52 model = new GuidedDecisionTable52();
final String enumDefinitions = "'Fact.field1' : ['f1a', 'f1b', 'f1c'], " + "'Fact.field2[field1=f1a]' : ['f1af2a', 'f1af2b', 'f1af2c'], " + "'Fact.field2[field1=f1b]' : ['f1bf2a', 'f1bf2b', 'f1bf2c'], " + "'Fact.field2[field1=f1c]' : ['f1cf2a', 'f1cf2b', 'f1cf2c']";
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);
List<RowExpander.ColumnValues> columns = re.getColumns();
assertEquals(7, 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.ColumnValues);
assertTrue(columns.get(4) instanceof RowExpander.ColumnDynamicValues);
assertTrue(columns.get(5) instanceof RowExpander.ColumnValues);
assertTrue(columns.get(6) 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(3, columns.get(3).values.size());
assertEquals(1, columns.get(5).values.size());
assertEquals(1, columns.get(6).values.size());
// Expected data
// --> f1a, f1af2a
// --> f1a, f1af2b
// --> f1a, f1af2c
// --> f1b, f1bf2a
// --> f1b, f1bf2b
// --> f1b, f1bf2c
// --> f1c, f1cf2a
// --> f1c, f1cf2b
// --> f1c, f1cf2c
RowExpander.RowIterator ri = re.iterator();
assertTrue(ri.hasNext());
List<DTCellValue52> row0 = ri.next();
assertEquals(7, row0.size());
assertEquals("f1a", row0.get(3).getStringValue());
assertEquals("f1af2a", row0.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row1 = ri.next();
assertEquals(7, row1.size());
assertEquals("f1a", row1.get(3).getStringValue());
assertEquals("f1af2b", row1.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row2 = ri.next();
assertEquals(7, row2.size());
assertEquals("f1a", row2.get(3).getStringValue());
assertEquals("f1af2c", row2.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row3 = ri.next();
assertEquals(7, row3.size());
assertEquals("f1b", row3.get(3).getStringValue());
assertEquals("f1bf2a", row3.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row4 = ri.next();
assertEquals(7, row4.size());
assertEquals("f1b", row4.get(3).getStringValue());
assertEquals("f1bf2b", row4.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row5 = ri.next();
assertEquals(7, row5.size());
assertEquals("f1b", row5.get(3).getStringValue());
assertEquals("f1bf2c", row5.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row6 = ri.next();
assertEquals(7, row6.size());
assertEquals("f1c", row6.get(3).getStringValue());
assertEquals("f1cf2a", row6.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row7 = ri.next();
assertEquals(7, row7.size());
assertEquals("f1c", row7.get(3).getStringValue());
assertEquals("f1cf2b", row7.get(4).getStringValue());
assertTrue(ri.hasNext());
List<DTCellValue52> row8 = ri.next();
assertEquals(7, row8.size());
assertEquals("f1c", row8.get(3).getStringValue());
assertEquals("f1cf2c", row8.get(4).getStringValue());
assertFalse(ri.hasNext());
}
use of org.kie.workbench.common.widgets.client.datamodel.AsyncPackageDataModelOracle in project drools-wb by kiegroup.
the class RowExpanderTest method testRowExpansionWithValuesList1.
@Test
@SuppressWarnings("serial")
public void testRowExpansionWithValuesList1() {
GuidedDecisionTable52 model = new GuidedDecisionTable52();
final ModuleDataModelOracle projectLoader = ModuleDataModelOracleBuilder.newModuleOracleBuilder(new RawMVELEvaluator()).addFact("Driver").addField(new ModelField("name", 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).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("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);
RowExpander re = new RowExpander(model, oracle);
assertEquals(4, 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(2, rows.size());
assertEquals("", rows.get(0).get(0).getStringValue());
assertEquals("", rows.get(0).get(1).getStringValue());
assertEquals("", rows.get(0).get(2).getStringValue());
assertEquals("c1a", rows.get(0).get(3).getStringValue());
assertEquals("", rows.get(1).get(0).getStringValue());
assertEquals("", rows.get(1).get(1).getStringValue());
assertEquals("", rows.get(1).get(2).getStringValue());
assertEquals("c1b", rows.get(1).get(3).getStringValue());
}
Aggregations