Package org.mule.transport.file

Source Code of org.mule.transport.file.WorkDirectoryTestCase

/*
* $Id: WorkDirectoryTestCase.java 19191 2010-08-25 21:05:23Z 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;

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.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class WorkDirectoryTestCase extends FunctionalTestCase
{
   
    private static final String TEST_FILENAME = "test.txt";

    protected String getConfigResources()
    {
        return "work-directory-config.xml";
    }

    @Override
    protected void doTearDown() throws Exception
    {
        // clean out the directory tree that's used as basis for this test
        File outputDir = new File(".mule");
        assertTrue(FileUtils.deleteTree(outputDir));

        super.doTearDown();
    }

    public void testWorkDirectory() throws Exception
    {
        FunctionalTestComponent ftc = (FunctionalTestComponent) getComponent("relay");
        ftc.setEventCallback(new EventCallback()
        {
            public void eventReceived(MuleEventContext context, Object component) throws Exception
            {
                File workDir = new File(".mule/work");
                String[] filenames = workDir.list();
                assertTrue(filenames.length > 0);
                for (String filename : filenames)
                {
                    if (filename.contains(TEST_FILENAME))
                    {
                        return;
                    }
                }
               
                fail("no work dir file matching filename " + TEST_FILENAME);
            }
        });
       
        writeTestMessageToInputDirectory();       
        checkOutputDirectory();
    }

    private void writeTestMessageToInputDirectory() throws FileNotFoundException, IOException
    {
        File outFile = new File(".mule/in", TEST_FILENAME);
        FileOutputStream out = new FileOutputStream(outFile);
        out.write(TEST_MESSAGE.getBytes());
        out.close();
    }

    private void checkOutputDirectory() throws Exception
    {
        for (int i = 0; i < 30; i++)
        {
            File outDir = new File(".mule/out");
            if (outDir.exists())
            {
                String[] filenames = outDir.list();
                if (filenames.length > 0)
                {
                    for (String filename : filenames)
                    {
                        if (filename.contains(TEST_FILENAME))
                        {
                            return;
                        }
                    }
                }
            }
           
            Thread.sleep(1000);
        }

        fail("no file with name " + TEST_FILENAME + " in output directory");
    }
   
}
TOP

Related Classes of org.mule.transport.file.WorkDirectoryTestCase

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.