You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2007/10/11 21:06:10 UTC

svn commit: r583920 - /activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java

Author: jstrachan
Date: Thu Oct 11 12:06:10 2007
New Revision: 583920

URL: http://svn.apache.org/viewvc?rev=583920&view=rev
Log:
attempted to add a test case to reproduce CAMEL-170 but failed

Added:
    activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java   (with props)

Added: activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java?rev=583920&view=auto
==============================================================================
--- activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java (added)
+++ activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java Thu Oct 11 12:06:10 2007
@@ -0,0 +1,56 @@
+/**
+ *
+ * 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.issues;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+
+/**
+ * @version $Revision: 1.1 $
+ */
+public class Issue170Test extends ContextTestSupport {
+    protected String Q1 = "seda:Q1";
+    protected String Q2 = "mock:Q2";
+    protected String Q3 = "mock:Q3";
+
+    public void testSendMessagesGetCorrectCounts() throws Exception {
+        MockEndpoint q2 = getMockEndpoint(Q2);
+        MockEndpoint q3 = getMockEndpoint(Q3);
+
+        String body1 = "<message id='1'/>";
+        String body2 = "<message id='2'/>";
+
+        q2.expectedBodiesReceived(body1, body2);
+        q3.expectedBodiesReceived(body1, body2);
+
+        template.sendBodyAndHeader("direct:start", body1, "counter", 1);
+        template.sendBodyAndHeader("direct:start", body2, "counter", 2);
+
+        assertMockEndpointsSatisifed();
+    }
+
+    protected RouteBuilder createRouteBuilder() {
+        return new RouteBuilder() {
+            public void configure() {
+                from("direct:start").to(Q1);
+                from(Q1).to(Q2, Q3); // write to Q3 but not to Q2
+            }
+        };
+    }
+}
\ No newline at end of file

Propchange: activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/Issue170Test.java
------------------------------------------------------------------------------
    svn:eol-style = native