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 2016/01/11 18:30:24 UTC

camel git commit: Groovy sum example

Repository: camel
Updated Branches:
  refs/heads/master 1b13c3cc6 -> 339ac3c93


Groovy sum example


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/339ac3c9
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/339ac3c9
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/339ac3c9

Branch: refs/heads/master
Commit: 339ac3c93fa89726f04e7a878e3c93228c3378f2
Parents: 1b13c3c
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jan 11 18:28:45 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jan 11 18:29:57 2016 +0100

----------------------------------------------------------------------
 .../processor/groovy/GroovySumFilterTest.java   | 66 ++++++++++++++++++++
 .../apache/camel/processor/groovy/Order.java    | 36 +++++++++++
 .../camel/processor/groovy/groovySumFilter.xml  | 45 +++++++++++++
 3 files changed, 147 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/339ac3c9/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/GroovySumFilterTest.java
----------------------------------------------------------------------
diff --git a/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/GroovySumFilterTest.java b/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/GroovySumFilterTest.java
new file mode 100644
index 0000000..289d27c
--- /dev/null
+++ b/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/GroovySumFilterTest.java
@@ -0,0 +1,66 @@
+/**
+ * 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.processor.groovy;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.camel.test.spring.CamelSpringTestSupport;
+import org.junit.Test;
+import org.springframework.context.support.AbstractApplicationContext;
+import org.springframework.context.support.ClassPathXmlApplicationContext;
+
+/**
+ * @version 
+ */
+public class GroovySumFilterTest extends CamelSpringTestSupport {
+
+    @Override
+    protected AbstractApplicationContext createApplicationContext() {
+        return new ClassPathXmlApplicationContext("org/apache/camel/processor/groovy/groovySumFilter.xml");
+    }
+
+    @Test
+    public void testSendMatchingMessage() throws Exception {
+        getMockEndpoint("mock:high").expectedMessageCount(1);
+        getMockEndpoint("mock:low").expectedMessageCount(0);
+
+        List orders = new ArrayList();
+        orders.add(new Order("Camel in Action", 50));
+        orders.add(new Order("ActiveMQ in Action", 40));
+        orders.add(new Order("Spring in Action", 60));
+
+        template.sendBody("direct:start", orders);
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testSendNotMatchingMessage() throws Exception {
+        getMockEndpoint("mock:high").expectedMessageCount(0);
+        getMockEndpoint("mock:low").expectedMessageCount(1);
+
+        List orders = new ArrayList();
+        orders.add(new Order("Camel in Action", 50));
+        orders.add(new Order("ActiveMQ in Action", 40));
+
+        template.sendBody("direct:start", orders);
+
+        assertMockEndpointsSatisfied();
+    }
+
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/camel/blob/339ac3c9/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/Order.java
----------------------------------------------------------------------
diff --git a/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/Order.java b/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/Order.java
new file mode 100644
index 0000000..ce73283
--- /dev/null
+++ b/components/camel-groovy/src/test/java/org/apache/camel/processor/groovy/Order.java
@@ -0,0 +1,36 @@
+/**
+ * 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.processor.groovy;
+
+public class Order {
+
+    private String item;
+    private int amount;
+
+    public Order(String item, int amount) {
+        this.item = item;
+        this.amount = amount;
+    }
+
+    public String getItem() {
+        return item;
+    }
+
+    public int getAmount() {
+        return amount;
+    }
+}

http://git-wip-us.apache.org/repos/asf/camel/blob/339ac3c9/components/camel-groovy/src/test/resources/org/apache/camel/processor/groovy/groovySumFilter.xml
----------------------------------------------------------------------
diff --git a/components/camel-groovy/src/test/resources/org/apache/camel/processor/groovy/groovySumFilter.xml b/components/camel-groovy/src/test/resources/org/apache/camel/processor/groovy/groovySumFilter.xml
new file mode 100644
index 0000000..5163925
--- /dev/null
+++ b/components/camel-groovy/src/test/resources/org/apache/camel/processor/groovy/groovySumFilter.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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.
+-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
+       http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
+    ">
+
+  <!-- START SNIPPET: example -->
+  <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
+    <route>
+      <from uri="direct:start"/>
+      <choice>
+        <when>
+          <groovy>
+            int total = body.amount.sum()
+            total > 100
+          </groovy>
+          <to uri="mock:high"/>
+        </when>
+        <otherwise>
+          <to uri="mock:low"/>
+        </otherwise>
+      </choice>
+    </route>
+  </camelContext>
+  <!-- END SNIPPET: example -->
+
+</beans>