This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.18.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit a5ed51837814036eec4b978bd91b4a4b6b325d66 Author: Jeroen Bellen <[email protected]> AuthorDate: Fri Sep 23 09:16:41 2022 +0200 Adds tests to demonstrate bug within the toD optimisation (#8396) Co-authored-by: Jeroen Bellen <[email protected]> --- .../HttpSendDynamicAwareUriWithSpacesTest.java | 91 ++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithSpacesTest.java b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithSpacesTest.java new file mode 100644 index 00000000000..6f8735ab24c --- /dev/null +++ b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithSpacesTest.java @@ -0,0 +1,91 @@ +/* + * 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.http; + +import java.util.Map; + +import org.apache.camel.Endpoint; +import org.apache.camel.Exchange; +import org.apache.camel.RoutesBuilder; +import org.apache.camel.builder.ExchangeBuilder; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.http.handler.BasicValidationHandler; +import org.apache.http.impl.bootstrap.HttpServer; +import org.apache.http.impl.bootstrap.ServerBootstrap; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; + +public class HttpSendDynamicAwareUriWithSpacesTest extends BaseHttpTest { + + private HttpServer localServer; + + @BeforeEach + @Override + public void setUp() throws Exception { + localServer = ServerBootstrap.bootstrap().setHttpProcessor(getBasicHttpProcessor()) + .setConnectionReuseStrategy(getConnectionReuseStrategy()).setResponseFactory(getHttpResponseFactory()) + .setExpectationVerifier(getHttpExpectationVerifier()).setSslContext(getSSLContext()) + .registerHandler("/users/*", new BasicValidationHandler("GET", null, null, "a user")).create(); + localServer.start(); + + super.setUp(); + } + + @AfterEach + @Override + public void tearDown() throws Exception { + super.tearDown(); + + if (localServer != null) { + localServer.stop(); + } + } + + @Override + protected RoutesBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + from("direct:usersDrink") + .toD("http:localhost:" + localServer.getLocalPort() + + "/users/${exchangeProperty.user}"); + } + }; + } + + @Test + public void testDynamicAware() throws Exception { + Exchange out = fluentTemplate.to("direct:usersDrink") + .withExchange(ExchangeBuilder.anExchange(context).withProperty("user", "joes moes").build()).send(); + assertEquals("a user", out.getMessage().getBody(String.class)); + + out = fluentTemplate.to("direct:usersDrink") + .withExchange(ExchangeBuilder.anExchange(context).withProperty("user", "moes joes").build()).send(); + assertEquals("a user", out.getMessage().getBody(String.class)); + + // and there should only be one http endpoint as they are both on same host + Map<String, Endpoint> endpointMap = context.getEndpointMap(); + assertEquals(2, endpointMap.size()); + assertTrue(endpointMap.containsKey("http://localhost:" + localServer.getLocalPort()), "Should find static uri"); + assertTrue(endpointMap.containsKey("direct://usersDrink"), "Should find direct"); + } + +}
