You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/12/10 07:49:02 UTC

[camel] 06/08: CAMEL-12985: Added a test that fails on master

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

acosentino pushed a commit to branch sandbox/camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit d576c0905fbe9611af55786b3fc355b9616ff515
Author: Jess Sightler <je...@gmail.com>
AuthorDate: Fri Dec 7 19:07:18 2018 -0500

    CAMEL-12985: Added a test that fails on master
---
 ...InterceptUsingAdviceWithSendToEndpointTest.java | 93 ++++++++++++++++++++++
 1 file changed, 93 insertions(+)

diff --git a/components/camel-spring/src/test/java/org/apache/camel/spring/interceptor/TransactedInterceptUsingAdviceWithSendToEndpointTest.java b/components/camel-spring/src/test/java/org/apache/camel/spring/interceptor/TransactedInterceptUsingAdviceWithSendToEndpointTest.java
new file mode 100644
index 0000000..39bbf5c
--- /dev/null
+++ b/components/camel-spring/src/test/java/org/apache/camel/spring/interceptor/TransactedInterceptUsingAdviceWithSendToEndpointTest.java
@@ -0,0 +1,93 @@
+/**
+ * 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.interceptor;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.spring.SpringRouteBuilder;
+import org.junit.Test;
+
+/**
+ * Easier transaction configuration as we do not have to setup a transaction error handler
+ */
+public class TransactedInterceptUsingAdviceWithSendToEndpointTest extends TransactionalClientDataSourceTest {
+
+    @Test
+    public void testTransactionSuccess() throws Exception {
+        MockEndpoint intercepted = getMockEndpoint("mock:intercepted");
+        
+        addInterceptor("ok_route");
+        
+        intercepted.expectedBodiesReceived("Hello World");
+
+        super.testTransactionSuccess();
+
+        assertMockEndpointsSatisfied();
+    }
+
+    @Test
+    public void testTransactionRollback() throws Exception {
+        MockEndpoint intercepted = getMockEndpoint("mock:intercepted");
+        
+        addInterceptor("fail_route");
+        
+        intercepted.expectedBodiesReceived("Tiger in Action");
+
+        super.testTransactionRollback();
+
+        assertMockEndpointsSatisfied();
+    }
+    
+    private void addInterceptor(String routeId) throws Exception {
+        context.getRouteDefinition(routeId).adviceWith(context, new SpringRouteBuilder() {
+            @Override
+            public void configure() throws Exception {
+                interceptSendToEndpoint("direct:(foo|bar)")
+                    .to("mock:intercepted");
+            }
+        });
+    }
+
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new SpringRouteBuilder() {
+            public void configure() throws Exception {
+                from("direct:okay")
+                    .routeId("ok_route")
+                    .transacted()
+                    .enrich("direct:foo", (oldExchange, newExchange) -> {
+                        return newExchange;
+                    })
+                    .setBody(constant("Tiger in Action")).bean("bookService")
+                    .setBody(constant("Elephant in Action")).bean("bookService");
+
+                from("direct:fail")
+                    .routeId("fail_route")
+                    .transacted()
+                    .setBody(constant("Tiger in Action")).bean("bookService")
+                    .enrich("direct:bar", (oldExchange, newExchange) -> {
+                        return newExchange;
+                    })
+                    .setBody(constant("Donkey in Action")).bean("bookService");
+
+                from("direct:foo").to("log:okay");
+
+                from("direct:bar").to("mock:fail");
+            }
+        };
+    }
+
+}
\ No newline at end of file