CAMEL-11235: Added unit test. This closes #1703
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/5f40bbb4 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5f40bbb4 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5f40bbb4 Branch: refs/heads/camel-2.19.x Commit: 5f40bbb4b8a03ea588d70135cf93154c928964af Parents: aef52c3 Author: Claus Ibsen <davscl...@apache.org> Authored: Sat May 20 15:23:51 2017 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sat May 20 15:54:02 2017 +0200 ---------------------------------------------------------------------- ...iguousMethodCallExceptionSimplifiedTest.java | 62 ++++++++++++++++++++ .../MethodNotFoundExceptionSimplifiedTest.java | 58 ++++++++++++++++++ 2 files changed, 120 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/5f40bbb4/camel-core/src/test/java/org/apache/camel/component/bean/AmbiguousMethodCallExceptionSimplifiedTest.java ---------------------------------------------------------------------- diff --git a/camel-core/src/test/java/org/apache/camel/component/bean/AmbiguousMethodCallExceptionSimplifiedTest.java b/camel-core/src/test/java/org/apache/camel/component/bean/AmbiguousMethodCallExceptionSimplifiedTest.java new file mode 100644 index 0000000..ca9d2e4 --- /dev/null +++ b/camel-core/src/test/java/org/apache/camel/component/bean/AmbiguousMethodCallExceptionSimplifiedTest.java @@ -0,0 +1,62 @@ +/** + * 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.component.bean; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.builder.ExchangeBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; + +public class AmbiguousMethodCallExceptionSimplifiedTest extends ContextTestSupport { + + public interface InterfaceSize { + int size(); + } + + public abstract static class AbstractClassSize { + public abstract int size(); + } + + public static class SuperClazz extends AbstractClassSize implements InterfaceSize { + public int size() { + return 1; + } + } + + public static class Clazz extends SuperClazz { + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:in").choice().when(simple("${headers.bean.size} != 0")).to("mock:out"); + } + }; + } + + public void testAmbiguousMethodCallException() throws Exception { + MockEndpoint out = getMockEndpoint("mock:out"); + out.expectedMessageCount(1); + + ExchangeBuilder exchangeBuilder = new ExchangeBuilder(context).withHeader("bean", new Clazz()); + template.send("direct:in", exchangeBuilder.build()); + + out.assertIsSatisfied(); + } +} http://git-wip-us.apache.org/repos/asf/camel/blob/5f40bbb4/camel-core/src/test/java/org/apache/camel/component/bean/MethodNotFoundExceptionSimplifiedTest.java ---------------------------------------------------------------------- diff --git a/camel-core/src/test/java/org/apache/camel/component/bean/MethodNotFoundExceptionSimplifiedTest.java b/camel-core/src/test/java/org/apache/camel/component/bean/MethodNotFoundExceptionSimplifiedTest.java new file mode 100644 index 0000000..ff8b3f9 --- /dev/null +++ b/camel-core/src/test/java/org/apache/camel/component/bean/MethodNotFoundExceptionSimplifiedTest.java @@ -0,0 +1,58 @@ +/** + * 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.component.bean; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.builder.ExchangeBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; + +public class MethodNotFoundExceptionSimplifiedTest extends ContextTestSupport { + + public interface InterfaceEmpty { + boolean isEmpty(); + } + + public static class SuperClazz { + public boolean isEmpty() { + return true; + } + } + + public static class Clazz extends SuperClazz implements InterfaceEmpty { + } + + @Override + protected RouteBuilder createRouteBuilder() { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:in").choice().when(simple("${headers.bean.isEmpty()}")).to("mock:out"); + } + }; + } + + public void testMethodNotFound() throws Exception { + MockEndpoint out = getMockEndpoint("mock:out"); + out.expectedMessageCount(1); + + ExchangeBuilder exchangeBuilder = new ExchangeBuilder(context).withHeader("bean", new Clazz()); + template.send("direct:in", exchangeBuilder.build()); + + out.assertIsSatisfied(); + } +}