/*
* $Id: InboundMessageLossTestCase.java 22034 2011-05-30 17:24:29Z tcarlson $
* --------------------------------------------------------------------------------------
* 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.file.reliability;
import org.mule.exception.DefaultSystemExceptionStrategy;
import org.mule.routing.filters.WildcardFilter;
import org.mule.tck.probe.PollingProber;
import org.mule.tck.probe.Probe;
import org.mule.tck.probe.Prober;
import org.mule.transport.file.AbstractFileMoveDeleteTestCase;
import java.io.File;
/**
* Verify that no inbound messages are lost when exceptions occur.
* The message must either make it all the way to the SEDA queue (in the case of
* an asynchronous inbound endpoint), or be restored/rolled back at the source.
*
* In the case of the File transport, this will cause the file to be restored to
* its original location from the working directory. Note that a
* workDirectory must be specified on the connector in order for this to succeed.
*/
public class InboundMessageLossTestCase extends AbstractFileMoveDeleteTestCase
{
/** Polling mechanism to replace Thread.sleep() for testing a delayed result. */
protected Prober prober = new PollingProber(10000, 100);
@Override
protected String getConfigResources()
{
return "reliability/inbound-message-loss.xml";
}
@Override
protected void doSetUp() throws Exception
{
super.doSetUp();
// Set SystemExceptionStrategy to redeliver messages (this can only be configured programatically for now)
((DefaultSystemExceptionStrategy) muleContext.getExceptionListener()).setRollbackTxFilter(new WildcardFilter("*"));
}
public void testNoException() throws Exception
{
tmpDir = createFolder(".mule/noException");
final File file = createDataFile(tmpDir, "test1.txt");
prober.check(new Probe()
{
public boolean isSatisfied()
{
// Delivery was successful so message should be gone
return !file.exists();
}
public String describeFailure()
{
return "File should be gone";
}
});
}
public void testTransformerException() throws Exception
{
tmpDir = createFolder(".mule/transformerException");
final File file = createDataFile(tmpDir, "test1.txt");
prober.check(new Probe()
{
public boolean isSatisfied()
{
// Delivery failed so message should have been restored at the source
return file.exists();
}
public String describeFailure()
{
return "File should have been restored";
}
});
}
public void testRouterException() throws Exception
{
tmpDir = createFolder(".mule/routerException");
final File file = createDataFile(tmpDir, "test1.txt");
prober.check(new Probe()
{
public boolean isSatisfied()
{
// Delivery failed so message should have been restored at the source
return file.exists();
}
public String describeFailure()
{
return "File should have been restored";
}
});
}
public void testComponentException() throws Exception
{
tmpDir = createFolder(".mule/componentException");
final File file = createDataFile(tmpDir, "test1.txt");
prober.check(new Probe()
{
public boolean isSatisfied()
{
// Component exception occurs after the SEDA queue for an asynchronous request, so from the client's
// perspective, the message has been delivered successfully.
return !file.exists();
}
public String describeFailure()
{
return "File should be gone";
}
});
}
}