开发者

Testing software: fake vs stub

开发者 https://www.devze.com 2023-03-22 18:54 出处:网络
There are quite a few written about stub vs mocks, but I can\'t see the real difference between fake and stub. Can anyone put some light on 开发者_C百科it?I assume you are referring to the terminology

There are quite a few written about stub vs mocks, but I can't see the real difference between fake and stub. Can anyone put some light on 开发者_C百科it?


I assume you are referring to the terminology as introduced by Meszaros. Martin Fowler does also mentions them regularly. I think he explains the difference pretty well in that article.

Nevertheless, I'll try again in my own words :)

A Fake is closer to a real-world implementation than a stub. Stubs contain basically hard-coded responses to an expected request; they are commonly used in unit tests, but they are incapable of handling input other than what was pre-programmed.

Fakes have a more real implementation, like some kind of state that may be kept for example. They can be useful for system tests as well as for unit testing purposes, but they aren't intended for production use because of some limitation or quality requirement.


A fake has the same behavior as the thing that it replaces.

A stub has a "fixed" set of "canned" responses that are specific to your test(s).

A mock has a set of expectations about calls that are made. If these expectations are not met, the test fails.

All of these are similar in that they replace production collaborators that code under test uses.


To paraphrase Roy Osherove in his book The Art of Unit Testing (second edition):

A Fake is any object made to imitate another object. Fakes can be used either as stubs or mocks.

A Stub is a fake that is provided to the class you are testing to satisfy its requirements, but is otherwise ignored in the unit test.

A Mock is a fake that is provided to the class you are testing, and will be inspected as part of the unit test to verify functionality.

For example, the MyClass class you are testing may utilize both a local logger and a third-party web service as part of its operation. You would create a FakeLogger and a FakeWebService, but how they are used determines whether they are stubs or mocks.

The FakeLogger might be used as a stub: it is provided to MyClass and pretends to be a logger, but actually ignores all input and is otherwise just there to get MyClass to operate normally. You don't actually check FakeLogger in your unit tests, and as far as you're concerned it's there to make the compiler shut up.

The FakeWebService might be used as a mock: you provide it to MyClass, and in one of your units tests you call MyClass.Foo() which is supposed to call the third party web service. To verify that this happened, you now check your FakeWebService to see if it recorded the call that it was supposed to receive.

Note that either of these could be reversed and depend on what it is you're testing in a particular unit test. If your unit test is testing the content of what is being logged then you could make a FakeLogger that dutifully records everything it's told so you can interrogate it during the unit test; this is now a mock. In the same test you might not care about when the third-party web service is called; your FakeWebService is now a stub. How you fill in the functions of your fake thus depends on whether it needs to be used as a stub or a mock or both.

In summary (direct quote from the book):

A fake is a generic term that can be used to describe either a stub or a mock object because they both look like the real object. . . . The basic difference is that stubs can't fail tests. Mocks can.

All the rest is implementation details.


These might help

  • http://xunitpatterns.com/Mocks,%20Fakes,%20Stubs%20and%20Dummies.html
  • http://hamletdarcy.blogspot.com/2007/10/mocks-and-stubs-arent-spies.html
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号