|
Hi
I was reading how camel supports unit testing of an existing RouteBuilder class. I think this is very useful as I don't want to have to duplicate the route in the unit test. However, suppose the route defined in the existing RouteBuilder class contains an endpoint that I need to mock. Is there anyway after loading the route in the unit test class that I can replace the endpoint that needs to be mocked? Thanks |
|
Hi
Yeah I suggest to read these couple of links http://camel.apache.org/advicewith.html http://camel.apache.org/mock For example the advice with allows you to manipulate the routes before unit testing. And mock allows to mock endpoints by pattern, and whether to skip sending to the target endpoint or not. On Sun, Jul 1, 2012 at 9:21 AM, gilboy <[hidden email]> wrote: > Hi > > I was reading how camel supports unit testing of an existing RouteBuilder > class. > > I think this is very useful as I don't want to have to duplicate the route > in the unit test. > > However, suppose the route defined in the existing RouteBuilder class > contains an endpoint that I need to mock. Is there anyway after loading the > route in the unit test class that I can replace the endpoint that needs to > be mocked? > > Thanks > > -- > View this message in context: http://camel.465427.n5.nabble.com/Unit-testing-of-an-existing-RouteBuilder-class-tp5715327.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen ----------------- FuseSource Email: [hidden email] Web: http://fusesource.com Twitter: davsclaus, fusenews Blog: http://davsclaus.com Author of Camel in Action: http://www.manning.com/ibsen |
|
Or you use a properties placeholder and provide different endpoint URI's
for your test environment. Best, Christian On Sun, Jul 1, 2012 at 9:36 AM, Claus Ibsen <[hidden email]> wrote: > Hi > > Yeah I suggest to read these couple of links > http://camel.apache.org/advicewith.html > http://camel.apache.org/mock > > For example the advice with allows you to manipulate the routes before > unit testing. > And mock allows to mock endpoints by pattern, and whether to skip > sending to the target endpoint or not. > > > > On Sun, Jul 1, 2012 at 9:21 AM, gilboy <[hidden email]> wrote: > > Hi > > > > I was reading how camel supports unit testing of an existing RouteBuilder > > class. > > > > I think this is very useful as I don't want to have to duplicate the > route > > in the unit test. > > > > However, suppose the route defined in the existing RouteBuilder class > > contains an endpoint that I need to mock. Is there anyway after loading > the > > route in the unit test class that I can replace the endpoint that needs > to > > be mocked? > > > > Thanks > > > > -- > > View this message in context: > http://camel.465427.n5.nabble.com/Unit-testing-of-an-existing-RouteBuilder-class-tp5715327.html > > Sent from the Camel - Users mailing list archive at Nabble.com. > > > > -- > Claus Ibsen > ----------------- > FuseSource > Email: [hidden email] > Web: http://fusesource.com > Twitter: davsclaus, fusenews > Blog: http://davsclaus.com > Author of Camel in Action: http://www.manning.com/ibsen > |
| Powered by Nabble | Edit this page |
