Camel Test コンポーネントの利用可能な使用例は、ルートの期待値をテストする方法を示しています。
ただし、私がする必要があるのは、中間ルートの本体をモックする (手動で設定する) ことです。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="exampleBean" class="xxx.ExampleBean"/>
<routeContext id="routesTest" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="direct:route1" />
<to uri="direct:route2" />
<log message="${body}"/>
</route>
<route>
<from uri="direct:route2"/>
<to uri="bean:exampleBean"/>
<to uri="direct:route3" />
</route>
<route>
<from uri="direct:route3"/>
<log message="${body}"/>
</route>
</routeContext>
</beans>
このシナリオでは、bean:exampleBean の実際の実行を完全に回避し、その実行結果をモックしたいと考えています。
私のテストクラス:
public class MyTests extends CamelSpringTestSupport {
@Produce(uri = "direct:route1")
protected ProducerTemplate inputProducerTemplate;
@EndpointInject(uri = "mock:bean:exampleBean")
protected MockEndpoint mockBeanExampleBean;
@Test
public void testRoute() throws Exception {
CompletableFuture<Object> future = inputProducerTemplate.asyncSendBody("direct:route1", "Some message");
Object o = future.get();
}
@Override
public String isMockEndpoints() {
return "bean:exampleBean";
}
@Override
protected AbstractApplicationContext createApplicationContext() {
return new ClassPathXmlApplicationContext("spring/gesti-test-application-context.xml");
}
}
public class ExampleBean {
public String enhance(String message) {
System.out.println(message);
//Here I would call a REST API
return "MY API RESULT";
}
}
これを使用mockBeanExampleBean.whenAnyExchangeReceived(exchange -> exchange.getMessage().setBody("My message"));
すると、exampleBean への入力をオーバーライドできますが、その実行は回避されません。