This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 5df9edd Added test based on user forum issue 5df9edd is described below commit 5df9edd329a8984dbca264e8fb449df334135eeb Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Oct 9 12:07:59 2019 +0200 Added test based on user forum issue --- .../apache/camel/component/stub/StubAwsTest.java | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/core/camel-core/src/test/java/org/apache/camel/component/stub/StubAwsTest.java b/core/camel-core/src/test/java/org/apache/camel/component/stub/StubAwsTest.java new file mode 100644 index 0000000..3d52aa3 --- /dev/null +++ b/core/camel-core/src/test/java/org/apache/camel/component/stub/StubAwsTest.java @@ -0,0 +1,52 @@ +/* + * 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.stub; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.builder.RouteBuilder; +import org.junit.Test; + +public class StubAwsTest extends ContextTestSupport { + + @Override + public boolean isUseRouteBuilder() { + return false; + } + + @Test + public void testStub() throws Exception { + context.addRoutes(new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:start").to("aws-s3:foo").to("mock:result"); + } + }); + + // replace aws-s3 with stub + context.addComponent("aws-s3", context.getComponent("stub")); + + // start camel + context.start(); + + getMockEndpoint("mock:result").setExpectedMessageCount(1); + + template.sendBody("direct:start", "Hello World"); + + assertMockEndpointsSatisfied(); + } + +}