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:
- 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... - 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?
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:
And in the test: