This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 7851588 Added InOnly and InOut EIP tests 7851588 is described below commit 7851588c830d5d8bc8b32abab14efe61937cb66d Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu May 20 16:47:54 2021 +0200 Added InOnly and InOut EIP tests --- .../camel/component/seda/SedaInOnlyMEPTest.java | 53 ++++++++++++++++++++ .../camel/component/seda/SedaInOutMEPTest.java | 56 ++++++++++++++++++++++ 2 files changed, 109 insertions(+) diff --git a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java new file mode 100644 index 0000000..70041f6 --- /dev/null +++ b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOnlyMEPTest.java @@ -0,0 +1,53 @@ +/* + * 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.component.seda; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.ExchangePattern; +import org.apache.camel.builder.RouteBuilder; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class SedaInOnlyMEPTest extends ContextTestSupport { + + @Test + public void testInOnlyMEP() throws Exception { + getMockEndpoint("mock:foo").expectedBodiesReceived("InOnly Camel"); + getMockEndpoint("mock:result").expectedBodiesReceived("Hello Camel"); + + Object out = template.requestBody("direct:start", "Camel"); + assertEquals("Hello Camel", out); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start") + .to(ExchangePattern.InOnly, "seda:foo") + .setBody(body().prepend("Hello ")) + .to("mock:result"); + + from("seda:foo").setBody(body().prepend("InOnly ")).to("mock:foo"); + } + }; + } +} diff --git a/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java new file mode 100644 index 0000000..8b9b13c --- /dev/null +++ b/core/camel-core/src/test/java/org/apache/camel/component/seda/SedaInOutMEPTest.java @@ -0,0 +1,56 @@ +/* + * 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.component.seda; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.ExchangePattern; +import org.apache.camel.builder.RouteBuilder; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class SedaInOutMEPTest extends ContextTestSupport { + + @Test + public void testInOutMEP() throws Exception { + getMockEndpoint("mock:foo").expectedBodiesReceived("InOut Camel"); + getMockEndpoint("mock:result").expectedBodiesReceived("Hello InOut Camel"); + + // InOut MEP when doing request + Object out = template.requestBody("direct:start", "Camel"); + assertEquals("Hello InOut Camel", out); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start") + // force MEP back to InOnly as we want the next to define the MEP as InOut + .setExchangePattern(ExchangePattern.InOnly) + .to(ExchangePattern.InOut, "seda:foo") + .setBody(body().prepend("Hello ")) + .to("mock:result"); + + from("seda:foo").setBody(body().prepend("InOut ")).to("mock:foo"); + } + }; + } +}