Author: davsclaus
Date: Fri Oct 28 11:05:39 2011
New Revision: 1190246

URL: http://svn.apache.org/viewvc?rev=1190246&view=rev
Log:
CAMEL-4594: Added tests

Added:
    
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathSplitTest.java
    
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathTest.java

Added: 
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathSplitTest.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathSplitTest.java?rev=1190246&view=auto
==============================================================================
--- 
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathSplitTest.java
 (added)
+++ 
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathSplitTest.java
 Fri Oct 28 11:05:39 2011
@@ -0,0 +1,67 @@
+/**
+ * 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.builder.saxon;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ *
+ */
+public class SaxonXPathSplitTest extends CamelTestSupport {
+
+    @Test
+    @Ignore("This test fails")
+    public void testSaxonXPathSplit() throws Exception {
+        getMockEndpoint("mock:london").expectedMessageCount(1);
+        getMockEndpoint("mock:paris").expectedMessageCount(1);
+        getMockEndpoint("mock:other").expectedMessageCount(1);
+
+        StringBuilder sb = new StringBuilder();
+        sb.append("<persons>");
+        sb.append("<person><city>London</city></person>");
+        sb.append("<person><city>Berlin</city></person>");
+        sb.append("<person><city>Paris</city></person>");
+        sb.append("</persons>");
+
+        template.sendBody("direct:start", sb.toString());
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:start")
+                    .split().xpath("/persons/person")
+                    .choice()
+                        .when().xpath("person/city = 'London'")
+                            .to("mock:london")
+                        .when().xpath("person/city = 'Paris'")
+                            .to("mock:paris")
+                        .otherwise()
+                            .to("mock:other");
+            }
+        };
+    }
+
+
+}

Added: 
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathTest.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathTest.java?rev=1190246&view=auto
==============================================================================
--- 
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathTest.java
 (added)
+++ 
camel/trunk/components/camel-saxon/src/test/java/org/apache/camel/builder/saxon/SaxonXPathTest.java
 Fri Oct 28 11:05:39 2011
@@ -0,0 +1,59 @@
+/**
+ * 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.builder.saxon;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+/**
+ *
+ */
+public class SaxonXPathTest extends CamelTestSupport {
+
+    @Test
+    public void testSaxonXPath() throws Exception {
+        getMockEndpoint("mock:london").expectedMessageCount(1);
+        getMockEndpoint("mock:paris").expectedMessageCount(1);
+        getMockEndpoint("mock:other").expectedMessageCount(1);
+
+        template.sendBody("direct:start", 
"<person><city>London</city></person>");
+        template.sendBody("direct:start", 
"<person><city>Berlin</city></person>");
+        template.sendBody("direct:start", 
"<person><city>Paris</city></person>");
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:start")
+                    .choice()
+                        .when().xpath("person/city = 'London'")
+                            .to("mock:london")
+                        .when().xpath("person/city = 'Paris'")
+                            .to("mock:paris")
+                        .otherwise()
+                            .to("mock:other");
+            }
+        };
+    }
+
+
+}


Reply via email to