This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit bf4f3ee93df66ac38f2c2d344482a68079681f03 Author: Guillaume Nodet <[email protected]> AuthorDate: Fri Mar 13 15:34:44 2020 +0100 Add a test for the immutable context --- .../apache/camel/impl/lw/ImmutableContextTest.java | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) diff --git a/core/camel-core/src/test/java/org/apache/camel/impl/lw/ImmutableContextTest.java b/core/camel-core/src/test/java/org/apache/camel/impl/lw/ImmutableContextTest.java new file mode 100644 index 0000000..f4b3082 --- /dev/null +++ b/core/camel-core/src/test/java/org/apache/camel/impl/lw/ImmutableContextTest.java @@ -0,0 +1,82 @@ +/* + * 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.impl.lw; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.builder.RouteBuilder; +import org.junit.Before; +import org.junit.Test; + +public class ImmutableContextTest extends ContextTestSupport { + + @Override + @Before + public void setUp() throws Exception { + setUseImmutableContext(true); + super.setUp(); + } + + @Test + public void testCBRCamel() throws Exception { + getMockEndpoint("mock:other").expectedMessageCount(0); + getMockEndpoint("mock:camel").expectedMessageCount(1); + getMockEndpoint("mock:donkey").expectedMessageCount(0); + + template.sendBody("direct:start", "Camel rules"); + + assertMockEndpointsSatisfied(); + } + + @Test + public void testCBRDonkey() throws Exception { + getMockEndpoint("mock:other").expectedMessageCount(0); + getMockEndpoint("mock:camel").expectedMessageCount(0); + getMockEndpoint("mock:donkey").expectedMessageCount(1); + + template.sendBody("direct:start", "Donkey kong"); + + assertMockEndpointsSatisfied(); + } + + @Test + public void testCBROther() throws Exception { + getMockEndpoint("mock:other").expectedMessageCount(1); + getMockEndpoint("mock:camel").expectedMessageCount(0); + getMockEndpoint("mock:donkey").expectedMessageCount(0); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start") + .choice() + .when(body().contains("Camel")) + .to("mock:camel") + .when(body().contains("Donkey")) + .to("mock:donkey") + .otherwise() + .to("mock:other"); + } + }; + } +}
