Author: davsclaus
Date: Thu Jul 10 23:48:27 2008
New Revision: 675840

URL: http://svn.apache.org/viewvc?rev=675840&view=rev
Log:
Added more unit test inspired by user forum

Added:
    
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java
   (with props)
    
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanWithHeaderTest.java
   (with props)

Added: 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java?rev=675840&view=auto
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java
 (added)
+++ 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java
 Thu Jul 10 23:48:27 2008
@@ -0,0 +1,65 @@
+/**
+ * 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.bean;
+
+import javax.naming.Context;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.util.jndi.JndiContext;
+
+/**
+ * Unit test to demonstrate beans in pipelines.
+ */
+public class BeanInPipelineTest extends ContextTestSupport {
+
+    public void testBeanInPipeline() throws Exception {
+        Object response = template.requestBody("direct:start", "Start:");
+        assertEquals("Start:onetwothree", response);
+    }
+
+    protected Context createJndiContext() throws Exception {
+        JndiContext answer = new JndiContext();
+        answer.bind("one", new MyBean("one"));
+        answer.bind("two", new MyBean("two"));
+        answer.bind("three", new MyBean("three"));
+        return answer;
+    }
+
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() throws Exception {
+                from("direct:start")
+                    .pipeline("bean:one", "bean:two", "seda:x", "direct:y", 
"bean:three");
+            }
+        };
+    }
+
+    public static class MyBean {
+
+        private String postfix;
+
+        public MyBean(String postfix) {
+            this.postfix = postfix;
+        }
+
+        public String doSomething(String body) {
+            return body + postfix;
+        }
+    }
+
+}
\ No newline at end of file

Propchange: 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInPipelineTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanWithHeaderTest.java
URL: 
http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanWithHeaderTest.java?rev=675840&view=auto
==============================================================================
--- 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanWithHeaderTest.java
 (added)
+++ 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanWithHeaderTest.java
 Thu Jul 10 23:48:27 2008
@@ -0,0 +1,72 @@
+/**
+ * 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.bean;
+
+import javax.naming.Context;
+
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.Exchange;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.util.jndi.JndiContext;
+
+/**
+ * Unit test to demonstrate the headers can pass through beans.
+ */
+public class BeanWithHeaderTest extends ContextTestSupport {
+
+    public void testBeanWithHeader() throws Exception {
+        MockEndpoint mock = getMockEndpoint("mock:result");
+        mock.expectedBodiesReceived("StartMyBeanMyBean");
+        mock.expectedHeaderReceived("foo", "bar");
+        mock.expectedHeaderReceived("user", "admin");
+
+        template.requestBody("direct:in", "Start");
+
+        mock.assertIsSatisfied();
+    }
+
+    protected Context createJndiContext() throws Exception {
+        JndiContext answer = new JndiContext();
+        answer.bind("myBean", new MyBean());
+        return answer;
+    }
+
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() throws Exception {
+                from("direct:in")
+                    .setHeader("foo", "bar")
+                    .to("bean:myBean")
+                    .to("seda:a");
+
+                from("seda:a")
+                    .to("bean:myBean")
+                    .to("mock:result");
+            }
+        };
+    }
+
+    public static class MyBean {
+        public void doSomething(Exchange exchange) {
+            String body = exchange.getIn().getBody(String.class);
+            exchange.getIn().setHeader("user", "admin");
+            exchange.getIn().setBody(body + "MyBean");
+        }
+    }
+
+}

Propchange: 
activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanWithHeaderTest.java
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to