Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9869696E4 for ; Fri, 2 Dec 2011 17:04:59 +0000 (UTC) Received: (qmail 38233 invoked by uid 500); 2 Dec 2011 17:04:59 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 38180 invoked by uid 500); 2 Dec 2011 17:04:59 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 38173 invoked by uid 99); 2 Dec 2011 17:04:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2011 17:04:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Dec 2011 17:04:54 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BC9C32388C18 for ; Fri, 2 Dec 2011 17:04:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1209585 [11/22] - in /camel/trunk: ./ apache-camel/ buildingtools/ camel-core/ camel-core/src/main/java/org/apache/camel/ camel-core/src/main/java/org/apache/camel/api/management/ camel-core/src/main/java/org/apache/camel/builder/ camel-co... Date: Fri, 02 Dec 2011 17:03:50 -0000 To: commits@camel.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111202170409.BC9C32388C18@eris.apache.org> Modified: camel/trunk/components/camel-exec/src/test/java/org/apache/camel/component/exec/impl/ExecParseUtilsTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/java/org/apache/camel/component/exec/impl/ExecParseUtilsTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/java/org/apache/camel/component/exec/impl/ExecParseUtilsTest.java (original) +++ camel/trunk/components/camel-exec/src/test/java/org/apache/camel/component/exec/impl/ExecParseUtilsTest.java Fri Dec 2 17:03:07 2011 @@ -1,138 +1,138 @@ -/** - * 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.exec.impl; - -import java.util.List; - -import org.junit.Test; - -import static org.apache.camel.component.exec.impl.ExecParseUtils.isDoubleQuoted; -import static org.apache.camel.component.exec.impl.ExecParseUtils.isSingleQuoted; -import static org.apache.camel.component.exec.impl.ExecParseUtils.splitToWhiteSpaceSeparatedTokens; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; - -/** - * Tests for {@link ExecParseUtils} - */ -public class ExecParseUtilsTest { - - @Test - public void testSingleQuoted() { - assertTrue(isSingleQuoted("\"c:\\program files\\test\"")); - } - - @Test - public void testSingleQuoted2() { - assertTrue(isSingleQuoted("\"with space\"")); - } - - @Test - public void testSingleQuotedNegative() { - assertFalse(isSingleQuoted("arg 0")); - } - - @Test - public void testSingleQuotedNegative2() { - assertFalse(isSingleQuoted("\" \" space not allowed between quotes \"")); - } - - @Test - public void testSingleQuotedNegative3() { - assertFalse(isSingleQuoted("\"\"double quoted is not single quoted\"\"")); - } - - @Test - public void testEmptySingleQuotedNegative() { - assertFalse(isSingleQuoted("\"\"")); - } - - @Test - public void testEmptySingleQuotedNegative2() { - assertFalse(isSingleQuoted("\"")); - } - - @Test - public void testDoubleQuoted() { - assertTrue(isDoubleQuoted("\"\"c:\\program files\\test\\\"\"")); - } - - @Test - public void testEmptyDoubleQuotedNegative() { - assertFalse(isDoubleQuoted("\"\"\"\"")); - } - - @Test - public void testWhiteSpaceSeparatedArgs() { - List args = splitToWhiteSpaceSeparatedTokens("arg0 arg1 arg2"); - assertEquals("arg0", args.get(0)); - assertEquals("arg1", args.get(1)); - assertEquals("arg2", args.get(2)); - } - - @Test - public void testWhiteSpaceQuoted() { - List args = splitToWhiteSpaceSeparatedTokens("\"arg 0\""); - assertEquals("arg 0", args.get(0)); - } - - @Test - public void testTwoQuotings() { - List args = splitToWhiteSpaceSeparatedTokens("\"arg 0\" \"arg 1\""); - assertEquals("arg 0", args.get(0)); - assertEquals("arg 1", args.get(1)); - } - - @Test - public void testWhitespaceSeparatedArgsWithSpaces() { - List args = splitToWhiteSpaceSeparatedTokens("\"arg 0 \" arg1 \"arg 2\""); - assertEquals("arg 0 ", args.get(0)); - assertEquals("arg1", args.get(1)); - assertEquals("arg 2", args.get(2)); - } - - @Test - public void testDoubleQuote() { - List args = splitToWhiteSpaceSeparatedTokens("\"\"arg0\"\""); - assertEquals("\"arg0\"", args.get(0)); - } - - @Test - public void testDoubleQuoteAndSpace() { - List args = splitToWhiteSpaceSeparatedTokens("\"\"arg0\"\" arg1"); - assertEquals("\"arg0\"", args.get(0)); - assertEquals("arg1", args.get(1)); - } - - @Test - public void testTwoDoubleQuotes() { - List args = splitToWhiteSpaceSeparatedTokens("\"\"arg0\"\" \"\"arg1\"\""); - assertEquals("\"arg0\"", args.get(0)); - assertEquals("\"arg1\"", args.get(1)); - } - - @Test(expected = IllegalArgumentException.class) - public void testWhiteSpaceSeparatedArgsNotClosed() { - splitToWhiteSpaceSeparatedTokens("arg 0 \" arg1 \"arg 2\""); - } - - @Test(expected = IllegalArgumentException.class) - public void testInvalidQuotes() { - splitToWhiteSpaceSeparatedTokens("\"\"arg 0 \" arg1 \"arg 2\""); - } -} +/** + * 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.exec.impl; + +import java.util.List; + +import org.junit.Test; + +import static org.apache.camel.component.exec.impl.ExecParseUtils.isDoubleQuoted; +import static org.apache.camel.component.exec.impl.ExecParseUtils.isSingleQuoted; +import static org.apache.camel.component.exec.impl.ExecParseUtils.splitToWhiteSpaceSeparatedTokens; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +/** + * Tests for {@link ExecParseUtils} + */ +public class ExecParseUtilsTest { + + @Test + public void testSingleQuoted() { + assertTrue(isSingleQuoted("\"c:\\program files\\test\"")); + } + + @Test + public void testSingleQuoted2() { + assertTrue(isSingleQuoted("\"with space\"")); + } + + @Test + public void testSingleQuotedNegative() { + assertFalse(isSingleQuoted("arg 0")); + } + + @Test + public void testSingleQuotedNegative2() { + assertFalse(isSingleQuoted("\" \" space not allowed between quotes \"")); + } + + @Test + public void testSingleQuotedNegative3() { + assertFalse(isSingleQuoted("\"\"double quoted is not single quoted\"\"")); + } + + @Test + public void testEmptySingleQuotedNegative() { + assertFalse(isSingleQuoted("\"\"")); + } + + @Test + public void testEmptySingleQuotedNegative2() { + assertFalse(isSingleQuoted("\"")); + } + + @Test + public void testDoubleQuoted() { + assertTrue(isDoubleQuoted("\"\"c:\\program files\\test\\\"\"")); + } + + @Test + public void testEmptyDoubleQuotedNegative() { + assertFalse(isDoubleQuoted("\"\"\"\"")); + } + + @Test + public void testWhiteSpaceSeparatedArgs() { + List args = splitToWhiteSpaceSeparatedTokens("arg0 arg1 arg2"); + assertEquals("arg0", args.get(0)); + assertEquals("arg1", args.get(1)); + assertEquals("arg2", args.get(2)); + } + + @Test + public void testWhiteSpaceQuoted() { + List args = splitToWhiteSpaceSeparatedTokens("\"arg 0\""); + assertEquals("arg 0", args.get(0)); + } + + @Test + public void testTwoQuotings() { + List args = splitToWhiteSpaceSeparatedTokens("\"arg 0\" \"arg 1\""); + assertEquals("arg 0", args.get(0)); + assertEquals("arg 1", args.get(1)); + } + + @Test + public void testWhitespaceSeparatedArgsWithSpaces() { + List args = splitToWhiteSpaceSeparatedTokens("\"arg 0 \" arg1 \"arg 2\""); + assertEquals("arg 0 ", args.get(0)); + assertEquals("arg1", args.get(1)); + assertEquals("arg 2", args.get(2)); + } + + @Test + public void testDoubleQuote() { + List args = splitToWhiteSpaceSeparatedTokens("\"\"arg0\"\""); + assertEquals("\"arg0\"", args.get(0)); + } + + @Test + public void testDoubleQuoteAndSpace() { + List args = splitToWhiteSpaceSeparatedTokens("\"\"arg0\"\" arg1"); + assertEquals("\"arg0\"", args.get(0)); + assertEquals("arg1", args.get(1)); + } + + @Test + public void testTwoDoubleQuotes() { + List args = splitToWhiteSpaceSeparatedTokens("\"\"arg0\"\" \"\"arg1\"\""); + assertEquals("\"arg0\"", args.get(0)); + assertEquals("\"arg1\"", args.get(1)); + } + + @Test(expected = IllegalArgumentException.class) + public void testWhiteSpaceSeparatedArgsNotClosed() { + splitToWhiteSpaceSeparatedTokens("arg 0 \" arg1 \"arg 2\""); + } + + @Test(expected = IllegalArgumentException.class) + public void testInvalidQuotes() { + splitToWhiteSpaceSeparatedTokens("\"\"arg 0 \" arg1 \"arg 2\""); + } +} Propchange: camel/trunk/components/camel-exec/src/test/java/org/apache/camel/component/exec/impl/ExecParseUtilsTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.bat URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/resources/exec-test-script.bat?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/resources/exec-test-script.bat (original) +++ camel/trunk/components/camel-exec/src/test/resources/exec-test-script.bat Fri Dec 2 17:03:07 2011 @@ -1,2 +1,2 @@ -echo %JAVA_HOME% -%JAVA_HOME%\bin\java.exe -cp %1 org.apache.camel.component.exec.ExecutableJavaProgram %2 +echo %JAVA_HOME% +%JAVA_HOME%\bin\java.exe -cp %1 org.apache.camel.component.exec.ExecutableJavaProgram %2 Propchange: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.bat ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.bat ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh (original) +++ camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh Fri Dec 2 17:03:07 2011 @@ -1,4 +1,4 @@ -echo $1 -echo $JAVA_HOME - -$JAVA_HOME/bin/java -cp $1 org.apache.camel.component.exec.ExecutableJavaProgram $2 +echo $1 +echo $JAVA_HOME + +$JAVA_HOME/bin/java -cp $1 org.apache.camel.component.exec.ExecutableJavaProgram $2 Propchange: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh ------------------------------------------------------------------------------ svn:executable = * Propchange: camel/trunk/components/camel-exec/src/test/resources/exec-test-script.sh ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: camel/trunk/components/camel-exec/src/test/resources/log4j.properties URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/resources/log4j.properties?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/resources/log4j.properties (original) +++ camel/trunk/components/camel-exec/src/test/resources/log4j.properties Fri Dec 2 17:03:07 2011 @@ -1,36 +1,36 @@ -## --------------------------------------------------------------------------- -## 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. -## --------------------------------------------------------------------------- - -# -# -# Write console logs only -# -log4j.rootLogger=INFO, out - -#log4j.logger.org.apache.camel.component.exec=DEBUG - -log4j.appender.stdout=org.apache.log4j.ConsoleAppender -log4j.appender.stdout.layout=org.apache.log4j.PatternLayout -log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n - -# File appender -log4j.appender.out=org.apache.log4j.FileAppender -log4j.appender.out.layout=org.apache.log4j.PatternLayout -log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n -log4j.appender.out.file=target/camel-exec-test.log -log4j.appender.out.append=true - +## --------------------------------------------------------------------------- +## 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. +## --------------------------------------------------------------------------- + +# +# +# Write console logs only +# +log4j.rootLogger=INFO, out + +#log4j.logger.org.apache.camel.component.exec=DEBUG + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n + +# File appender +log4j.appender.out=org.apache.log4j.FileAppender +log4j.appender.out.layout=org.apache.log4j.PatternLayout +log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n +log4j.appender.out.file=target/camel-exec-test.log +log4j.appender.out.append=true + Propchange: camel/trunk/components/camel-exec/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-exec/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecEndpointTest-context.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecEndpointTest-context.xml?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecEndpointTest-context.xml (original) +++ camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecEndpointTest-context.xml Fri Dec 2 17:03:07 2011 @@ -1,35 +1,35 @@ - - - - - - - - - - + + + + + + + + + + Propchange: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecEndpointTest-context.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecEndpointTest-context.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecScriptTest-context.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecScriptTest-context.xml?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecScriptTest-context.xml (original) +++ camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecScriptTest-context.xml Fri Dec 2 17:03:07 2011 @@ -1,31 +1,31 @@ - - - - - - - - - - - + + + + + + + + + + + Propchange: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecScriptTest-context.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/ExecScriptTest-context.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/exec-mock-executor-context.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/exec-mock-executor-context.xml?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/exec-mock-executor-context.xml (original) +++ camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/exec-mock-executor-context.xml Fri Dec 2 17:03:07 2011 @@ -1,35 +1,35 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + Propchange: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/exec-mock-executor-context.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-exec/src/test/resources/org/apache/camel/component/exec/exec-mock-executor-context.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-flatpack/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,9 +1,13 @@ -.checkstyle .pmd +.checkstyle +.ruleset target -eclipse-classes +.settings .classpath .project -.settings -res -*.i?? +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log +eclipse-classes Propchange: camel/trunk/components/camel-flatpack/src/test/data/charset/INVENTORY-Charset.txt ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-flatpack/src/test/java/org/apache/camel/component/flatpack/CharsetTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-flatpack/src/test/resources/org/apache/camel/component/flatpack/CharsetTest-context.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-flatpack/src/test/resources/org/apache/camel/component/flatpack/CharsetTest-context.xml ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Dec 2 17:03:07 2011 @@ -1 +1 @@ -text/plain +text/xml Propchange: camel/trunk/components/camel-freemarker/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,9 +1,13 @@ -.project -.checkstyle .pmd -.classpath +.checkstyle +.ruleset target .settings -eclipse-classes +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources velocity.log -*.i?? +eclipse-classes Propchange: camel/trunk/components/camel-freemarker/src/test/java/org/apache/camel/component/freemarker/FreemarkerValuesInPropertiesTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,9 +1,13 @@ -.checkstyle .pmd +.checkstyle +.ruleset target -eclipse-classes +.settings .classpath .project -.settings -res -*.i?? +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log +eclipse-classes Propchange: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/strategy/FtpChangedExclusiveReadLockStrategy.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/strategy/FtpProcessStrategyFactory.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/strategy/SftpChangedExclusiveReadLockStrategy.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/strategy/SftpProcessStrategyFactory.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/strategy/package.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/strategy/package.html ------------------------------------------------------------------------------ svn:mime-type = text/html Propchange: camel/trunk/components/camel-ftp/src/test/data/ftpbinarytest/logo.jpeg ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Dec 2 17:03:07 2011 @@ -1 +1 @@ -application/octet-stream +image/jpeg Propchange: camel/trunk/components/camel-ftp/src/test/data/ftpbinarytest/logo1.jpeg ------------------------------------------------------------------------------ --- svn:mime-type (original) +++ svn:mime-type Fri Dec 2 17:03:07 2011 @@ -1 +1 @@ -application/octet-stream +image/jpeg Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/BaseServerTestSupport.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FileToFtpTempFileNameTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FromFtpAsyncProcessTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FromFtpPreMoveDeleteNotStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FromFtpPreMoveDeleteTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpChangedReadLockTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpChangedReadLockTimeoutTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpConsumerDoneFileNameFixedStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpConsumerDualDoneFileNameTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpPollingConsumerTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerDoneFileNameTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerFileExistOverrideNotEagerDeleteTargetFileTwoUploadTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerFileWithPathNoStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerFileWithPathPathSeparatorAutoNoStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerFileWithPathPathSeparatorUnixNoStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerFileWithPathPathSeparatorWindowsNoStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerMultipleSiteCommandTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpProducerRecipientListTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpRecursiveDepth2Test.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpRecursiveDepth3Test.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/FtpSimpleConsumeAbsoluteTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerCamelManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(1); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost/one/two?username=camel&password=camel&noop=true") - .to("file:target/ftptest") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerCamelManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(1); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost/one/two?username=camel&password=camel&noop=true") + .to("file:target/ftptest") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerCamelRecursiveManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(3); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true") - .to("file:target/ftptest") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerCamelRecursiveManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(3); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true") + .to("file:target/ftptest") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveToAbsoluteManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveToAbsoluteManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveToAbsoluteManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveToAbsoluteManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerCamelRecursiveToAbsoluteManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(3); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true") - .to("file:E:/temp/sample/file2ftp") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerCamelRecursiveToAbsoluteManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(3); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true") + .to("file:E:/temp/sample/file2ftp") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerCamelRecursiveToAbsoluteManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerNotStepwiseCamelManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(1); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost/one/two?username=camel&password=camel&noop=true&stepwise=false") - .to("file:target/ftptest") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerNotStepwiseCamelManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(1); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost/one/two?username=camel&password=camel&noop=true&stepwise=false") + .to("file:target/ftptest") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerNotStepwiseCamelRecursiveManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(3); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true&stepwise=false") - .to("file:target/ftptest") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerNotStepwiseCamelRecursiveManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(3); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true&stepwise=false") + .to("file:target/ftptest") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(3); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true&stepwise=false") - .to("file:E:/temp/sample/file2ftp") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(3); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost/one/two?username=camel&password=camel&recursive=true&noop=true&stepwise=false") + .to("file:E:/temp/sample/file2ftp") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerNotStepwiseCamelRecursiveToAbsoluteManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerScottManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(1); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost?username=scott&password=tiger&noop=true") - .to("file:target/ftptest") - .to("mock:result"); - } - }; - } -} +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerScottManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(1); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost?username=scott&password=tiger&noop=true") + .to("file:target/ftptest") + .to("mock:result"); + } + }; + } +} Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Modified: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottRecursiveManualTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottRecursiveManualTest.java?rev=1209585&r1=1209584&r2=1209585&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottRecursiveManualTest.java (original) +++ camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottRecursiveManualTest.java Fri Dec 2 17:03:07 2011 @@ -1,50 +1,50 @@ -/** - * 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.manual; - -import org.apache.camel.builder.RouteBuilder; -import org.apache.camel.test.junit4.CamelTestSupport; -import org.junit.Ignore; -import org.junit.Test; - -@Ignore("Run this test manually") -public class FtpConsumerScottRecursiveManualTest extends CamelTestSupport { - - @Override - public void setUp() throws Exception { - deleteDirectory("target/ftptest"); - super.setUp(); - } - - @Test - public void testFtpConsumerManual() throws Exception { - getMockEndpoint("mock:result").expectedMessageCount(2); - assertMockEndpointsSatisfied(); - } - - @Override - protected RouteBuilder createRouteBuilder() throws Exception { - return new RouteBuilder() { - @Override - public void configure() throws Exception { - from("ftp:localhost?username=scott&password=tiger&noop=true&recursive=true") - .to("file:target/ftptest") - .to("mock:result"); - } - }; - } +/** + * 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.manual; + +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.test.junit4.CamelTestSupport; +import org.junit.Ignore; +import org.junit.Test; + +@Ignore("Run this test manually") +public class FtpConsumerScottRecursiveManualTest extends CamelTestSupport { + + @Override + public void setUp() throws Exception { + deleteDirectory("target/ftptest"); + super.setUp(); + } + + @Test + public void testFtpConsumerManual() throws Exception { + getMockEndpoint("mock:result").expectedMessageCount(2); + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("ftp:localhost?username=scott&password=tiger&noop=true&recursive=true") + .to("file:target/ftptest") + .to("mock:result"); + } + }; + } } \ No newline at end of file Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/manual/FtpConsumerScottRecursiveManualTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/MyPasswordAuthenticator.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpChmodTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpConsumeTemplateTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpProduceTempFileTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpProducerFileWithPathNoStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpProducerFileWithPathTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpServerTestSupport.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSetCipherTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleConsumeAbsoluteNotStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleConsumeAbsoluteTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleConsumeNotStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleConsumeRecursiveNotStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleConsumeRecursiveTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleConsumeTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceNotStepwiseTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-ftp/src/test/java/org/apache/camel/component/file/remote/sftp/SftpSimpleProduceTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-gae/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,8 +1,13 @@ -.checkstyle .pmd -eclipse-classes +.checkstyle +.ruleset target +.settings .classpath .project -.settings -*.i?? +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log +eclipse-classes Propchange: camel/trunk/components/camel-gae/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-gae/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/auth/context.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/http/context-combined.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/http/context-inbound.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/http/context-outbound.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/http/web-combined.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/http/web-inbound.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/login/context.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/mail/context-outbound.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/task/context-combined.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-gae/src/test/resources/org/apache/camel/component/gae/task/web-combined.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Propchange: camel/trunk/components/camel-groovy/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,8 +1,13 @@ -.project .pmd .checkstyle -.classpath +.ruleset target .settings +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log eclipse-classes -*.i?? Propchange: camel/trunk/components/camel-groovy/src/test/java/org/apache/camel/language/groovy/Animal.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-groovy/src/test/java/org/apache/camel/language/groovy/GroovyListMapTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-guice/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,9 +1,13 @@ -.project -.checkstyle .pmd -.classpath +.checkstyle +.ruleset target .settings +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log eclipse-classes -*.i?? -classes Propchange: camel/trunk/components/camel-hawtdb/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Fri Dec 2 17:03:07 2011 @@ -1,9 +1,13 @@ -.project -.checkstyle .pmd -.classpath +.checkstyle +.ruleset target .settings +.classpath +.project +.wtpmodules +prj.el +.jdee_classpath +.jdee_sources +velocity.log eclipse-classes -*.i?? -classes Propchange: camel/trunk/components/camel-hawtdb/src/main/java/org/apache/camel/component/hawtdb/HawtDBAggregationRepository.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/main/java/org/apache/camel/component/hawtdb/HawtDBFile.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/main/java/org/apache/camel/component/hawtdb/Work.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/main/java/org/apache/camel/component/hawtdb/package.html ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/main/java/org/apache/camel/component/hawtdb/package.html ------------------------------------------------------------------------------ svn:mime-type = text/html Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/BigPayload.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateBufferSizeTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateCompletionIntervalTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateDiscardOnTimeoutTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateForceCompletionHeaderTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateLoadAndRecoverTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/components/camel-hawtdb/src/test/java/org/apache/camel/component/hawtdb/HawtDBAggregateLoadConcurrentTest.java ------------------------------------------------------------------------------ svn:eol-style = native