Quantcast

Unit testing of an existing RouteBuilder class

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Unit testing of an existing RouteBuilder class

gilboy
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
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Unit testing of an existing RouteBuilder class

Claus Ibsen-2
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
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Unit testing of an existing RouteBuilder class

Christian Mueller
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
>
Loading...