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 2009/06/09 07:52:47 UTC

svn commit: r782886 - /camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java

Author: davsclaus
Date: Tue Jun  9 05:52:46 2009
New Revision: 782886

URL: http://svn.apache.org/viewvc?rev=782886&view=rev
Log:
Added unit test based on user forum issue

Added:
    camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java   (with props)

Added: camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java?rev=782886&view=auto
==============================================================================
--- camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java (added)
+++ camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java Tue Jun  9 05:52:46 2009
@@ -0,0 +1,142 @@
+/**
+ * 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.issues;
+
+import java.io.File;
+import javax.jms.ConnectionFactory;
+import javax.xml.xpath.XPath;
+import javax.xml.xpath.XPathConstants;
+import javax.xml.xpath.XPathFactory;
+
+import org.w3c.dom.Document;
+import org.w3c.dom.NodeList;
+
+import org.apache.activemq.ActiveMQConnectionFactory;
+import org.apache.camel.CamelContext;
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+
+import static org.apache.camel.builder.xml.XPathBuilder.xpath;
+import static org.apache.camel.component.jms.JmsComponent.jmsComponentClientAcknowledge;
+import static org.apache.camel.language.simple.SimpleLanguage.simple;
+
+/**
+ * Unit test based on user forum issue.
+ *
+ * @version $Revision$
+ */
+public class JmsTypeConverterIssueTest extends ContextTestSupport {
+
+    protected CamelContext createCamelContext() throws Exception {
+        CamelContext camelContext = super.createCamelContext();
+
+        ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false");
+        camelContext.addComponent("activemq", jmsComponentClientAcknowledge(connectionFactory));
+
+        return camelContext;
+    }
+
+    public void testJmsTypeConverterIssue() throws Exception {
+        String body = "<?xml version=\"1.0\"?><portal agent=\"123\"><id>456</id><name>Cool Portal</name></portal>";
+
+        // create local file
+        deleteDirectory("./target/files");
+        template.sendBodyAndHeader("file://target/files/123", body, Exchange.FILE_NAME, "agent.xml");
+
+        MockEndpoint filter = getMockEndpoint("mock:filterxml");
+        filter.expectedMessageCount(1);
+        filter.message(0).body().isInstanceOf(Document.class);
+
+        getMockEndpoint("mock:portalxml").expectedMessageCount(1);
+        getMockEndpoint("mock:historyxml").expectedMessageCount(1);
+
+        template.sendBody("activemq:queue:inbox", "<?xml version=\"1.0\"?><agent id=\"123\"></agent>");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("activemq:queue:inbox")
+                        .setProperty(Exchange.CHARSET_NAME, constant("UTF-8"))
+                        .setHeader("agentId", xpath("/agent/@id"))
+                        .process(new FixateHeaderValuesProcessor())
+                        .setHeader(Exchange.FILE_NAME, simple("target/files/${in.header.agentId}/agent.xml"))
+                        .process(new ReadLocalFile())
+                        .to("direct:filterxml")
+                        .multicast().to("direct:portalxml", "direct:historyxml");
+
+                from("direct:filterxml")
+                        .process(new FilterProcessor())
+                        .to("mock:filterxml");
+
+                from("direct:portalxml")
+                        .to("mock:portalxml");
+
+                from("direct:historyxml")
+                        .to("mock:historyxml");
+            }
+        };
+    }
+
+    private class FixateHeaderValuesProcessor implements Processor {
+        public void process(Exchange exchange) throws Exception {
+            String id = exchange.getIn().getHeader("agentId", String.class);
+            exchange.getIn().setHeader("agentId", id);
+        }
+    }
+
+    private class ReadLocalFile implements Processor {
+        public void process(Exchange exchange) throws Exception {
+            String filename = exchange.getIn().getHeader(Exchange.FILE_NAME, String.class);
+            exchange.getIn().setBody(new File(filename));
+        }
+    }
+
+    private class FilterProcessor implements Processor {
+        public void process(Exchange exchange) throws Exception {
+            Document document = exchange.getIn().getBody(Document.class);
+            assertNotNull("Should be able to convert to XML Document", document);
+
+            XPathFactory factory = XPathFactory.newInstance();
+            XPath xpath = factory.newXPath();
+
+            String id = exchange.getIn().getHeader("agentId", String.class);
+            String expr = "//portal[/portal/@agent = '" + id + "']";
+
+            NodeList nodes = (NodeList) xpath.compile(expr).evaluate(document, XPathConstants.NODESET);
+            assertNotNull("Should be able to do xpath", nodes);
+            assertEquals(1, nodes.getLength());
+
+            String portalId = nodes.item(0).getFirstChild().getTextContent();
+            String portalName = nodes.item(0).getLastChild().getTextContent();
+
+            assertEquals("456", portalId);
+            assertEquals("Cool Portal", portalName);
+
+            exchange.getIn().setHeader("portalId", portalId);
+            exchange.getIn().setBody(document);
+        }
+    }
+
+}

Propchange: camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/issues/JmsTypeConverterIssueTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date