Return-Path: Delivered-To: apmail-camel-commits-archive@www.apache.org Received: (qmail 38673 invoked from network); 8 Aug 2009 18:24:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 8 Aug 2009 18:24:57 -0000 Received: (qmail 74864 invoked by uid 500); 8 Aug 2009 18:25:04 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 74816 invoked by uid 500); 8 Aug 2009 18:25:04 -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 74806 invoked by uid 99); 8 Aug 2009 18:25:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Aug 2009 18:25:04 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Sat, 08 Aug 2009 18:25:02 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 13F0023888C5; Sat, 8 Aug 2009 18:24:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r802429 - in /camel/branches/camel-1.x/examples/camel-example-etl/src/test: ./ java/ java/org/ java/org/apache/ java/org/apache/camel/ java/org/apache/camel/example/ java/org/apache/camel/example/etl/ resources/ Date: Sat, 08 Aug 2009 18:24:41 -0000 To: commits@camel.apache.org From: hadrian@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090808182442.13F0023888C5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hadrian Date: Sat Aug 8 18:24:41 2009 New Revision: 802429 URL: http://svn.apache.org/viewvc?rev=802429&view=rev Log: CAMEL-1894. Add unit test for camel-example-etl Added: camel/branches/camel-1.x/examples/camel-example-etl/src/test/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java (with props) camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/ camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties (with props) Added: camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java?rev=802429&view=auto ============================================================================== --- camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java (added) +++ camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java Sat Aug 8 18:24:41 2009 @@ -0,0 +1,31 @@ +/** + * 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.example.etl; + +import junit.framework.TestCase; +import org.apache.camel.spring.Main; + +/** + * @version $Revision$ + */ +public class IntegrationTest extends TestCase { + + public void testEtlRoutes() throws Exception { + // let's boot up the Spring application context for 2 seconds to check that it works OK + Main.main("-duration", "2s", "-o", "target/site/cameldoc"); + } +} Propchange: camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/branches/camel-1.x/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Added: camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties?rev=802429&view=auto ============================================================================== --- camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties (added) +++ camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties Sat Aug 8 18:24:41 2009 @@ -0,0 +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. +## ------------------------------------------------------------------------ + +# +# The logging properties used for eclipse testing, We want to see INFO output on the console. +# +log4j.rootLogger=WARN, file + +# uncomment the next line to debug Camel +#log4j.logger.org.apache.camel=DEBUG + +# CONSOLE appender not used by default +log4j.appender.out=org.apache.log4j.ConsoleAppender +log4j.appender.out.layout=org.apache.log4j.PatternLayout +log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n + +# File appender +log4j.appender.file=org.apache.log4j.FileAppender +log4j.appender.file.layout=org.apache.log4j.PatternLayout +log4j.appender.file.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n +log4j.appender.file.file=target/camel-example-axis.log +log4j.appender.file.append=true Propchange: camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: camel/branches/camel-1.x/examples/camel-example-etl/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:mime-type = text/plain