Repository: camel
Updated Branches:
  refs/heads/master 68e1a5431 -> 5eb64737e


Added test based on user forum issue


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/5eb64737
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5eb64737
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5eb64737

Branch: refs/heads/master
Commit: 5eb64737e4a132bc5443e99ded9b86c801854652
Parents: 68e1a54
Author: Claus Ibsen <davscl...@apache.org>
Authored: Fri Dec 2 09:38:13 2016 +0100
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Fri Dec 2 09:40:12 2016 +0100

----------------------------------------------------------------------
 .../apache/camel/component/jms/JmsToDTest.java  | 66 ++++++++++++++++++
 .../apache/camel/component/jms/JmsToTest.java   | 70 ++++++++++++++++++++
 2 files changed, 136 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/5eb64737/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToDTest.java
----------------------------------------------------------------------
diff --git 
a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToDTest.java
 
b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToDTest.java
new file mode 100644
index 0000000..6ce004c
--- /dev/null
+++ 
b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToDTest.java
@@ -0,0 +1,66 @@
+/**
+ * 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.jms;
+
+import javax.jms.ConnectionFactory;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+import static 
org.apache.camel.component.jms.JmsComponent.jmsComponentAutoAcknowledge;
+
+/**
+ * @version 
+ */
+public class JmsToDTest extends CamelTestSupport {
+
+    @Test
+    public void testToD() throws Exception {
+        getMockEndpoint("mock:bar").expectedBodiesReceived("Hello bar");
+        getMockEndpoint("mock:beer").expectedBodiesReceived("Hello beer");
+
+        template.sendBodyAndHeader("direct:start", "Hello bar", "where", 
"bar");
+        template.sendBodyAndHeader("direct:start", "Hello beer", "where", 
"beer");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    protected CamelContext createCamelContext() throws Exception {
+        CamelContext camelContext = super.createCamelContext();
+
+        ConnectionFactory connectionFactory = 
CamelJmsTestHelper.createConnectionFactory();
+        camelContext.addComponent("activemq", 
jmsComponentAutoAcknowledge(connectionFactory));
+
+        return camelContext;
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                // route message dynamic using toD
+                from("direct:start").toD("activemq:queue:${header.where}");
+
+                from("activemq:queue:bar").to("mock:bar");
+                from("activemq:queue:beer").to("mock:beer");
+            }
+        };
+    }
+}

http://git-wip-us.apache.org/repos/asf/camel/blob/5eb64737/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToTest.java
----------------------------------------------------------------------
diff --git 
a/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToTest.java
 
b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToTest.java
new file mode 100644
index 0000000..dbfe541
--- /dev/null
+++ 
b/components/camel-jms/src/test/java/org/apache/camel/component/jms/JmsToTest.java
@@ -0,0 +1,70 @@
+/**
+ * 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.jms;
+
+import javax.jms.ConnectionFactory;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+import static 
org.apache.camel.component.jms.JmsComponent.jmsComponentAutoAcknowledge;
+
+/**
+ * @version 
+ */
+public class JmsToTest extends CamelTestSupport {
+
+    @Test
+    public void testTo() throws Exception {
+        getMockEndpoint("mock:bar").expectedMessageCount(0);
+        getMockEndpoint("mock:beer").expectedMessageCount(0);
+        getMockEndpoint("mock:where").expectedMessageCount(2);
+
+        template.sendBodyAndHeader("direct:start", "Hello bar", "where", 
"bar");
+        template.sendBodyAndHeader("direct:start", "Hello beer", "where", 
"beer");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    protected CamelContext createCamelContext() throws Exception {
+        CamelContext camelContext = super.createCamelContext();
+
+        ConnectionFactory connectionFactory = 
CamelJmsTestHelper.createConnectionFactory();
+        camelContext.addComponent("activemq", 
jmsComponentAutoAcknowledge(connectionFactory));
+
+        return camelContext;
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                // wrongly using to instead of toD
+                from("direct:start").to("activemq:queue:${header.where}");
+
+                from("activemq:queue:bar").to("mock:bar");
+                from("activemq:queue:beer").to("mock:beer");
+
+                // and all the messages goes here
+                from("activemq:queue:${header.where}").to("mock:where");
+            }
+        };
+    }
+}

Reply via email to