/** * 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 org.apache.camel.ContextTestSupport; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.model.MulticastDefinition; import org.apache.camel.model.PipelineDefinition; import org.apache.camel.model.SendDefinition; /** * @version */ public class DualPipelineTest extends ContextTestSupport { public void testDualPipeline() throws Exception { getMockEndpoint("mock:a").expectedBodiesReceived("Hello World"); getMockEndpoint("mock:b").expectedBodiesReceived("After A"); getMockEndpoint("mock:c").expectedBodiesReceived("Hello World"); getMockEndpoint("mock:d").expectedBodiesReceived("After C"); getMockEndpoint("mock:e").expectedBodiesReceived("After C"); getMockEndpoint("mock:result").expectedMessageCount(1); template.sendBody("direct:start", "Hello World"); assertMockEndpointsSatisfied(); // now check the route MulticastDefinition mc = assertIsInstanceOf(MulticastDefinition.class, context.getRouteDefinitions().get(0).getOutputs().get(0)); PipelineDefinition pd1 = assertIsInstanceOf(PipelineDefinition.class, mc.getOutputs().get(0)); PipelineDefinition pd2 = assertIsInstanceOf(PipelineDefinition.class, mc.getOutputs().get(1)); assertEquals(3, pd1.getOutputs().size()); assertEquals(4, pd2.getOutputs().size()); SendDefinition<?> send1 = assertIsInstanceOf(SendDefinition.class, pd1.getOutputs().get(2)); assertEquals("mock:b", send1.getUri()); SendDefinition<?> send2 = assertIsInstanceOf(SendDefinition.class, pd2.getOutputs().get(3)); assertEquals("mock:e", send2.getUri()); SendDefinition<?> send = assertIsInstanceOf(SendDefinition.class, context.getRouteDefinitions().get(0).getOutputs().get(1)); assertEquals("mock:result", send.getUri()); } @Override protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { @Override public void configure() throws Exception { from("direct:start") .multicast() .pipeline() .to("mock:a") .setBody(constant("After A")) .to("mock:b") .end() //pipeline .pipeline() .to("mock:c") .setBody(constant("After C")) .to("mock:d") .to("mock:e") .end() //pipeline .end()//multicast .to("mock:result"); } }; } }