Is conditional compilation a valid mock/stub strategy for unit testing? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:09:57Zhttp://stackoverflow.com/feeds/question/97114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing1Is conditional compilation a valid mock/stub strategy for unit testing?Aaron2008-09-18T21:21:55Z2008-09-19T14:48:57Z
<p>In a recent question on stubbing, many answers suggested C# interfaces or delegates for implementing stubs, but <a href="http://stackoverflow.com/questions/43711/whats-a-good-way-to-overwrite-datetimenow-during-testing#43718">one answer</a> suggested using conditional compilation, retaining static binding in the production code. This answer was modded -2 at the time of reading, so at least 2 people really thought this was a <em>wrong</em> answer. Perhaps misuse of DEBUG was the reason, or perhaps use of fixed value instead of more extensive validation. But I can't help wondering:</p>
<p>Is the use of conditional compilation an inappropriate technique for implementing unit test stubs? Sometimes? Always?</p>
<p>Thanks.</p>
<p><strong>Edit-add:</strong> I'd like to add an example as a though experiment:</p>
<pre><code>class Foo {
public Foo() { .. }
private DateTime Now {
get {
#if UNITTEST_Foo
return Stub_DateTime.Now;
#else
return DateTime.Now;
#endif
}
}
// .. rest of Foo members
}
</code></pre>
<p>comparing to</p>
<pre><code>interface IDateTimeStrategy {
DateTime Now { get; }
}
class ProductionDateTimeStrategy : IDateTimeStrategy {
public DateTime Now { get { return DateTime.Now; } }
}
class Foo {
public Foo() : Foo(new ProductionDateTimeStrategy()) {}
public Foo(IDateTimeStrategy s) { datetimeStrategy = s; .. }
private IDateTime_Strategy datetimeStrategy;
private DateTime Now { get { return datetimeStrategy.Now; } }
}
</code></pre>
<p>Which allows the outgoing dependency on "DateTime.Now" to be stubbed through a C# interface. However, we've now added a dynamic dispatch call where static would suffice, the object is larger even in the production version, and we've added a new failure path for Foo's constructor (allocation can fail). </p>
<p>Am I worrying about nothing here? Thanks for the feedback so far!</p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/97174#971742Answer by markd for Is conditional compilation a valid mock/stub strategy for unit testing?markd2008-09-18T21:27:15Z2008-09-18T21:27:15Z<p>I think it lessens the clarity for people reviewing the code. You shouldn't have to remember that there's a conditional tag around specific code to understand the context.</p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/97227#972271Answer by aaronjensen for Is conditional compilation a valid mock/stub strategy for unit testing?aaronjensen2008-09-18T21:34:16Z2008-09-18T21:34:16Z<p>No this is terrible. It leaks test into your production code (even if its conditioned off)</p>
<p>Bad bad.</p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/97245#972450Answer by Bradley Harris for Is conditional compilation a valid mock/stub strategy for unit testing?Bradley Harris2008-09-18T21:36:12Z2008-09-18T21:36:12Z<p>It might be useful as a tool to lean on as you refactor to testability in a large code base. I can see how you might use such techniques to enable smaller changes and avoid a "big bang" refactoring. However I would worry about leaning too hard on such a technique and would try to ensure that such tricks didn't live too long in the code base otherwise you risk making the application code very complex and hard to follow. </p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/97248#972481Answer by David B for Is conditional compilation a valid mock/stub strategy for unit testing?David B2008-09-18T21:36:26Z2008-09-18T21:36:26Z<p>Test code should be obvious and not inter-mixed in the same blocks as the tested code.</p>
<p>This is pretty much the same reason you shouldn't write</p>
<pre><code>if (globals.isTest)
</code></pre>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/97318#973182Answer by Gishu for Is conditional compilation a valid mock/stub strategy for unit testing?Gishu2008-09-18T21:44:19Z2008-09-18T21:44:19Z<p>Try to keep production code separate from test code. Maintain different folder hierarchies.. different solutions/projects. </p>
<p><strong>Unless</strong>.. you're in the world of legacy C++ Code. Here anything goes.. if conditional blocks help you get some of the code testable and you see a benefit.. By all means do it. But try to not let it get messier than the initial state. Clearly comment and demarcate conditional blocks. Proceed with caution. It is a valid technique for getting legacy code under a test harness.</p>
http://stackoverflow.com/questions/97114/is-conditional-compilation-a-valid-mock-stub-strategy-for-unit-testing/102440#1024401Answer by aaronjensen for Is conditional compilation a valid mock/stub strategy for unit testing?aaronjensen2008-09-19T14:48:57Z2008-09-19T14:48:57Z<p>I thought of another reason this was terrible:</p>
<p>Many times you mock/stub something, you want its methods to return different results depending on what you're testing. This either precludes that or makes it awkward as all heck.</p>