show/hide this revision's text 4 minor grammar fixes

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 sendInvitations(MailServer mailServer) calls MailServer.createMessage() exactly once, and also calls MailServer.sendMessage(m) exactly once, and no other methods are called on the MailServer interface. This is when we can use mock objects.

With mock objects, instead of passing a real MailServerImpl, or a test TestMailServer, we can pass a mock implementation of the MailServer interface. Before we pass a mock MailServer, we "train" it, so that it knows what method calls to expect and what return values to return. At the end, the mock object asserts, that all expected methods were called as expected.

This sounds good in theory, but there are also some downsides.

Mock shortcomings

If you have a mock framework in place, you are tempted to use mock object every time you need to pass an object implementing a particular interface to the class under the test. This way you end up testing interactions even when this 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:

// the correct way of testing
testSort() {
    testList = [1, 7, 3, 8, 2] 
    MySorter.sort(testList)

    assert testList equals [1, 2, 3, 7, 8]
}


// incorrect, testing implementation
testSort() {
    testList = [1, 7, 3, 8, 2] 
    MySorter.sort(testList)

    assert that compare(1, 2) was called once 
    assert that compare(1, 3) was not called 
    assert that compare(2, 3) was called once 
    ....
}

(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 stubs

Mock 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 sendInvitations(PdfFormatter pdfFormatter, MailServer mailServer) that we want to test. The PdfFormatter object can be used to create the invitation. Here's the test:

testInvitations() {
   // train as stub
   pdfFormatter = create mock of PdfFormatter
   let pdfFormatter.getCanvasWidth() returns 100
   let pdfFormatter.getCanvasHeight() returns 300
   let pdfFormatter.addText(x, y, text) returns true 
   let pdfFormatter.drawLine(line) does nothing

   // train as mock
   mailServer = create mock of MailServer
   expect mailServer.sendMail() called exactly once

   // do the test
   sendInvitations(pdfFormatter, mailServer)

   assert that all pdfFormatter expectations are met
   assert that all mailServer expectations are met
}

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 sendInvitation() happens to call at this point. How did we come up with exactly this list of methods to train? We simply ran the test and kept adding the methods until the test passed. Notice, that we trained the stub to respond to a method without having a clue why it needs to call it, we simply added everything that the test complained about. We are happy, the test passes.

But what happens later, when we change sendInvitations(), or some other class that sendInvitations() uses, to create more fancy pdfs? Our test suddenly fails because now more methods of PdfFormatter are called and we didn't train our stub to expect them. And usually it's not only one test that fails in situations like this, it's any test that happens to use, directly or indirectly, the sendInvitations() method. We have to fix all those tests by adding more trainings. Also notice, that we can't remove methods no longer needed, because we don't know which of them are not needed. Again, it hinders refactoring.

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:

  • Try using real classes instead of mocks whenever possible. Use the real PdfFormatterImpl. If it's not possible, change the real classes to make it possible. Not being able to use a class in tests usually points to some problems with the class. Fixing the problems is a win-win situation - you fixed the class and you have a simpler test. On the other hand, not fixing it and using mocks is a no-win situation - you didn't fix the real class and you have more complex, less readable tests that hinder further refactorings.
  • Try creating a simple test implementation of the interface instead of mocking it in each test, and use this test class in all your tests. Create TestPdfFormatter that does nothing. That way you can change it once for all tests and your tests are not cluttered with lengthy setups where you train your stubs.

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.

show/hide this revision's text 3 added 4696 characters in body

Mock objects are useful when we need you want to test interactions between a class or under test and a method that depends on another object, that is very difficult to createparticular interface.

For example, a method we want to test accepts a MailServer object as a parameter that method sendInvitations(MailServer mailServer) calls MailServer.createMessage() exactly once, and also calls MailServer.sendMessage(m) exactly once, and no other methods are called on the MailServer interface. This is when we need to passcan use mock objects. Instead

With mock objects, instead of passing a real MailServerImpl, or a test TestMailServer, we can pass a mock implementation of the MailServer MailServer interface. Before we pass a mock MailServer, we "train" it, so that it knows what method calls to expect and what return values to return. At the end, the mock object asserts, that all expected methods were called as expected.

Unit

Mock shortcomings

If you have a mock framework in place, you are tempted to use mock object every time you need to pass an object implementing a particular interface to the class under the test. This way you end up testing interactions even when this not necessary. Unfortunately, unwanted (accidental) testing of interactions is bad, because then you're testing that a particular requirement is implemented in general promotes some very good practicesa particular way, instead of that the implementation produced the required result.If

Here's an example in pseudocode. Let's suppose we've created a MySorter class is difficult and we want to test , there's probably something wrong with it:

// the class. It may have too many responsibilitiescorrect way of testingtestSort() {    testList = [1, 7, the responsibility may not be clear at all3, it may 8, 2]     MySorter.sort(testList)    assert testList equals [1, 2, 3, 7, 8]// incorrect, testing implementationtestSort() {    testList = [1, 7, 3, 8, 2]     MySorter.sort(testList)    assert that compare(1, 2) was called once     assert that compare(1, 3) was not have clearly defined public interfacecalled     assert that compare(2, it may depend on too many other classes3) was called once 

Creating ...

(In this example we assume that it's not a unit particular sorting algorithm, such as quick sort, that we want to testfor ; 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 class forces great job of making sure we still sort correctly, which is the whole point of tests - they allow us to rethink change the designcode safely. On the other hand, change the latter test always breaks and it , simplify is actively harmful; it hinders refactoring.

Mocks as stubs

Mock frameworks often allow also less strict usage, refactor it in order where we don't have to make it testablespecify exactly how many times methods should be called and what parameters are expected; they allow creating mock objects that are used as stubs. And

Let's suppose we have a method sendInvitations(PdfFormatter pdfFormatter, MailServer mailServer) that we want to test. The PdfFormatter object can be used to create the invitation. Here's the test:

testInvitations() {   // train as stub   pdfFormatter = create mock of PdfFormatter   let pdfFormatter.getCanvasWidth() returns 100   let pdfFormatter.getCanvasHeight() returns 300   let pdfFormatter.addText(x, y, text) returns true    let pdfFormatter.drawLine(line) does nothing   // train as mock   mailServer = create mock of MailServer   expect mailServer.sendMail() called exactly once   // do the test   sendInvitations(pdfFormatter, mailServer)   assert that all pdfFormatter expectations are met   assert that all mailServer expectations are met

In this is good because in example, we don't really care about the end PdfFormatter object so we end just train it to quietly accept any call and return some sensible canned return values for all methods that sendInvitation() happens to call at this point. How did we come up with a simple code exactly this list of methods to train? We simply ran the test and simple testskept adding the methods until the test passed.

Mock objectsNotice, on that we trained the other hand, make stub to respond to a method without having a clue why it way too easy needs to call it, we simply added everything that the test complex ugly codecomplained about. We are happy, the test passes.

But not by making it simple what happens later, when we change sendInvitations(), or some other class that sendInvitations() uses, to create more fancy pdfs? Our test suddenly fails because now more methods of PdfFormatter are called and then testing itwe didn't train our stub to expect them. And usually it's not only one test that fails in situations like this, but it's any test that happens to use, directly or indirectly, the sendInvitations() method. We have to fix all those tests by adding a layer more trainings. Also notice, that we can't remove methods no longer needed, because we don't know which of another complexity them are not needed. Again, it hinders refactoring.

Also, the readability of test suffered terribly, there's lots of code there that allows we didn't write because of we wanted to, but because we had to; it's not us testing the who want that code as it isthere. The tests themselves also 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. This can hardly be said about tests 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 thatleverage mock objects? Easily:

  • Try using real classes instead of mocks whenever possible. It makes us happyUse the real PdfFormatterImpl. If it's not possible, we think we have thoroughly tested change the real classes to make it possible. Not being able to use a class in tests usually points to some problems with the class, but instead we . Fixing the problems is a win-win situation - you fixed the class and you have complex code a simpler test. On the other hand, not fixing it and also using mocks is a no-win situation - you didn't fix the real class and you have more complex, less readable tests that hinder further refactorings.

    Mock objects can be

  • Try creating a great help when dealing with legacy codesimple test implementation of the interface instead of mocking it in each test, but I would and use them only as a last resort, only after this test class in all other possibilities failedyour tests. Making the classes simpler often makes the need for mock objects go awayCreate TestPdfFormatter that does nothing. Mock objects help That way you to get away with complex can change it once for all tests and over-engineered designsyour tests are not cluttered with lengthy setups where you train your stubs.

    If the question is "when should I use mock objects?"

  • All in all, then the answer would be: don't mock objects have their usethem at all. When you'll need them, you'll know itbut when not used carefully, they often encourage bad practices, testing implementation details, hinder refactoring and produce difficult to read and difficult to maintain tests.

    show/hide this revision's text 2 fixed grammar

    Mock objects are useful when we need to test a class or a method that depends on another object, that is very difficult to create. For example, a method we want to test accepts a MailServer object as a parameter that we need to pass. Instead of passing a real MailServerImpl, we can pass a mock implementation of the MailServer interface.

    This sounds good in theory, but there are also some downsides.

    Unit test testing in general promote promotes some very good practices. If a class is difficult to test, there's probably something wrong with the class. It may have too many responsibilities, the responsibility may not be clear at all, it may not have clearly defined public interface, it may depend on too many other classes.

    Creating a unit test for such a class forces us to rethink the design, change it, simplify it, refactor it in order to make it testable. And this is good because in the end we end up with a simple code and simple tests.

    Mock objects, on the other hand, make it way too easy to test complex ugly code. But not by making it simple and then testing it, but by adding a layer of another complexity that allows us testing the code as it is. The tests themselves also 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. This can hardly be said about tests that leverage mock objects. It makes us happy, we think we have thoroughly tested the class, but instead we have complex code and also complex tests.

    Mock objects can be a great help when dealing with legacy code, but I would use them only as a last resort, only after all other possibilities failed. Making the classes simpler often makes the need for mock objects go away. Mock objects help you to get away with complex and over-engineered designs.

    If the question is "when should I use mock objects?", then the answer would be: don't use them at all. When you'll need them, you'll know it.

    For some more details on shortcomings of mocks see also Mock Objects: Shortcomings and Use Cases.

    show/hide this revision's text 1