You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2009/08/08 20:09:34 UTC

svn commit: r802428 - in /camel/trunk/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/

Author: hadrian
Date: Sat Aug  8 18:09:33 2009
New Revision: 802428

URL: http://svn.apache.org/viewvc?rev=802428&view=rev
Log:
CAMEL-1894. Add unit test for camel-example-etl

Added:
    camel/trunk/examples/camel-example-etl/src/test/
    camel/trunk/examples/camel-example-etl/src/test/java/
    camel/trunk/examples/camel-example-etl/src/test/java/org/
    camel/trunk/examples/camel-example-etl/src/test/java/org/apache/
    camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/
    camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/
    camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/
    camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java   (with props)
    camel/trunk/examples/camel-example-etl/src/test/resources/
    camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties   (with props)

Added: camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java?rev=802428&view=auto
==============================================================================
--- camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java (added)
+++ camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java Sat Aug  8 18:09:33 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/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/examples/camel-example-etl/src/test/java/org/apache/camel/example/etl/IntegrationTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties?rev=802428&view=auto
==============================================================================
--- camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties (added)
+++ camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties Sat Aug  8 18:09:33 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/trunk/examples/camel-example-etl/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: camel/trunk/examples/camel-example-etl/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain