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 2018/01/25 10:14:42 UTC

[camel] branch master updated: CAMEL-12184: Add unit test

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 0adaff2  CAMEL-12184: Add unit test
0adaff2 is described below

commit 0adaff25fd0d979c8f6a614ee60df54d60302c83
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Jan 25 10:58:42 2018 +0100

    CAMEL-12184: Add unit test
---
 .../processor/EventNotifierExchangeSentTest.java   | 70 ++++++++++++++++++++++
 .../camel/processor/MySentEventNotifier.java       | 20 ++++---
 2 files changed, 82 insertions(+), 8 deletions(-)

diff --git a/camel-core/src/test/java/org/apache/camel/processor/EventNotifierExchangeSentTest.java b/camel-core/src/test/java/org/apache/camel/processor/EventNotifierExchangeSentTest.java
new file mode 100644
index 0000000..ad37466
--- /dev/null
+++ b/camel-core/src/test/java/org/apache/camel/processor/EventNotifierExchangeSentTest.java
@@ -0,0 +1,70 @@
+/**
+ * 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;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.ContextTestSupport;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.impl.DefaultCamelContext;
+import org.apache.camel.management.event.ExchangeSentEvent;
+import org.junit.Test;
+
+public class EventNotifierExchangeSentTest extends ContextTestSupport {
+
+    private final MySentEventNotifier notifier = new MySentEventNotifier();
+
+    @Override
+    protected CamelContext createCamelContext() throws Exception {
+        DefaultCamelContext context = new DefaultCamelContext();
+        context.getManagementStrategy().addEventNotifier(notifier);
+        return context;
+    }
+
+    @Test
+    public void testExchangeSent() throws Exception {
+        assertEquals(0, notifier.getEvents().size());
+
+        getMockEndpoint("mock:result").expectedMessageCount(1);
+        getMockEndpoint("mock:bar").expectedMessageCount(1);
+
+        template.sendBody("direct:start", "Hello World");
+
+        assertMockEndpointsSatisfied();
+
+        assertEquals(4, notifier.getEvents().size());
+        ExchangeSentEvent e = (ExchangeSentEvent) notifier.getEvents().get(0);
+        assertEquals("mock://bar", e.getEndpoint().getEndpointUri());
+        e = (ExchangeSentEvent) notifier.getEvents().get(1);
+        assertEquals("direct://bar", e.getEndpoint().getEndpointUri());
+        e = (ExchangeSentEvent) notifier.getEvents().get(2);
+        assertEquals("mock://result", e.getEndpoint().getEndpointUri());
+        e = (ExchangeSentEvent) notifier.getEvents().get(3);
+        assertEquals("direct://start", e.getEndpoint().getEndpointUri());
+    }
+
+    @Override
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                from("direct:start").to("direct:bar").to("mock:result");
+
+                from("direct:bar").to("mock:bar");
+            }
+        };
+    }
+}
diff --git a/camel-core/src/test/java/org/apache/camel/processor/MySentEventNotifier.java b/camel-core/src/test/java/org/apache/camel/processor/MySentEventNotifier.java
index 117c104..c50d35d 100644
--- a/camel-core/src/test/java/org/apache/camel/processor/MySentEventNotifier.java
+++ b/camel-core/src/test/java/org/apache/camel/processor/MySentEventNotifier.java
@@ -23,21 +23,17 @@ import java.util.List;
 import org.apache.camel.management.event.ExchangeSentEvent;
 import org.apache.camel.support.EventNotifierSupport;
 
-/**
- * @version 
- */
 public class MySentEventNotifier extends EventNotifierSupport {
 
-    private final List<ExchangeSentEvent> events = new ArrayList<ExchangeSentEvent>();
+    private final List<EventObject> events = new ArrayList<>();
 
-    public List<ExchangeSentEvent> getEvents() {
+    public List<EventObject> getEvents() {
         return events;
     }
 
     public void notify(EventObject event) throws Exception {
         if (event instanceof ExchangeSentEvent) {
-            ExchangeSentEvent sent = (ExchangeSentEvent) event;
-            events.add(sent);
+            events.add(event);
         }
     }
 
@@ -46,4 +42,12 @@ public class MySentEventNotifier extends EventNotifierSupport {
         return event instanceof ExchangeSentEvent;
     }
 
-}
\ No newline at end of file
+    protected void doStart() throws Exception {
+        // noop
+    }
+
+    protected void doStop() throws Exception {
+        // noop
+    }
+
+}

-- 
To stop receiving notification emails like this one, please contact
davsclaus@apache.org.