Author: davsclaus Date: Fri Apr 23 04:27:55 2010 New Revision: 937148 URL: http://svn.apache.org/viewvc?rev=937148&view=rev Log: CAMEL-2667: Ported unit tests from 2.x to 1.x
Added: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java (with props) camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java (with props) Added: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java?rev=937148&view=auto ============================================================================== --- camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java (added) +++ camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java Fri Apr 23 04:27:55 2010 @@ -0,0 +1,108 @@ +/** + * 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.spi.Policy; +import org.apache.camel.util.ServiceHelper; + +/** + * @version $Revision$ + */ +public class PolicyPerProcessorTest 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:bar").expectedHeaderReceived("bar", "was wrapped"); + getMockEndpoint("mock:result").expectedMessageCount(1); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + + MyPolicy foo = context.getRegistry().lookup("foo", MyPolicy.class); + MyPolicy bar = context.getRegistry().lookup("bar", MyPolicy.class); + + assertEquals("Should only be invoked 1 time", 1, foo.getInvoked()); + assertEquals("Should only be invoked 1 time", 1, bar.getInvoked()); + } + + @Override + protected JndiRegistry createRegistry() throws Exception { + JndiRegistry jndi = super.createRegistry(); + jndi.bind("foo", new MyPolicy("foo")); + jndi.bind("bar", new MyPolicy("bar")); + return jndi; + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + Policy foo = context.getRegistry().lookup("foo", Policy.class); + Policy bar = context.getRegistry().lookup("bar", Policy.class); + + // START SNIPPET: e1 + from("direct:start") + // only wrap policy foo around the to(mock:foo) - notice the end() + .policy(foo).to("mock:foo").end() + // only wrap policy bar around the to(mock:bar) - notice the end() + .policy(bar).to("mock:bar").end() + // and this has no policy + .to("mock:result"); + // END SNIPPET: e1 + } + }; + } + + public static class MyPolicy implements Policy { + + private final String name; + private int invoked; + + public MyPolicy(String name) { + this.name = name; + } + + public Processor wrap(final Processor processor) { + return new Processor() { + public void process(Exchange exchange) throws Exception { + invoked++; + + // ensure its started + ServiceHelper.startService(processor); + + exchange.getIn().setHeader(name, "was wrapped"); + // let the original processor continue routing + processor.process(exchange); + } + }; + } + + public int getInvoked() { + return invoked; + } + } +} Propchange: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerProcessorTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Added: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java?rev=937148&view=auto ============================================================================== --- camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java (added) +++ camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java Fri Apr 23 04:27:55 2010 @@ -0,0 +1,103 @@ +/** + * 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.spi.Policy; +import org.apache.camel.util.ServiceHelper; + +/** + * @version $Revision$ + */ +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"); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + + MyPolicy foo = context.getRegistry().lookup("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 { + Policy foo = context.getRegistry().lookup("foo", Policy.class); + + // 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 + } + }; + } + + public static class MyPolicy implements Policy { + + private final String name; + private int invoked; + + public MyPolicy(String name) { + this.name = name; + } + + public Processor wrap(final Processor processor) { + return new Processor() { + public void process(Exchange exchange) throws Exception { + invoked++; + + // ensure its started + ServiceHelper.startService(processor); + + exchange.getIn().setHeader(name, "was wrapped"); + // let the original processor continue routing + processor.process(exchange); + } + }; + } + + public int getInvoked() { + return invoked; + } + } +} \ No newline at end of file Propchange: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/branches/camel-1.x/camel-core/src/test/java/org/apache/camel/processor/PolicyPerRouteTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date