/** * 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.Exchange; import org.apache.camel.Processor; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.impl.JndiRegistry; import org.apache.camel.model.ProcessorDefinition; import org.apache.camel.spi.Policy; import org.apache.camel.spi.RouteContext; /** * @version */ public class PolicyPerRouteTest extends ContextTestSupport { public void testPolicy() throws Exception { getMockEndpoint("mock:foo").expectedMessageCount(1); getMockEndpoint("mock:foo").expectedHeaderReceived("foo", "was wrapped"); getMockEndpoint("mock:bar").expectedMessageCount(1); getMockEndpoint("mock:bar").expectedHeaderReceived("foo", "was wrapped"); getMockEndpoint("mock:result").expectedMessageCount(1); getMockEndpoint("mock:result").expectedHeaderReceived("foo", "was wrapped"); getMockEndpoint("mock:response").expectedMessageCount(1); getMockEndpoint("mock:response").expectedHeaderReceived("foo", "policy finished execution"); template.sendBody("direct:send", "Hello World"); assertMockEndpointsSatisfied(); MyPolicy foo = context.getRegistry().lookupByNameAndType("foo", MyPolicy.class); assertEquals("Should only be invoked 1 time", 1, foo.getInvoked()); } @Override protected JndiRegistry createRegistry() throws Exception { JndiRegistry jndi = super.createRegistry(); jndi.bind("foo", new MyPolicy("foo")); return jndi; } @Override protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { @Override public void configure() throws Exception { // START SNIPPET: e1 from("direct:start") // wraps the entire route in the same policy .policy("foo") .to("mock:foo") .to("mock:bar") .to("mock:result"); // END SNIPPET: e1 from("direct:send") .to("direct:start") .to("mock:response"); } }; } public static class MyPolicy implements Policy { private final String name; private int invoked; public MyPolicy(String name) { this.name = name; } public void beforeWrap(RouteContext routeContext, ProcessorDefinition<?> definition) { // no need to modify the route } public Processor wrap(RouteContext routeContext, final Processor processor) { return new Processor() { public void process(Exchange exchange) throws Exception { invoked++; // let the original processor continue routing exchange.getIn().setHeader(name, "was wrapped"); processor.process(exchange); exchange.getIn().setHeader(name, "policy finished execution"); } }; } public int getInvoked() { return invoked; } } }