[
https://issues.apache.org/jira/browse/CAMEL-3578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12985580#action_12985580
]
Claus Ibsen commented on CAMEL-3578:
------------------------------------
The Spring XML version supports using include, so you can leave the original
XML file untouched
For example if that file is named {{camel-route.xml}}, you can add a 2nd file,
eg {{camel-test.xml}} as shown below:
{code:xml}
<import resource="camel-route.xml"/>
<!-- bean which enables mocking all endpoints -->
<bean id="mockAllEndpoints"
class="org.apache.camel.impl.InterceptSendToMockEndpointStrategy"/>
{code}
Then boot-up the {{camel-test.xml}} file as a plain spring app for testing.
> MockEndpoint - Add feature to mock any endpoint
> -----------------------------------------------
>
> Key: CAMEL-3578
> URL: https://issues.apache.org/jira/browse/CAMEL-3578
> Project: Camel
> Issue Type: New Feature
> Components: camel-core
> Affects Versions: 2.5.0
> Reporter: Claus Ibsen
> Assignee: Claus Ibsen
> Fix For: 2.7.0
>
>
> See nabble
> http://camel.465427.n5.nabble.com/Unit-Testing-Route-td3284803.html
> The idea is to be able to mock any endpoint on a route and thus be able to
> set expectations.
> In the 2.x architecture we will have to implement this using the adviceWith
> as the route must be {{re-processed}} so we can add the interceptor logic to
> mock
> any endpoints.
> In Camel 3.x this could be applied dynamically on the Channel.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.