/** * 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 java.io.File; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import org.apache.camel.AsyncCallback; import org.apache.camel.AsyncProcessor; import org.apache.camel.Exchange; import org.apache.camel.builder.RouteBuilder; import org.junit.Test; /** * */ public class FromFtpAsyncProcessTest extends FtpServerTestSupport { private String getFtpUrl() { return "ftp://admin@localhost:" + getPort() + "/async/?password=admin&delete=true"; } @Test public void testFtpAsyncProcess() throws Exception { template.sendBodyAndHeader("file:" + FTP_ROOT_DIR + "/async", "Hello World", Exchange.FILE_NAME, "hello.txt"); template.sendBodyAndHeader("file:" + FTP_ROOT_DIR + "/async", "Bye World", Exchange.FILE_NAME, "bye.txt"); getMockEndpoint("mock:result").expectedMessageCount(2); getMockEndpoint("mock:result").expectedHeaderReceived("foo", 123); // the log file should log that all the ftp client work is done in the same thread (fully synchronous) // as the ftp client is not thread safe and must process fully synchronous context.startRoute("foo"); assertMockEndpointsSatisfied(); // give time for files to be deleted on ftp server Thread.sleep(1000); File hello = new File(FTP_ROOT_DIR + "/async/hello.txt"); assertFalse("File should not exist " + hello, hello.exists()); File bye = new File(FTP_ROOT_DIR + "/async/bye.txt"); assertFalse("File should not exist " + bye, bye.exists()); } protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { public void configure() throws Exception { from(getFtpUrl()).routeId("foo").noAutoStartup() .process(new MyAsyncProcessor()) .to("mock:result"); } }; } private class MyAsyncProcessor implements AsyncProcessor { private ExecutorService executor = Executors.newSingleThreadExecutor(); @Override public boolean process(final Exchange exchange, final AsyncCallback callback) { executor.submit(new Runnable() { @Override public void run() { try { Thread.sleep(1000); } catch (InterruptedException e) { // ignore } exchange.getIn().setHeader("foo", 123); callback.done(false); } }); return false; } @Override public void process(Exchange exchange) throws Exception { // noop } } }