Minh Tran created CAMEL-9332:
--------------------------------

             Summary: Support @MockEndpoint and @MockEndpointAndSkip in Spring 
Boot
                 Key: CAMEL-9332
                 URL: https://issues.apache.org/jira/browse/CAMEL-9332
             Project: Camel
          Issue Type: Improvement
          Components: camel-spring-boot, camel-test
    Affects Versions: 2.16.0
         Environment: mac, jdk7
            Reporter: Minh Tran


My route looks like

from(“direct:start”).to(“direct:end”)

My unit test looks like

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Config.class)
@MockEndpoints
public class MyUnitTest {

 @Produce(uri=“direct:start”)
 private ProducerTemplate producer;

 @EndpointInject(uri=“mock:direct:end”)
 private MockEndpoint end;

        @Test
        public void testMock() throws InterruptedException {
                end.expectedBodiesReceived("blah");
                producerTemplate.sendBody("blah");
                end.assertIsSatisfied();
        }

}

It looks like the direct:end bit is never mocked so the assertion fails. It’s 
like @MockEndpoints is completely ignored. 

There are workarounds described here 
http://camel.465427.n5.nabble.com/spring-boot-test-mocks-td5773902.html

There are disadvantages to these workarounds as listed in that thread. Thanks



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to