/*
* $Id: FileComparatorTestCase.java 21939 2011-05-18 13:32:09Z aperepel $
* --------------------------------------------------------------------------------------
* 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;
import org.mule.api.MuleEventContext;
import org.mule.tck.FunctionalTestCase;
import org.mule.tck.functional.EventCallback;
import org.mule.tck.functional.FunctionalTestComponent;
import org.mule.util.FileUtils;
import java.io.File;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
public class FileComparatorTestCase extends FunctionalTestCase
{
public static final String PATH = "./.mule/in/";
public static final String FILE_CONNECTOR_NAME = "fileConnector";
public static final int TIMEOUT = 50000;
public static final String FILE_NAMES[] = {"first", "second"};
public static final String MODEL_NAME = "ESTest";
public static final String COMPONENT_NAME = "FolderTO";
public void testComparator() throws Exception
{
final CountDownLatch countDown = new CountDownLatch(2);
EventCallback callback = new EventCallback()
{
public void eventReceived(MuleEventContext context, Object component) throws Exception
{
int index = (int) countDown.getCount() - 1;
assertEquals(FILE_NAMES[index], context.getMessage().getOutboundProperty(FileConnector.PROPERTY_ORIGINAL_FILENAME));
countDown.countDown();
}
};
((FunctionalTestComponent) getComponent(COMPONENT_NAME)).setEventCallback(callback);
muleContext.getRegistry().lookupConnector(FILE_CONNECTOR_NAME).stop();
File f1 = FileUtils.newFile(PATH + FILE_NAMES[0]);
assertTrue(f1.createNewFile());
Thread.sleep(1000);
File f2 = FileUtils.newFile(PATH + FILE_NAMES[1]);
assertTrue(f2.createNewFile());
Thread.sleep(1000);
muleContext.getRegistry().lookupConnector(FILE_CONNECTOR_NAME).start();
assertTrue(countDown.await(TIMEOUT, TimeUnit.MILLISECONDS));
}
protected String getConfigResources()
{
return "file-functional-config.xml";
}
}