This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new c1e465cb CAMEL-16688: Added unit test
c1e465cb is described below
commit c1e465cb2c41ab448db11d52bc8b80fbde38bcc1
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Jun 24 15:38:22 2021 +0200
CAMEL-16688: Added unit test
---
.../component/http/HttpProducerRestartTest.java | 94 ++++++++++++++++++++++
1 file changed, 94 insertions(+)
diff --git
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerRestartTest.java
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerRestartTest.java
new file mode 100644
index 0000000..f2c4da4
--- /dev/null
+++
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpProducerRestartTest.java
@@ -0,0 +1,94 @@
+/*
+ * 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 org.apache.camel.builder.RouteBuilder;
+import org.apache.http.HttpStatus;
+import org.apache.http.entity.StringEntity;
+import org.apache.http.impl.bootstrap.HttpServer;
+import org.apache.http.impl.bootstrap.ServerBootstrap;
+import org.apache.http.impl.client.HttpClientBuilder;
+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;
+
+public class HttpProducerRestartTest extends BaseHttpTest {
+
+ private HttpServer localServer;
+
+ private String endpointUrl;
+
+ @BeforeEach
+ @Override
+ public void setUp() throws Exception {
+ super.setUp();
+
+ localServer =
ServerBootstrap.bootstrap().setHttpProcessor(getBasicHttpProcessor())
+
.setConnectionReuseStrategy(getConnectionReuseStrategy()).setResponseFactory(getHttpResponseFactory())
+
.setExpectationVerifier(getHttpExpectationVerifier()).setSslContext(getSSLContext())
+ .registerHandler("/hello", (request, response, context) -> {
+ Object agent =
request.getFirstHeader("User-Agent").getValue();
+ assertEquals("MyAgent", agent);
+
+ response.setEntity(new StringEntity("Bye World", "ASCII"));
+ response.setStatusCode(HttpStatus.SC_OK);
+ }).create();
+ localServer.start();
+
+ endpointUrl = "http://" + localServer.getInetAddress().getHostName() +
":" + localServer.getLocalPort();
+ }
+
+ @AfterEach
+ @Override
+ public void tearDown() throws Exception {
+ super.tearDown();
+
+ if (localServer != null) {
+ localServer.stop();
+ }
+ }
+
+ @Test
+ public void testRestart() throws Exception {
+ HttpClientBuilder hcb = HttpClientBuilder.create();
+ hcb.setUserAgent("MyAgent");
+ context.getRegistry().bind("myClientBuilder", hcb);
+
+ context.addRoutes(new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ from("direct:start").routeId("foo")
+ .to(endpointUrl +
"/hello?clientBuilder=#myClientBuilder");
+ }
+ });
+
+ Object out = template.requestBody("direct:start", "Hello World",
String.class);
+ assertEquals("Bye World", out);
+
+ context.getRouteController().stopRoute("foo");
+
+ // a little delay before starting again
+ Thread.sleep(1000);
+
+ context.getRouteController().startRoute("foo");
+ out = template.requestBody("direct:start", "Hello World",
String.class);
+ assertEquals("Bye World", out);
+ }
+
+}