Repository: camel Updated Branches: refs/heads/master e204a367e -> e091738c8
CAMEL-11749: Added unit test Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e091738c Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e091738c Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e091738c Branch: refs/heads/master Commit: e091738c8deb038aa7fdd775d7c150ca722d50fd Parents: e204a36 Author: Claus Ibsen <[email protected]> Authored: Wed Sep 6 16:11:57 2017 +0200 Committer: Claus Ibsen <[email protected]> Committed: Wed Sep 6 16:11:57 2017 +0200 ---------------------------------------------------------------------- .../processor/WireTapBeanAsProcessorTest.java | 91 ++++++++++++++++++++ 1 file changed, 91 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/e091738c/camel-core/src/test/java/org/apache/camel/processor/WireTapBeanAsProcessorTest.java ---------------------------------------------------------------------- diff --git a/camel-core/src/test/java/org/apache/camel/processor/WireTapBeanAsProcessorTest.java b/camel-core/src/test/java/org/apache/camel/processor/WireTapBeanAsProcessorTest.java new file mode 100644 index 0000000..c54cd21 --- /dev/null +++ b/camel-core/src/test/java/org/apache/camel/processor/WireTapBeanAsProcessorTest.java @@ -0,0 +1,91 @@ +/** + * 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 java.util.concurrent.TimeUnit; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; +import org.apache.camel.impl.JndiRegistry; + +import static org.awaitility.Awaitility.await; + +/** + * Wire tap unit test + * + * @version + */ +public class WireTapBeanAsProcessorTest extends ContextTestSupport { + private MyBean myBean = new MyBean(); + private MockEndpoint result; + + @Override + protected JndiRegistry createRegistry() throws Exception { + JndiRegistry jndi = super.createRegistry(); + jndi.bind("tap", myBean); + return jndi; + } + + public void testBeanAsProcessor() throws Exception { + assertNull(myBean.getTapped()); + + result.expectedBodiesReceived("Bye World"); + + template.sendBody("direct:start", "World"); + + assertMockEndpointsSatisfied(); + + await().atMost(2, TimeUnit.SECONDS).untilAsserted(() -> { + assertEquals("World", myBean.getTapped()); + }); + } + + @Override + protected void setUp() throws Exception { + super.setUp(); + result = getMockEndpoint("mock:result"); + } + + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + public void configure() { + from("direct:start") + .to("log:foo") + .wireTap("bean:tap") + .transform(body().prepend("Bye ")) + .to("mock:result"); + } + }; + } + + public static class MyBean implements Processor { + + private String tapped; + + @Override + public void process(Exchange exchange) throws Exception { + tapped = exchange.getIn().getBody(String.class); + } + + public String getTapped() { + return tapped; + } + } +} \ No newline at end of file
