/*
* $Id: SftpConnectorFactoryTestCase.java 21125 2011-01-26 21:21:10Z dzapata $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.transport.sftp;
import org.mule.api.endpoint.InboundEndpoint;
import org.mule.tck.AbstractMuleTestCase;
public class SftpConnectorFactoryTestCase extends AbstractMuleTestCase
{
/*
* For general guidelines on writing transports see
* http://mule.mulesource.org/display/MULE/Writing+Transports
*/
public void testCreateFromFactory() throws Exception
{
InboundEndpoint endpoint = muleContext.getRegistry().lookupEndpointFactory().getInboundEndpoint(
getEndpointURI());
assertNotNull(endpoint);
assertNotNull(endpoint.getConnector());
assertTrue(endpoint.getConnector() instanceof SftpConnector);
assertEquals(getEndpointURI(), endpoint.getEndpointURI().getAddress());
}
public String getEndpointURI()
{
return "sftp://ms/data";
}
}