You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2009/07/21 20:42:09 UTC

svn commit: r796454 - in /camel/trunk/components/camel-velocity/src/test: java/org/apache/camel/component/velocity/VelocityDynamicTemplateTest.java resources/org/apache/camel/component/velocity/letter2.vm

Author: janstey
Date: Tue Jul 21 18:42:09 2009
New Revision: 796454

URL: http://svn.apache.org/viewvc?rev=796454&view=rev
Log:
unit test based on user scenario

Added:
    camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityDynamicTemplateTest.java   (with props)
    camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/letter2.vm   (with props)

Added: camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityDynamicTemplateTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityDynamicTemplateTest.java?rev=796454&view=auto
==============================================================================
--- camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityDynamicTemplateTest.java (added)
+++ camel/trunk/components/camel-velocity/src/test/java/org/apache/camel/component/velocity/VelocityDynamicTemplateTest.java Tue Jul 21 18:42:09 2009
@@ -0,0 +1,88 @@
+/**
+ * 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 org.apache.camel.Exchange;
+import org.apache.camel.Message;
+import org.apache.camel.ProducerTemplate;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+public class VelocityDynamicTemplateTest extends CamelTestSupport {
+
+    private Exchange createLetter() {
+        Exchange exchange = context.getEndpoint("direct:a").createExchange();
+        Message msg = exchange.getIn();
+        msg.setHeader("firstName", "Claus");
+        msg.setHeader("lastName", "Ibsen");
+        msg.setHeader("item", "Camel in Action");
+        msg.setBody("PS: Next beer is on me, James");
+        return exchange;
+    }
+
+    @Test
+    public void testVelocityLetter() throws Exception {
+        MockEndpoint mock = getMockEndpoint("mock:result");
+        mock.expectedMessageCount(1);
+        mock.expectedBodiesReceived("Dear Ibsen, Claus\n\nThanks for the order of Camel in Action.\n\nRegards Camel Riders Bookstore\nPS: Next beer is on me, James");
+
+        template.send("direct:a", createLetter());
+
+        mock.assertIsSatisfied();
+        
+        mock.reset();
+        
+        mock.expectedMessageCount(1);
+        mock.expectedBodiesReceived("Dear Ibsen, Claus\n\nThanks for the order of Camel in Action.\n\nRegards Apache Camel Riders Bookstore\nPS: Next beer is on me, James");
+
+        template.send("direct:a", createLetter());
+
+        mock.assertIsSatisfied();
+    }
+
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() throws Exception {
+                MyBean bean = new MyBean();
+                from("direct:a").bean(bean).to("mock:result");
+            }
+        };
+    }
+    
+    public static class MyBean {
+        ProducerTemplate template;
+        boolean useLetter2;
+        
+        public void sendToNewTemplate(Exchange exchange) {
+            if (template == null) {
+                template = exchange.getContext().createProducerTemplate();
+            }
+            template.send("velocity:" + getNewTemplate(), exchange);
+            useLetter2 = !useLetter2;
+        }
+        
+        private String getNewTemplate() {
+            if (useLetter2) {                
+                return "org/apache/camel/component/velocity/letter2.vm";
+            } else {
+                return "org/apache/camel/component/velocity/letter.vm";
+            }
+        }
+    }
+}

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

Added: camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/letter2.vm
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/letter2.vm?rev=796454&view=auto
==============================================================================
--- camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/letter2.vm (added)
+++ camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/letter2.vm Tue Jul 21 18:42:09 2009
@@ -0,0 +1,22 @@
+## ------------------------------------------------------------------------
+## 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.
+## ------------------------------------------------------------------------
+Dear ${headers.lastName}, ${headers.firstName}
+
+Thanks for the order of ${headers.item}.
+
+Regards Apache Camel Riders Bookstore
+${body}
\ No newline at end of file

Propchange: camel/trunk/components/camel-velocity/src/test/resources/org/apache/camel/component/velocity/letter2.vm
------------------------------------------------------------------------------
    svn:eol-style = native