This is an automated email from the ASF dual-hosted git repository. acosentino 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 aa96707 Added a little test for netty4-http component and dynamic URI aa96707 is described below commit aa96707b29b32be70135c3a252da442d8970e330 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Jun 14 16:32:29 2019 +0200 Added a little test for netty4-http component and dynamic URI --- .../http/NettyRouteSimpleDynamicURITest.java | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyRouteSimpleDynamicURITest.java b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyRouteSimpleDynamicURITest.java new file mode 100644 index 0000000..00d2356 --- /dev/null +++ b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyRouteSimpleDynamicURITest.java @@ -0,0 +1,53 @@ +/* + * 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.netty4.http; + +import org.apache.camel.builder.RouteBuilder; +import org.junit.Test; + +public class NettyRouteSimpleDynamicURITest extends BaseNettyTest { + + @Test + public void testHttpSimple() throws Exception { + getMockEndpoint("mock:input1").expectedBodiesReceived("Hello World"); + getMockEndpoint("mock:input2").expectedBodiesReceived("Hello World"); + + String out = template.requestBody("netty4-http:http://localhost:{{port}}/foo", "Hello World", String.class); + assertEquals("Bye World", out); + + assertMockEndpointsSatisfied(); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + int port2 = getNextPort(); + + @Override + public void configure() throws Exception { + from("netty4-http:http://0.0.0.0:{{port}}/foo") + .to("mock:input1") + .setHeader("id", constant("bar")) + .setHeader("host", constant("localhost")) + .toD("netty4-http:http://${header.host}:" + port2 + "/${header.id}"); + from("netty4-http:http://0.0.0.0:" + port2 + "/bar") + .to("mock:input2") + .transform().constant("Bye World"); + } + }; + } +} \ No newline at end of file