Package org.jboss.soa.esb.visitors

Source Code of org.jboss.soa.esb.visitors.ServiceDelegatorUnitTest

/*
* JBoss, Home of Professional Open Source Copyright 2006, JBoss Inc., and
* individual contributors as indicated by the @authors tag. See the
* copyright.txt in the distribution for a full listing of individual
* contributors.
*
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF
* site: http://www.fsf.org.
*/
package org.jboss.soa.esb.visitors;

import static org.jboss.soa.esb.visitors.ServiceDelegator.SERVICE_CATEGORY_NAME_ATTR;
import static org.jboss.soa.esb.visitors.ServiceDelegator.SERVICE_NAME_ATTR;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import java.io.IOException;

import junit.framework.JUnit4TestAdapter;

import org.jboss.soa.esb.client.ServiceInvoker;
import org.jboss.soa.esb.listeners.message.MessageDeliverException;
import org.junit.Before;
import org.junit.Test;
import org.milyn.cdr.SmooksConfigurationException;
import org.milyn.cdr.SmooksResourceConfiguration;
import org.xml.sax.SAXException;

/**
* Test Smooks JBoss ESB ServiceDelegatorVisitor
*
* @author <a href="mailto:daniel.bevenius@gmail.com">Daniel Bevenius</a>       
*
*/
public class ServiceDelegatorUnitTest
{
  private static final String SELECTOR = "Order";
 
  private ServiceDelegator visitor;
    private SmooksResourceConfiguration resourceConfig;
   
    private String serviceCategoryName = "testCategoryName";
    private String serviceName = "testServiceName";
   
    @Test ( expected = SmooksConfigurationException.class )
  public void setServiceNameNegative() throws SAXException, IOException
  {
    resourceConfig.setParameter( SERVICE_CATEGORY_NAME_ATTR, serviceCategoryName );
    visitor.setConfiguration( resourceConfig );
    fail( SERVICE_NAME_ATTR + " should be allowed to be null. Excepteded SmooksConfigurationException" );
  }
 
    @Test ( expected = SmooksConfigurationException.class )
  public void setServiceCategoryNameNegative() throws SAXException, IOException
  {
    resourceConfig.setParameter( SERVICE_NAME_ATTR, serviceName );
    visitor.setConfiguration( resourceConfig );
    fail( SERVICE_CATEGORY_NAME_ATTR + " should be allowed to be null. Excepteded SmooksConfigurationException" );
  }
   
  @Test
  public void setServiceCategoryNameAndServiceName() throws SAXException, IOException
  {
    resourceConfig.setParameter( SERVICE_CATEGORY_NAME_ATTR, serviceCategoryName );
    resourceConfig.setParameter( SERVICE_NAME_ATTR, serviceName );
    resourceConfig.setParameter( DOMServiceDelegateVisitor.SEND_IN_VISIT_AFTER, "true" );
    visitor.setConfiguration( resourceConfig );
   
    assertEquals( serviceCategoryName,  visitor.getServiceCategoryName() );
    assertEquals( serviceName,  visitor.getServiceName() );
  }
 
  @Before
  public void createServiceDelegatVistorInstance() throws MessageDeliverException
  {
    visitor = new ServiceDelegator() {
      @Override
      protected ServiceInvoker createServiceInvoker( String serviceCategoryName, String serviceName ) throws MessageDeliverException
      {
        return null;
      }
    };
  }
 
  @Before
  public void createSmooksResourceConfiguration()
  {
    final String resource = ServiceDelegator.class.getName();
    resourceConfig = new SmooksResourceConfiguration( SELECTOR, resource );
  }

  public static junit.framework.Test suite()
  {
    return new JUnit4TestAdapter( ServiceDelegatorUnitTest.class );
  }
}
TOP

Related Classes of org.jboss.soa.esb.visitors.ServiceDelegatorUnitTest

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.