i have a class that after it does some stuff, sends a JMS message. i'd like to unit test the "stuff", but not necessarily the sending of the message. when i run my test, the "stuff" green bars, but then fails when sending the message (it should, the app server is not running). what is the best way to do this, is it to mock the message queue, if so, how is that done i am using Spring, and "jmsTemplate" is injected, along with "queue". thanks
feedback
|
|
The simplest answer I would use is to stub out the message sending functionality. For example, if you have this:
Then I would write a test that obscures the sendMessage behavior. For example:
If the amount of code that is stubbed out or obscured is substantial, I would not use an anonymous inner class but just a "normal" inner class. | |||
|
feedback
|
|
You can inject a mocked jmsTemplate. Assuming easymock, something like
That would do the trick. | |||
|
feedback
|
|
i love the inner class idea, wich i would have thought of that! for future reference, in case i need to use easymock, once i have the mockTemplate, which i assume is in the test case, do i call the setJmsTemplate() myself, using the mockTemplate, is that how it gets injected(manually)? thanks | |||
|
feedback
|
|
Another option is MockRunner which provides mock environments for JDBC, JMS, JSP, JCA and EJB. This allows you to define the queues/topics just like you would in the "real" case and simply send the message. | |||
|
feedback
|
|
Regarding how to organise all those test stubbing / mocks in a larger application... We build and maintain a larger Enterprise App, which is configured with Spring. The real App runs as EAR on a JBoss Appserver. We defined our Spring context(s) with a beanRefFactory.xml
For running the unit tests, we just use a different beanRefFactory.xml, which exchanges the BasicServices to use a test version. Within that test version, we can define beans with the same names as in the production version, but with a mock/stub or whatever implementation (e.g. database uses a local Apache DPCP pooled datasource, while the production version uses the data source from the Appserver). | |||
|
feedback
|
|
This is the perfect candidate to use jMock unit testing since your server is not running but you would use jMock to simulate interaction with the server. | |||
|
feedback
|