vote up 1 vote down star

I have a file - in a large legacy codebase - containing methods that access databases. No classes are used, just a header file with the method declarations, and the source file with the implementation.

I want to override these methods to eliminate the DB access during unit testing.

I thought of the following options:

  1. Make file into class and override methods.
    The main minus here is that it results in alot of changes throughout the codebase.
    Not ideal, though it does improve the code...
  2. Wrap the whole source file with an #ifdef PRODUCTION_CODE and create a new source file containing the stub and wrap it with the opposite, i.e. make the whole thing compilation dependent. Problem here is that in a build system that performs regression tests I would have to compile twice, once in order to create the apps and do regression tests, and an additional time to create the unit test executables.

Any recommended ways of doing this?

flag

17% accept rate
Actually #2 does not require two compilations as the unittests are a separate module. – lk Oct 27 at 18:14

3 Answers

vote up 0 vote down

You may also want to look at Michael Feathers' book Working Effectively with Legacy Code. Not only does he discuss exactly these types of problems, but the book includes numerous examples in C++ (in addition to Java, C, and C#). Feathers is also the original creator of CppUnit.

link|flag
vote up 1 vote down

You can try to override at the linker level. Have two different .cpp files that implement the functions in the header that describes the DB interface - one calling the real DB, one calling a fake interface. When you link for unit test, replace one with the other (Target Specific Variables in GNU make may help).

link|flag
vote up 1 vote down

How about taking the existing functions, move the code inside into a new class and call the new methods from the existing functions and then override this class during tests?

Like so:

 static DBAccessClass dac = new DBAccessClass ();

 void origFunction() { dac.origFunction(); }

And in the test:

 dac = new DBAccessMockup();
link|flag
Yes, more or less 'pimpl', a reasonable option too. – lk Oct 27 at 18:17
The biggest advantage of this is that you need only change one piece of code and you can even write tests for the DB methods. – Aaron Digulla Oct 27 at 18:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.