use of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionInsertNodeImpl in project drools-wb by kiegroup.
the class ActionInsertNodeFactory method getShape.
/**
* This returns a new Shape following a drag operation from the palette
* @param helper
* @return
*/
@Override
public WiresBaseShape getShape(final FactoryHelper helper) {
final ActionInsertFactoryHelper anHelper = (ActionInsertFactoryHelper) helper;
final ActionInsertNode node = anHelper.getContext();
// drag proxy. We need to create a new instance of the TypeNode for use in the Decision Tree Widget
return new ActionInsertShape(makeShape(), new ActionInsertNodeImpl(node.getClassName()), anHelper.isReadOnly());
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionInsertNodeImpl in project drools-wb by kiegroup.
the class EditActionInsertPopup method cloneNode.
// Clone node whilst editing to preserve original node should User cancel the edit
private ActionInsertNode cloneNode(final ActionInsertNode node) {
final ActionInsertNode clone = new ActionInsertNodeImpl(node.getClassName());
clone.getFieldValues().addAll(clone(node.getFieldValues()));
clone.setLogicalInsertion(node.isLogicalInsertion());
clone.setParent(node.getParent());
return clone;
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionInsertNodeImpl in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceMarshallingTest method testSingleRule_ActionInsertLogical.
@Test
public void testSingleRule_ActionInsertLogical() throws Exception {
final String expected = "rule \"test_0\"" + "when\n" + " Person( )\n" + "then\n" + " Person $var0 = new Person();\n" + " $var0.setAge( 25 );\n" + " insertLogical( $var0 );\n" + "end";
final GuidedDecisionTree model = new GuidedDecisionTree();
model.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
model.setRoot(type);
final ActionInsertNode action = new ActionInsertNodeImpl("Person");
action.setLogicalInsertion(true);
action.getFieldValues().add(new ActionFieldValueImpl("age", new IntegerValue(25)));
type.addChild(action);
final String drl = GuidedDecisionTreeDRLPersistence.getInstance().marshal(model);
assertEqualsIgnoreWhitespace(expected, drl);
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionInsertNodeImpl in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceUnmarshallingTest method testSingleRule_ActionInsertDateFieldValue.
@Test
public void testSingleRule_ActionInsertDateFieldValue() throws Exception {
final String drl = "rule \"test_0\"\n" + "when \n" + " Person( )\n" + "then \n" + " java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"dd-MMM-yyyy\");\n" + " Person $var0 = new Person();\n" + " $var0.setDateOfBirth( sdf.parse(\"15-Jul-1985\") );\n" + " insert( $var0 );\n" + "end";
final GuidedDecisionTree expected = new GuidedDecisionTree();
expected.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
expected.setRoot(type);
final ActionInsertNode action = new ActionInsertNodeImpl("Person");
action.setLogicalInsertion(false);
final Calendar dob = Calendar.getInstance();
dob.set(Calendar.YEAR, 1985);
dob.set(Calendar.MONTH, 6);
dob.set(Calendar.DATE, 15);
dob.set(Calendar.HOUR_OF_DAY, 0);
dob.set(Calendar.MINUTE, 0);
dob.set(Calendar.SECOND, 0);
action.getFieldValues().add(new ActionFieldValueImpl("dateOfBirth", new DateValue(dob.getTime())));
type.addChild(action);
addModelField("Person", "this", "Person", DataType.TYPE_THIS);
addModelField("Person", "dateOfBirth", Date.class.getName(), DataType.TYPE_DATE);
final GuidedDecisionTree model = getAndTestUnmarshalledModel(drl, "test", 0);
assertEquals(expected.getTreeName(), model.getTreeName());
assertNotNull(model.getRoot());
assertEquals(type.getClassName(), model.getRoot().getClassName());
assertFalse(model.getRoot().isBound());
assertEquals(1, model.getRoot().getChildren().size());
assertNotNull(model.getRoot().getChildren().get(0));
assertTrue(model.getRoot().getChildren().get(0) instanceof ActionInsertNode);
final ActionInsertNode _action = (ActionInsertNode) model.getRoot().getChildren().get(0);
assertEquals(action.getClassName(), _action.getClassName());
assertEquals(action.isLogicalInsertion(), _action.isLogicalInsertion());
assertEquals(action.getFieldValues().size(), _action.getFieldValues().size());
assertEquals(1, _action.getFieldValues().size());
assertEquals(action.getFieldValues().get(0).getFieldName(), _action.getFieldValues().get(0).getFieldName());
assertEquals(action.getFieldValues().get(0).getValue().getValue().toString(), _action.getFieldValues().get(0).getValue().getValue().toString());
assertEquals(0, _action.getChildren().size());
}
use of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionInsertNodeImpl in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceUnmarshallingTest method testSingleRule_ActionInsertLogicalDateFieldValue.
@Test
public void testSingleRule_ActionInsertLogicalDateFieldValue() throws Exception {
final String drl = "rule \"test_0\"\n" + "when \n" + " Person( )\n" + "then \n" + " java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(\"dd-MMM-yyyy\");\n" + " Person $var0 = new Person();\n" + " $var0.setDateOfBirth( sdf.parse(\"15-Jul-1985\") );\n" + " insertLogical( $var0 );\n" + "end";
final GuidedDecisionTree expected = new GuidedDecisionTree();
expected.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
expected.setRoot(type);
final ActionInsertNode action = new ActionInsertNodeImpl("Person");
action.setLogicalInsertion(true);
final Calendar dob = Calendar.getInstance();
dob.set(Calendar.YEAR, 1985);
dob.set(Calendar.MONTH, 6);
dob.set(Calendar.DATE, 15);
dob.set(Calendar.HOUR_OF_DAY, 0);
dob.set(Calendar.MINUTE, 0);
dob.set(Calendar.SECOND, 0);
action.getFieldValues().add(new ActionFieldValueImpl("dateOfBirth", new DateValue(dob.getTime())));
type.addChild(action);
addModelField("Person", "this", "Person", DataType.TYPE_THIS);
addModelField("Person", "dateOfBirth", Date.class.getName(), DataType.TYPE_DATE);
final GuidedDecisionTree model = getAndTestUnmarshalledModel(drl, "test", 0);
assertEquals(expected.getTreeName(), model.getTreeName());
assertNotNull(model.getRoot());
assertEquals(type.getClassName(), model.getRoot().getClassName());
assertFalse(model.getRoot().isBound());
assertEquals(1, model.getRoot().getChildren().size());
assertNotNull(model.getRoot().getChildren().get(0));
assertTrue(model.getRoot().getChildren().get(0) instanceof ActionInsertNode);
final ActionInsertNode _action = (ActionInsertNode) model.getRoot().getChildren().get(0);
assertEquals(action.getClassName(), _action.getClassName());
assertEquals(action.isLogicalInsertion(), _action.isLogicalInsertion());
assertEquals(action.getFieldValues().size(), _action.getFieldValues().size());
assertEquals(1, _action.getFieldValues().size());
assertEquals(action.getFieldValues().get(0).getFieldName(), _action.getFieldValues().get(0).getFieldName());
assertEquals(action.getFieldValues().get(0).getValue().getValue().toString(), _action.getFieldValues().get(0).getValue().getValue().toString());
assertEquals(0, _action.getChildren().size());
}
Aggregations