I'd like to test an abstract class. Sure, I can manually write a mock that inherits from the class.
Can I do this using a mocking framework (I'm using Mockito) instead of hand-crafting my mock? How?
|
I'd like to test an abstract class. Sure, I can manually write a mock that inherits from the class. Can I do this using a mocking framework (I'm using Mockito) instead of hand-crafting my mock? How? |
|||||||||
|
|
The following suggestion let's you test abstract classes without creating a "real" subclass - the Mock is the subclass. use Example:
Note: The beaty of this solution is that you do not have to implement the abstract methods, as long as they are never invoked. IMHO, this is neater than using a spy, since a spy requires an instance, which means you have to create an instantiable subclass of your abstract class. |
|||||||||||||||
|
|
If you just need to test some of the concrete methods without touching any of the abstracts, you can use (Yes, it's a lousy design, but some frameworks, e.g. Tapestry 4, kind of force it on you.) The workaround is to reverse this approach -- use the ordinary mock behavior (i.e., everything's mocked/stubbed) and use
Updated to add: For non-void methods, you'll need to use
Otherwise Mockito will complain "Unfinished stubbing detected." |
|||||||
|
|
You can achieve this by using a spy (use the latest version of Mockito 1.8+ though).
|
|||||
|
|
Mocking frameworks are designed to make it easier to mock out dependencies of the class you are testing. When you use a mocking framework to mock a class, most frameworks dynamically create a subclass, and replace the method implementation with code for detecting when a method is called and returning a fake value. When testing an abstract class, you want to execute the non-abstract methods of the Subject Under Test (SUT), so a mocking framework isn't what you want. Part of the confusion is that the answer to the question you linked to said to hand-craft a mock that extends from your abstract class. I wouldn't call such a class a mock. A mock is a class that is used as a replacement for a dependency, is programmed with expectations, and can be queried to see if those expectations are met. Instead, I would provide an non-abstract of your abstract class in your test. If that results in too much code, than that may be a sign that your class is difficult to extend. An alternative solution would be to make your test case itself abstract, with an abstract method for creating the SUT (in other words, the test case would use the Template Method design pattern). |
|||
|
|
|
Try using a custom answer. For example:
It will return the mock for abstract methods and will call the real method for concrete methods. |
|||
|
|
|
What really makes me feel bad about mocking abstract classes is the fact, that neither the default constructor YourAbstractClass() gets called (missing super() in mock) nor seems there to be any way in Mockito to default initialize mock properties (e.g List properties with empty ArrayList or LinkedList). My abstract class (basically the class source code gets generated) does NOT provide a dependency setter injection for list elements, nor a constructor where it initializes the list elements (which I tried to add manually). Only the class attributes use default initialization: private List dep1 = new ArrayList; private List dep2 = new ArrayList So there is NO way to mock an abstract class without using a real object implementation (e.g inner class definition in unit test class, overriding abstract methods) and spying the real object (which does proper field initialization). Too bad that only PowerMock would help here further. |
|||
|
|
|
Assuming your test classes are in the same package (under a different source root) as your classes under test you can simply create the mock:
and call the methods you want to test just as you would any other method. You need to provide expectations for each method that is called with the expectation on any concrete methods calling the super method - not sure how you'd do that with Mockito, but I believe it's possible with EasyMock. All this is doing is creating a concrete instance of As an aside, I often find it useful to implement the abstract class in my test, where it serves as an example implementation that I test via its public interface, although this does depend on the functionality provided by the abstract class. |
|||||||||||||
|