Package org.drools.workbench.models.guided.dtree.shared.model.nodes.impl

Examples of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionUpdateNodeImpl


                                                          "name" );
        c1.setBinding( "$n" );
        expected.setRoot( type );
        type.addChild( c1 );

        final ActionUpdateNode action = new ActionUpdateNodeImpl( type );
        action.setModify( false );
        action.getFieldValues().add( new ActionFieldValueImpl( "age",
                                                               new IntegerValue( 25 ) ) );
        c1.addChild( action );

        addModelField( "Person",
                       "this",
                       "Person",
                       DataType.TYPE_THIS );
        addModelField( "Person",
                       "name",
                       String.class.getName(),
                       DataType.TYPE_STRING );
        addModelField( "Person",
                       "age",
                       Integer.class.getName(),
                       DataType.TYPE_NUMERIC_INTEGER );

        final GuidedDecisionTree model = GuidedDecisionTreeDRLPersistence.getInstance().unmarshal( drl,
                                                                                                   "test",
                                                                                                   dmo );

        assertNotNull( model );
        assertEquals( 0,
                      model.getParserErrors().size() );
        assertEquals( expected.getTreeName(),
                      model.getTreeName() );

        assertNotNull( model.getRoot() );
        assertEquals( type.getClassName(),
                      model.getRoot().getClassName() );
        assertTrue( model.getRoot().isBound() );
        assertEquals( type.getBinding(),
                      model.getRoot().getBinding() );

        assertEquals( 1,
                      model.getRoot().getChildren().size() );
        assertNotNull( model.getRoot().getChildren().get( 0 ) );
        assertTrue( model.getRoot().getChildren().get( 0 ) instanceof ConstraintNode );

        final ConstraintNode _c1 = (ConstraintNode) model.getRoot().getChildren().get( 0 );

        assertEquals( c1.getClassName(),
                      _c1.getClassName() );
        assertEquals( c1.getFieldName(),
                      _c1.getFieldName() );
        assertNull( _c1.getOperator() );
        assertNull( _c1.getValue() );
        assertTrue( _c1.isBound() );
        assertEquals( c1.getBinding(),
                      _c1.getBinding() );

        assertEquals( 1,
                      _c1.getChildren().size() );
        assertNotNull( _c1.getChildren().get( 0 ) );
        assertTrue( _c1.getChildren().get( 0 ) instanceof ActionUpdateNode );

        final ActionUpdateNode _action = (ActionUpdateNode) _c1.getChildren().get( 0 );

        assertEquals( action.getBoundNode().getBinding(),
                      _action.getBoundNode().getBinding() );
        assertEquals( action.isModify(),
                      _action.isModify() );
        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() );
    }
View Full Code Here


        final TypeNode type = new TypeNodeImpl( "Person" );
        type.setBinding( "$p" );
        expected.setRoot( type );

        final ActionUpdateNode action1 = new ActionUpdateNodeImpl( type );
        action1.setModify( false );
        action1.getFieldValues().add( new ActionFieldValueImpl( "age",
                                                                new IntegerValue( 25 ) ) );
        type.addChild( action1 );

        final ActionRetractNode action2 = new ActionRetractNodeImpl( type );
        action1.addChild( action2 );

        addModelField( "Person",
                       "this",
                       "Person",
                       DataType.TYPE_THIS );
        addModelField( "Person",
                       "age",
                       Integer.class.getName(),
                       DataType.TYPE_NUMERIC_INTEGER );

        final GuidedDecisionTree model = GuidedDecisionTreeDRLPersistence.getInstance().unmarshal( drl,
                                                                                                   "test",
                                                                                                   dmo );

        assertNotNull( model );
        assertEquals( 0,
                      model.getParserErrors().size() );
        assertEquals( expected.getTreeName(),
                      model.getTreeName() );

        assertNotNull( model.getRoot() );
        assertEquals( type.getClassName(),
                      model.getRoot().getClassName() );
        assertTrue( model.getRoot().isBound() );
        assertEquals( type.getBinding(),
                      model.getRoot().getBinding() );

        assertEquals( 1,
                      model.getRoot().getChildren().size() );
        assertNotNull( model.getRoot().getChildren().get( 0 ) );
        assertTrue( model.getRoot().getChildren().get( 0 ) instanceof ActionUpdateNode );

        final ActionUpdateNode _action1 = (ActionUpdateNode) model.getRoot().getChildren().get( 0 );

        assertEquals( action1.getBoundNode().getBinding(),
                      _action1.getBoundNode().getBinding() );
        assertEquals( action1.isModify(),
                      _action1.isModify() );
        assertEquals( action1.getFieldValues().size(),
                      _action1.getFieldValues().size() );
        assertEquals( 1,
                      _action1.getFieldValues().size() );
        assertEquals( action1.getFieldValues().get( 0 ).getFieldName(),
                      _action1.getFieldValues().get( 0 ).getFieldName() );
        assertEquals( action1.getFieldValues().get( 0 ).getValue().getValue().toString(),
                      _action1.getFieldValues().get( 0 ).getValue().getValue().toString() );

        assertEquals( 1,
                      _action1.getChildren().size() );
        assertNotNull( _action1.getChildren().get( 0 ) );
