[
https://issues.apache.org/jira/browse/CAMEL-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16845485#comment-16845485
]
Claus Ibsen commented on CAMEL-13540:
-------------------------------------
Okay the direct component will eventually time out.
> isUseAdviceWith causes test to hang
> -----------------------------------
>
> Key: CAMEL-13540
> URL: https://issues.apache.org/jira/browse/CAMEL-13540
> Project: Camel
> Issue Type: Bug
> Components: camel-test
> Affects Versions: 2.24.0
> Reporter: Kamil
> Priority: Major
>
> Having this test:
> {code:java}
> import org.apache.camel.CamelContext;
> import org.apache.camel.RoutesBuilder;
> import org.apache.camel.builder.AdviceWithRouteBuilder;
> import org.apache.camel.builder.RouteBuilder;
> import org.apache.camel.component.mock.MockEndpoint;
> import org.apache.camel.test.junit4.CamelTestSupport;
> import org.junit.Test;
> public class MyRouteTest extends CamelTestSupport {
> private static final String ROUTE_ID = "mytest";
> @Override
> public RoutesBuilder createRouteBuilder() throws Exception {
> return new RouteBuilder() {
> @Override
> public void configure() throws Exception {
> from("direct:mytest")
> .id(ROUTE_ID)
> .to("stream:out");
> }
> };
> }
> @Override
> public void setUp() throws Exception {
> super.setUp();
> final CamelContext camelContext = context();
> camelContext.getRouteDefinition(ROUTE_ID)
> .adviceWith(camelContext, new AdviceWithRouteBuilder() {
> @Override
> public void configure() throws Exception {
> weaveAddLast().to("mock:extract");
> }
> });
> }
> @Override
> public boolean isUseAdviceWith() {
> return true; // <- here is the problem
> }
> @Test
> public void shouldFire() throws InterruptedException {
> // given
> final MockEndpoint myMock = getMockEndpoint("mock:extract");
> myMock.expectedMessageCount(1);
> myMock.expectedBodiesReceived("test");
> // when
> template.sendBody("direct:mytest", "test");
> // then
> myMock.assertIsSatisfied();
> }
> }
> {code}
> Causes Camel to hang
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)