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 2017/11/01 10:49:01 UTC

[camel] branch master updated: CAMEL-10241: Added 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 157d6d0  CAMEL-10241: Added unit test
157d6d0 is described below

commit 157d6d057a2100eb5502f019f94c12ba5847ffec
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Nov 1 11:48:54 2017 +0100

    CAMEL-10241: Added unit test
---
 .../MockEndpointsAndSkipDirtiesContextTest.java    | 83 ++++++++++++++++++++++
 1 file changed, 83 insertions(+)

diff --git a/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/mockendpoints/MockEndpointsAndSkipDirtiesContextTest.java b/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/mockendpoints/MockEndpointsAndSkipDirtiesContextTest.java
new file mode 100644
index 0000000..68b6e65
--- /dev/null
+++ b/components/camel-spring-boot/src/test/java/org/apache/camel/spring/boot/mockendpoints/MockEndpointsAndSkipDirtiesContextTest.java
@@ -0,0 +1,83 @@
+/**
+ * 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.spring.boot.mockendpoints;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.EndpointInject;
+import org.apache.camel.Produce;
+import org.apache.camel.ProducerTemplate;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.spring.SpringRouteBuilder;
+import org.apache.camel.test.spring.CamelSpringBootRunner;
+import org.apache.camel.test.spring.MockEndpointsAndSkip;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.test.annotation.DirtiesContext;
+
+@RunWith(CamelSpringBootRunner.class)
+@MockEndpointsAndSkip("direct:b")
+@SpringBootApplication
+@SpringBootTest(classes = MockEndpointsAndSkipDirtiesContextTest.class)
+@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
+public class MockEndpointsAndSkipDirtiesContextTest {
+
+    @Produce(uri = "direct:a")
+    private ProducerTemplate producer;
+
+    @EndpointInject(uri = "mock:end")
+    private MockEndpoint end;
+
+    @EndpointInject(uri = "mock:direct:b")
+    private MockEndpoint directB;
+
+    @Autowired
+    private CamelContext context;
+
+    @Configuration
+    public static class Config extends SpringRouteBuilder {
+
+        @Override
+        public void configure() throws Exception {
+            from("direct:a").to("direct:b");
+            from("direct:b").to("mock:end");
+        }
+    }
+
+    @Test
+    public void testMock() throws InterruptedException {
+        end.expectedMessageCount(0);
+        directB.expectedBodiesReceived("hello");
+
+        producer.sendBody("hello");
+
+        MockEndpoint.assertIsSatisfied(context);
+    }
+
+    @Test
+    public void testMock2() throws InterruptedException {
+        end.expectedMessageCount(0);
+        directB.expectedBodiesReceived("bye");
+
+        producer.sendBody("bye");
+
+        MockEndpoint.assertIsSatisfied(context);
+    }
+}

-- 
To stop receiving notification emails like this one, please contact
['"commits@camel.apache.org" <co...@camel.apache.org>'].