View Full Code Here

        final TypeNode type = new TypeNodeImpl( "Person" );
        type.setBinding( "$p" );
        expected.setRoot( type );

        final ActionUpdateNode action = new ActionUpdateNodeImpl( type );
        action.setModify( false );
        action.getFieldValues().add( new ActionFieldValueImpl( "age",
                                                               new IntegerValue( 25 ) ) );
        action.getFieldValues().add( new ActionFieldValueImpl( "name",
                                                               new StringValue( "Michael" ) ) );
        type.addChild( action );

        addModelField( "Person",
                       "this",
                       "Person",
                       DataType.TYPE_THIS );
        addModelField( "Person",
                       "name",
                       String.class.getName(),
                       DataType.TYPE_STRING );
        addModelField( "Person",
                       "age",
                       Integer.class.getName(),
                       DataType.TYPE_NUMERIC_INTEGER );

        final GuidedDecisionTree model = GuidedDecisionTreeDRLPersistence.getInstance().unmarshal( drl,
                                                                                                   "test",
                                                                                                   dmo );

        assertNotNull( model );
        assertEquals( 0,
                      model.getParserErrors().size() );
        assertEquals( expected.getTreeName(),
                      model.getTreeName() );

        assertNotNull( model.getRoot() );
        assertEquals( type.getClassName(),
                      model.getRoot().getClassName() );
        assertTrue( model.getRoot().isBound() );
        assertEquals( type.getBinding(),
                      model.getRoot().getBinding() );

        assertEquals( 1,
                      model.getRoot().getChildren().size() );
        assertNotNull( model.getRoot().getChildren().get( 0 ) );
        assertTrue( model.getRoot().getChildren().get( 0 ) instanceof ActionUpdateNode );

        final ActionUpdateNode _action = (ActionUpdateNode) model.getRoot().getChildren().get( 0 );

        assertEquals( action.getBoundNode().getBinding(),
                      _action.getBoundNode().getBinding() );
        assertEquals( action.isModify(),
                      _action.isModify() );
        assertEquals( action.getFieldValues().size(),
                      _action.getFieldValues().size() );
        assertEquals( 2,
                      _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( action.getFieldValues().get( 1 ).getFieldName(),
                      _action.getFieldValues().get( 1 ).getFieldName() );
        assertEquals( action.getFieldValues().get( 1 ).getValue().getValue().toString(),
                      _action.getFieldValues().get( 1 ).getValue().getValue().toString() );

        assertEquals( 0,
                      _action.getChildren().size() );
    }
View Full Code Here

        final TypeNode type = new TypeNodeImpl( "Person" );
        type.setBinding( "$p" );
        expected.setRoot( type );

        final ActionUpdateNode action = new ActionUpdateNodeImpl( type );
        action.setModify( false );
        type.addChild( action );

        addModelField( "Person",
                       "this",
                       "Person",
View Full Code Here

        final TypeNode type = new TypeNodeImpl( "Person" );
        type.setBinding( "$p" );
        expected.setRoot( type );

        final ActionUpdateNode action = new ActionUpdateNodeImpl( type );
        action.setModify( 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 = GuidedDecisionTreeDRLPersistence.getInstance().unmarshal( drl,
                                                                                                   "test",
                                                                                                   dmo );

        assertNotNull( model );
        assertEquals( 0,
                      model.getParserErrors().size() );
        assertEquals( expected.getTreeName(),
                      model.getTreeName() );

        assertNotNull( model.getRoot() );
        assertEquals( type.getClassName(),
                      model.getRoot().getClassName() );
        assertTrue( model.getRoot().isBound() );
        assertEquals( type.getBinding(),
                      model.getRoot().getBinding() );

        assertEquals( 1,
                      model.getRoot().getChildren().size() );
        assertNotNull( model.getRoot().getChildren().get( 0 ) );
        assertTrue( model.getRoot().getChildren().get( 0 ) instanceof ActionUpdateNode );

        final ActionUpdateNode _action = (ActionUpdateNode) model.getRoot().getChildren().get( 0 );

        assertEquals( action.getBoundNode().getBinding(),
                      _action.getBoundNode().getBinding() );
        assertEquals( action.isModify(),
                      _action.isModify() );
        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() );
    }
View Full Code Here

TOP

Related Classes of org.drools.workbench.models.guided.dtree.shared.model.nodes.impl.ActionUpdateNodeImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.