I have a class which calls getaddrinfo for DNS look ups. During testing I want to simulate various error conditions involving this system call. What's the recommended method for mocking system calls like this? I'm using Boost.Test for my unit testing.
|
feedback
|
|
In this case you don't need to mock Option 1: Subclass to TestSince you already have your object in a class, you can subclass to test. For example, assume the following is your actual class:
Then, for testing, you would subclass like this:
You can now use the NOTE: This is quite similar to Patrick's answer but doesn't (hopefully) involve changing the production code if you aren't already setup for dependency injection. Option 2: Use a link seamIn C++, you also have link-time seams which Michael Feathers describes in Working Effectively with Legacy Code. The basic idea is to leverage the linker and your build system. When compiling the unit tests, link in your own version of test.cpp:
lib.cpp:
And then for testing:
| |||||||
feedback
|
|
Look up patterns for "Dependency Injection". Dependency Injection works like this: instead of calling getaddrinfo directly in your code, the code uses an interface that has a virtual method "getaddrinfo". In real-life code, the caller passes an implementation of the interface that maps the virtual method "getaddrinfo" of the interface to the real ::getaddrinfo function. In unit tests, the caller passes an implementation that can simulate failures, test error conditions, ... to be short: mock anything you want to mock. EDIT: Read "Working effectively with legacy code" of Michael Feathers for more tips. | |||||||||||
feedback
|
|
3 Options 1. Use the gnu linker's mocking abilities, the
2. Define your own getaddrinfo and link it statically to your test application. This will only work if libc is linked dynamically which is true 99% of the time. This method also has the disadvantage of permanently disabling the real getaddrinfo in your unit test application, but is incredibly simple to implement.
3. Define your own intermediary function with the same name. Then you can still call the original if you want. This is much easier with some macros to help with the repetition. Also you will have to use gnu extensions if you wan to mock variadic functions (
| ||||
feedback
|
|
Although technically possible I don't think it would be feasible to. You'd have to be able to replace the implementation of that function and you probably can't and still link to the standard library on your system. What you should do is call an intermediary. Then you can mock the intermediary during test and just forward to the actual function in production. You might even consider creating a class that interacts with this function and others like it and provides a more generic interface to your program. This class wouldn't actually do anything but forward calls most the time but during test it could be effectively mocked and you can test whatever uses it. The thing is to keep stuff like this, things that can't be tested, wrapped in something so trivial it doesn't really need testing and then mock that wrapper to test the more complex interactions. KISS is especially important here. | |||
|
feedback
|