blob: ef6f5bf634f04c0648420a4300779c23d3f098fe [file] [log] [blame]
/*
* 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.RoutesBuilder;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;
/**
* Resilience using timeout and fallback with Java DSL
*/
public class ResilienceTimeoutWithFallbackTest extends CamelTestSupport {
@Test
public void testFast() throws Exception {
// this calls the fast route and therefore we get a response
Object out = template.requestBody("direct:start", "fast");
assertEquals("LAST CHANGE", out);
}
@Test
public void testSlow() throws Exception {
// this calls the slow route and therefore causes a timeout which triggers the fallback
Object out = template.requestBody("direct:start", "slow");
assertEquals("LAST CHANGE", out);
}
@Override
protected RoutesBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start")
.circuitBreaker()
// enable and use 2 second timeout
.resilience4jConfiguration().timeoutEnabled(true).timeoutDuration(2000).end()
.log("Resilience processing start: ${threadName}")
.toD("direct:${body}")
.log("Resilience processing end: ${threadName}")
.onFallback()
// use fallback if there was an exception or timeout
.log("Resilience fallback start: ${threadName}")
.transform().constant("Fallback response")
.log("Resilience fallback end: ${threadName}")
.end()
.log("After Resilience ${body}")
.transform(simple("A CHANGE"))
.transform(simple("LAST CHANGE"))
.log("End ${body}");
from("direct:fast")
// this is a fast route and takes 1 second to respond
.log("Fast processing start: ${threadName}")
.delay(1000)
.transform().constant("Fast response")
.log("Fast processing end: ${threadName}");
from("direct:slow")
// this is a slow route and takes 3 second to respond
.log("Slow processing start: ${threadName}")
.delay(3000)
.transform().constant("Slow response")
.log("Slow processing end: ${threadName}");
}
};
}
}