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 74c05f3c0dc [camel-resilience4j] Increase test coverage making a
context pooled (#8799)
74c05f3c0dc is described below
commit 74c05f3c0dc2f5b71413d555562ab84eda90b15e
Author: Juri Solovjov <[email protected]>
AuthorDate: Wed Nov 30 19:09:32 2022 +0100
[camel-resilience4j] Increase test coverage making a context pooled (#8799)
---
.../resilience4j/ResiliencePooledRouteOkTest.java | 95 ++++++++++++++++++++++
1 file changed, 95 insertions(+)
diff --git
a/components/camel-resilience4j/src/test/java/org/apache/camel/component/resilience4j/ResiliencePooledRouteOkTest.java
b/components/camel-resilience4j/src/test/java/org/apache/camel/component/resilience4j/ResiliencePooledRouteOkTest.java
new file mode 100644
index 00000000000..495faef464a
--- /dev/null
+++
b/components/camel-resilience4j/src/test/java/org/apache/camel/component/resilience4j/ResiliencePooledRouteOkTest.java
@@ -0,0 +1,95 @@
+/*
+ * 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.resilience4j;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.ExtendedCamelContext;
+import org.apache.camel.LoggingLevel;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.impl.engine.PooledExchangeFactory;
+import org.apache.camel.spi.BeanIntrospection;
+import org.apache.camel.spi.CircuitBreakerConstants;
+import org.apache.camel.test.junit5.CamelTestSupport;
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public class ResiliencePooledRouteOkTest extends CamelTestSupport {
+
+ private BeanIntrospection bi;
+
+ @Override
+ protected boolean useJmx() {
+ return false;
+ }
+
+ @Override
+ protected CamelContext createCamelContext() throws Exception {
+ CamelContext context = super.createCamelContext();
+ context.adapt(ExtendedCamelContext.class).setExchangeFactory(new
PooledExchangeFactory());
+
+ bi = context.adapt(ExtendedCamelContext.class).getBeanIntrospection();
+ bi.setLoggingLevel(LoggingLevel.INFO);
+ bi.resetCounters();
+
+ return context;
+ }
+
+ @Test
+ public void testResilience() throws Exception {
+ test("direct:start");
+ }
+
+ @Test
+ public void testResilienceWithTimeOut() throws Exception {
+ test("direct:start.with.timeout.enabled");
+ }
+
+ private void test(String endPointUri) throws Exception {
+ assertEquals(0, bi.getInvokedCounter());
+
+ getMockEndpoint("mock:result").expectedBodiesReceived("Bye World");
+
getMockEndpoint("mock:result").expectedPropertyReceived(CircuitBreakerConstants.RESPONSE_SUCCESSFUL_EXECUTION,
true);
+
getMockEndpoint("mock:result").expectedPropertyReceived(CircuitBreakerConstants.RESPONSE_FROM_FALLBACK,
false);
+
+ template.sendBody(endPointUri, "Hello World");
+
+ MockEndpoint.assertIsSatisfied(context);
+
+ assertEquals(0, bi.getInvokedCounter());
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() {
+ return new RouteBuilder() {
+ @Override
+ public void configure() {
+
from("direct:start").circuitBreaker().to("direct:foo").to("log:foo").onFallback().transform()
+ .constant("Fallback
message").end().to("log:result").to("mock:result");
+
+
from("direct:start.with.timeout.enabled").circuitBreaker().resilience4jConfiguration()
+ .timeoutEnabled(true).timeoutDuration(2000).end()
+
.to("direct:foo").to("log:foo").onFallback().transform()
+ .constant("Fallback
message").end().to("log:result").to("mock:result");
+
+ from("direct:foo").transform().constant("Bye World");
+ }
+ };
+ }
+
+}