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 2013/09/14 12:40:20 UTC

git commit: Added unit test based on user forum issue

Updated Branches:
  refs/heads/master 655746a8e -> 0c1b2c53b


Added unit 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/0c1b2c53
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0c1b2c53
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0c1b2c53

Branch: refs/heads/master
Commit: 0c1b2c53b7ab9479f20b75199bebb21162de46a0
Parents: 655746a
Author: Claus Ibsen <da...@apache.org>
Authored: Sat Sep 14 12:40:05 2013 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Sep 14 12:40:05 2013 +0200

----------------------------------------------------------------------
 .../component/seda/SedaSimpleSizeTest.java      | 52 ++++++++++++++++++++
 1 file changed, 52 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0c1b2c53/camel-core/src/test/java/org/apache/camel/component/seda/SedaSimpleSizeTest.java
----------------------------------------------------------------------
diff --git a/camel-core/src/test/java/org/apache/camel/component/seda/SedaSimpleSizeTest.java b/camel-core/src/test/java/org/apache/camel/component/seda/SedaSimpleSizeTest.java
new file mode 100644
index 0000000..8eb1e07
--- /dev/null
+++ b/camel-core/src/test/java/org/apache/camel/component/seda/SedaSimpleSizeTest.java
@@ -0,0 +1,52 @@
+/**
+ * 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.seda;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+
+public class SedaSimpleSizeTest extends ContextTestSupport {
+
+    public void testSedaSize() throws Exception {
+        getMockEndpoint("mock:result").expectedBodiesReceived("0", "1", "2");
+
+        template.sendBody("direct:start", "");
+        template.sendBody("seda:foo", "A");
+
+        template.sendBody("direct:start", "");
+        template.sendBody("seda:foo", "B");
+
+        template.sendBody("direct:start", "");
+        template.sendBody("seda:foo", "C");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                endpoint("seda:foo");
+
+                from("direct:start")
+                    .setBody().simple("${camelContext.getEndpoint('seda:foo').currentQueueSize}")
+                    .to("mock:result");
+            }
+        };
+    }
+}