Package org.apache.camel.component.file.remote

Source Code of org.apache.camel.component.file.remote.FtpRouteTest

/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.file.remote;

import org.apache.camel.ContextTestSupport;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.ftpserver.ConfigurableFtpServerContext;
import org.apache.ftpserver.FtpServer;
import org.apache.ftpserver.config.PropertiesConfiguration;
import org.apache.ftpserver.ftplet.Configuration;
import org.apache.ftpserver.interfaces.FtpServerContext;

import java.util.Properties;

/**
* @version $Revision: 1.1 $
*/
public class FtpRouteTest extends ContextTestSupport {
    protected MockEndpoint resultEndpoint;
    protected String startEndpointUri = "ftp://admin@localhost:20010/tmp/camel?password=admin";
    protected FtpServer ftpServer;

    public void testFtpRouteWithTextMessage() throws Exception {
        String expectedBody = "Hello there!";

        resultEndpoint.expectedBodiesReceived(expectedBody);

        // TODO when we support multiple marshallers for messages
        // we can support passing headers over files using serialized/XML files
        //resultEndpoint.message(0).header("cheese").isEqualTo(123);

        sendExchange(expectedBody);

        resultEndpoint.assertIsSatisfied();
    }

    protected void sendExchange(final Object expectedBody) {
        template.sendBody(startEndpointUri, expectedBody, "cheese", 123);
    }

    @Override
    protected void setUp() throws Exception {
        ftpServer = createFtpServer();
        ftpServer.start();

        super.setUp();

        resultEndpoint = (MockEndpoint) context.getEndpoint("mock:result");
        createFtpServer();
    }

    @Override
    protected void tearDown() throws Exception {
        super.tearDown();
        if (ftpServer != null) {
            ftpServer.stop();
        }
    }

    protected RouteBuilder createRouteBuilder() throws Exception {
        return new RouteBuilder() {
            public void configure() throws Exception {
                from(startEndpointUri).to("mock:result");
            }
        };
    }

    protected FtpServer createFtpServer() throws Exception {
        // get the configuration object
        Properties properties = createFtpServerProperties();
        Configuration config = new PropertiesConfiguration(properties);

        // create servce context
        FtpServerContext ftpConfig = new ConfigurableFtpServerContext(config);

        // create the server object and start it
        return new FtpServer(ftpConfig);
    }

    protected Properties createFtpServerProperties() {
        Properties properties = new Properties();
        //properties.setProperty("config.data-connection.passive.ports", "20010");
        properties.setProperty("config.listeners.default.port", "20010");
        properties.setProperty("config.create-default-user", "true");
        return properties;
    }
}
TOP

Related Classes of org.apache.camel.component.file.remote.FtpRouteTest

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.