/*
* $Id: SftpNoWriteAccessToOutboundDirectoryTestCase.java 21125 2011-01-26 21:21:10Z dzapata $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.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.dataintegrity;
import java.io.IOException;
import org.mule.api.transport.DispatchException;
import org.mule.module.client.MuleClient;
import org.mule.transport.sftp.SftpClient;
/**
* Verify that the original file is not lost if the outbound directory doesn't exist
*/
public class SftpNoWriteAccessToOutboundDirectoryTestCase extends AbstractSftpDataIntegrityTestCase
{
private static final String OUTBOUND_ENDPOINT_NAME = "outboundEndpoint";
private static final String INBOUND_ENDPOINT_NAME = "inboundEndpoint";
@Override
protected String getConfigResources()
{
return "dataintegrity/sftp-dataintegrity-common-config.xml";
}
@Override
protected void doSetUp() throws Exception
{
super.doSetUp();
// Delete the in & outbound directories
initEndpointDirectory(INBOUND_ENDPOINT_NAME);
initEndpointDirectory(OUTBOUND_ENDPOINT_NAME);
}
/** No write access on the outbound directory. The source file should still exist */
public void testNoWriteAccessToOutboundDirectory() throws Exception
{
MuleClient muleClient = new MuleClient(muleContext);
SftpClient sftpClient = getSftpClient(muleClient, OUTBOUND_ENDPOINT_NAME);
try
{
// change the chmod to "dr-x------" on the outbound-directory
remoteChmod(muleClient, sftpClient, OUTBOUND_ENDPOINT_NAME, 00500);
// Send an file to the SFTP server, which the inbound-outboundEndpoint
// then can pick up
Exception exception = dispatchAndWaitForException(new DispatchParameters(INBOUND_ENDPOINT_NAME,
OUTBOUND_ENDPOINT_NAME), "sftp", "service");
assertNotNull(exception);
assertTrue("expected DispatchException, but got : " + exception.getClass().toString(),
exception instanceof DispatchException);
assertTrue("expected IOException, but got : " + exception.getCause().getClass().toString(),
exception.getCause() instanceof IOException);
assertEquals("Permission denied", exception.getCause().getMessage());
verifyInAndOutFiles(muleClient, INBOUND_ENDPOINT_NAME, OUTBOUND_ENDPOINT_NAME, true, false);
}
finally
{
sftpClient.disconnect();
}
}
}