Package org.apache.agila.impl

Source Code of org.apache.agila.impl.ConnectionImplTestCase

/*
* Copyright 2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License")
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.agila.impl;

import junit.framework.TestCase;
import org.apache.agila.engine.Token;
import org.apache.agila.engine.InstanceID;
import org.apache.agila.model.Node;
import org.apache.agila.model.NodeContext;
import org.apache.agila.model.node.BaseNodeImpl;
import org.apache.agila.model.Connection;
import org.apache.agila.model.NodeID;
import org.apache.agila.services.TokenService;
import org.apache.agila.impl.memory.TokenServiceImpl;

public class ConnectionImplTestCase extends TestCase {

  ConnectionImpl connectionImpl;
   
  
  protected void setUp() throws Exception {
        super.setUp();
       
        connectionImpl = new ConnectionImpl("sample");
    }

   
    protected void tearDown() throws Exception {
        super.tearDown();
    }
   
    public void testDisplayName(){
      connectionImpl.setDisplayName("foo");
      assertEquals("foo",connectionImpl.getDisplayName());
    }
   
    public void testParentNode(){
      Node n = createNode(1);
      connectionImpl.setParentNode(n);
      assertEquals(n,connectionImpl.getParentNode());
    }
   
    public void testChildNode(){
      Node child = createNode(1);
      connectionImpl.setChildNode(child);
      assertEquals(child,connectionImpl.getChildNode());
    }
   
    public void testTraverse(){
      TokenService tokenService = new TokenServiceImpl();
      InstanceID instanceId = new InstanceID(1);
      Token token = tokenService.newToken(instanceId, new NodeID(2), Token.PRE);
     
      Node child = createNode(50);
      connectionImpl.setChildNode(child);
           
      connectionImpl.traverse(token);
      assertEquals(50,token.getCurrentNodeID().getID());
    }
   
    private Node createNode(int nodeID) {
      Node n = new BaseNodeImpl() {

            public Connection[] doEnd(NodeContext ctx) {
                return null;
            }
        };
        n.setNodeId(new NodeID(nodeID));
        return n;
    }
   
   
  
   
}
TOP

Related Classes of org.apache.agila.impl.ConnectionImplTestCase

TOP
Copyright © 2018 www.massapi.com. 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.