Author: davsclaus Date: Thu Feb 18 14:20:30 2010 New Revision: 911414 URL: http://svn.apache.org/viewvc?rev=911414&view=rev Log: Added a manual test for testing absolute paths
Added: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java (with props) Added: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java?rev=911414&view=auto ============================================================================== --- camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java (added) +++ camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java Thu Feb 18 14:20:30 2010 @@ -0,0 +1,48 @@ +/** + * 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; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.Exchange; +import org.apache.camel.builder.RouteBuilder; + +/** + * A manual unit test you can run to test absolute paths works as expected. + * <p/> + * We do have other absolute tests that are run when running tests. + * + * @version $Revision$ + */ +public class FileAbsoluteManual extends ContextTestSupport { + + public void testAbsolute() throws Exception { + template.sendBodyAndHeader("file:///tmp/in", "Hello World", Exchange.FILE_NAME, "hello.txt"); + + Thread.sleep(3000); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("file:///tmp/in") + .to("file:///tmp/out"); + } + }; + } +} Propchange: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/camel-core/src/test/java/org/apache/camel/component/file/FileAbsoluteManual.java ------------------------------------------------------------------------------ svn:keywords = Rev Date