You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2009/05/28 15:36:42 UTC

svn commit: r779601 - in /camel/trunk/components/camel-velocity/src/test: java/org/apache/camel/component/velocity/VelocityConcurrentTest.java resources/org/apache/camel/component/velocity/Concurrent.vm

Author: davsclaus
Date: Thu May 28 13:36:41 2009
New Revision: 779601

URL: http://svn.apache.org/viewvc?rev=779601&view=rev
Log:
Added concurrency test.

Added:
    camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java   (with props)
    camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/Concurrent.vm
      - copied, changed from r779577, camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/AppleTemplate.vm

Added: camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java?rev=779601&view=auto
==============================================================================
--- camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java (added)
+++ camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java Thu May 28 13:36:41 2009
@@ -0,0 +1,68 @@
+/**
+ * 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.velocity;
+
+import java.util.concurrent.Callable;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+
+/**
+ * @version $Revision$
+ */
+public class VelocityConcurrentTest extends ContextTestSupport {
+
+    public void testNoConcurrentProducers() throws Exception {
+        doSendMessages(1, 1);
+    }
+
+    public void testConcurrentProducers() throws Exception {
+        doSendMessages(10, 5);
+    }
+
+    private void doSendMessages(int files, int poolSize) throws Exception {
+        getMockEndpoint("mock:result").expectedMessageCount(files);
+        getMockEndpoint("mock:result").assertNoDuplicates(body());
+        getMockEndpoint("mock:result").message(0).body().contains("Bye");
+
+        ExecutorService executor = Executors.newFixedThreadPool(poolSize);
+        for (int i = 0; i < files; i++) {
+            final int index = i;
+            executor.submit(new Callable<Object>() {
+                public Object call() throws Exception {
+                    template.sendBody("direct:start", "Hello " + index);
+                    return null;
+                }
+            });
+        }
+
+        assertMockEndpointsSatisfied();
+    }
+
+    protected RouteBuilder createRouteBuilder() {
+        return new RouteBuilder() {
+            public void configure() {
+                from("direct:start").
+                        to("velocity:org/apache/camel/component/velocity/Concurrent.vm").
+                        to("mock:result");
+            }
+        };
+    }
+
+}

Propchange: camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityConcurrentTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Copied: camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/Concurrent.vm (from r779577, camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/AppleTemplate.vm)
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/Concurrent.vm?p2=camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/Concurrent.vm&p1=camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/AppleTemplate.vm&r1=779577&r2=779601&rev=779601&view=diff
==============================================================================
--- camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/AppleTemplate.vm (original)
+++ camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/Concurrent.vm Thu May 28 13:36:41 2009
@@ -14,4 +14,4 @@
 ## See the License for the specific language governing permissions and
 ## limitations under the License.
 ## ------------------------------------------------------------------------
-$in.setHeader('fruit', 'apple')I am an $body
\ No newline at end of file
+Bye $body
\ No newline at end of file