I have a basic understanding of mock and fake objects, but I'm not sure I have a feeling about when/where to use mocking - especially as it would apply to this scenario here.
|
6
|
|
|
|
|
|
A unit test should test a single codepath through a single method. When the execution of a method passes outside of that method, into another object, and back again, you have a dependency. When you test that code path with the actual dependency, you are not unit testing; you are integration testing. While that's good and necessary, it isn't unit testing. If your dependency is buggy, your test may be effected in such a way to return a false positive. For instance, you may pass the dependency an unexpected null, and the dependency may not throw on null as it is documented to do. Your test does not enounter a null argument exception as it should have, and the test passes. Also, you may find its hard, if not impossible, to reliably get the dependent object to return exactly what you want during a test. That also includes throwing expected exceptions within tests. A mock replaces that dependency. You set expectations on calls to the dependent object, set the exact return values it should give you to perform the test you want, and/or what exceptions to throw so that you can test your exception handling code. In this way you can test the unit in question easily. TL;DR: Mock every dependency your unit test touches. |
||
|
|
|
|
Mock objects are useful when you want to test interactions between a class under test and a particular interface. For example, we want to test that method With mock objects, instead of passing a real This sounds good in theory, but there are also some downsides. Mock shortcomingsIf you have a mock framework in place, you are tempted to use mock object every time you need to pass an interface to the class under the test. This way you end up testing interactions even when it is not necessary. Unfortunately, unwanted (accidental) testing of interactions is bad, because then you're testing that a particular requirement is implemented in a particular way, instead of that the implementation produced the required result. Here's an example in pseudocode. Let's suppose we've created a MySorter class and we want to test it:
(In this example we assume that it's not a particular sorting algorithm, such as quick sort, that we want to test; in that case, the latter test would actually be valid.) In such an extreme example it's obvious why the latter example is wrong. When we change the implementation of MySorter, the first test does a great job of making sure we still sort correctly, which is the whole point of tests - they allow us to change the code safely. On the other hand, the latter test always breaks and it is actively harmful; it hinders refactoring. Mocks as stubsMock frameworks often allow also less strict usage, where we don't have to specify exactly how many times methods should be called and what parameters are expected; they allow creating mock objects that are used as stubs. Let's suppose we have a method
In this example, we don't really care about the PdfFormatter object so we just train it to quietly accept any call and return some sensible canned return values for all methods that But what happens later, when we change Also, the readability of test suffered terribly, there's lots of code there that we didn't write because of we wanted to, but because we had to; it's not us who want that code there. Tests that use mock objects look very complex and are often difficult to read. The tests should help the reader understand, how the class under the test should be used, thus they should be simple and straightforward. If they are not readable, nobody is going to maintain them; in fact, it's easier to delete them than to maintain them. How to fix that? Easily:
All in all, mock objects have their use, but when not used carefully, they often encourage bad practices, testing implementation details, hinder refactoring and produce difficult to read and difficult to maintain tests. For some more details on shortcomings of mocks see also Mock Objects: Shortcomings and Use Cases. |
|||
|
|
|
|
Whenever a coworker does something particularly idiotic. |
||
|
|
|
|
Rule of thumb: If the function you are testing needs a complicated object as a parameter, and it would be a pain in the ass to build said complicated object, use a mock. |
||
|
|
|
|
Look for the article(pdf) by the Prgmatic Programmers for a good discussion of when to mock. cheers, Rob |
||
|
|
|
|
You should mock an object when you have a dependancy in a unit of code you are trying to test that needs to be "just so". For example, when you are trying to test some logic in your unit of code but you need to get something from another object and what is returned from this dependancy might affect what you are trying to test - mock that object. A great podcast on the topic can be found here |
|||
|
|
|
|
There's a good argument here - http://blog.typemock.com/2008/10/fake-everything-you-don-care-about.html for mocking everything you don't care about in your test |
||
|
|
