You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2019/05/22 07:29:00 UTC

[jira] [Resolved] (CAMEL-13540) isUseAdviceWith causes test to hang

     [ https://issues.apache.org/jira/browse/CAMEL-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-13540.
---------------------------------
    Resolution: Fixed

> isUseAdviceWith causes test to hang
> -----------------------------------
>
>                 Key: CAMEL-13540
>                 URL: https://issues.apache.org/jira/browse/CAMEL-13540
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-test
>    Affects Versions: 2.24.0
>            Reporter: Kamil
>            Assignee: Claus Ibsen
>            Priority: Minor
>             Fix For: 3.0.0, 3.0.0-M3
>
>
> 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)