First, my position on SharePoint Test Driven Development: I don’t currently use it. I got a free Isolator license (thanks!) that I have yet to install (sorry!). Just like everyone else, I’m trying to figure out where TDD fits in the context of SharePoint. Any assertions in this post about TDD are based on my current understanding, which is incomplete at best.
This post is in response to a post by Eric Shupps: SPTDD: SharePoint and Test Driven Development, Part One. He has a lot to say, so let’s start with this assertion:
…in order to get real value from TDD in SharePoint you must already know how to write good code. All the unit tests in the world won’t change this fact. And the only way to learn how to write good code is to do it over and over again, gathering knowledge along the way from those who have gone before you. This leads the the fundamental problem with TDD as a methodology – it doesn’t teach developers how to write good code; rather, it teaches them how to write testable code.
I agree with the differentiation between good and testable code, but I think Eric underestimates the value of testable code in relation to its goodness. For reference, let’s bring in how his example code “should be written”:
private SPListItemCollection GetListItems(string Url, string ListName) { SPListItemCollection coll = null; try { if (Url != String.Empty && ListName != String.Empty) { SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new SPSite(Url)) { using (SPWeb web = site.OpenWeb()) { try { SPList list = web.Lists[ListName]; if (list.Items.Count > 0) { coll = list.Items; } } catch (System.Exception ex) { LogError(ex.Message); } } } }); } } catch (System.Exception ex) { LogError(ex.Message); } return coll; }
I know “good code” is subjective, but this method has some real problems:
SP*
objects should not be passed out of a RWEP block.SP*
objects should not be used after their parentSPWeb
has been disposed.- Each call to
list.Items
will execute a new query. Instead, store it to a variable or uselist.ItemCount
.
These issues have nothing to do with testability. They’re simply not good SharePoint code. But TDD wouldn’t fix them, so for the purpose of argument let’s use this code instead (essentially Eric’s original plus error handling):
private SPListItemCollection GetListItems(string Url, string ListName) { SPListItemCollection coll = null; try { if (Url != String.Empty && ListName != String.Empty) { SPSite site = new SPSite(Url); SPWeb web = site.OpenWeb(); try { SPList list = web.Lists[ListName]; SPListItemCollection items = list.Items; if (items.Count > 0) { coll = items; } } catch (System.Exception ex) { LogError(ex.Message); } } } catch (System.Exception ex) { LogError(ex.Message); } return coll; }
So supposing we used TDD, a method like this would have been created based on tests written to verify the following:
- If
Url
orListName
are empty, returnnull
. - If
Url
orListName
arenull
, use them anyway and log the resulting exception. - Create
SPSite
andSPWeb
that the caller needs to remember to dispose. - If the list has no items, return
null
, otherwise return all items. - If anything goes wrong, log the exception and return
null
.
I would guess this isn’t exactly what Eric intended the method to do (at least regarding null
arguments), but the hypothetical tests drove the TDD implementation; a different set of tests would have led to a more correct version of the method. Herein lies the problem with critiquing TDD based on code developed without tests—TDD would likely yield a different implementation!
Abstraction and Dependency Injection = Artifacts?
I also take issue with this passage:
Look closely – the code itself satisfies all the test requirements without requiring any level of abstraction, dependency injection, nUnit, or other such artifices.
[Irony: artifice – n. Cleverness or skill; ingenuity.]
Regarding satisfaction of the requirements, the obvious question is: How do you know? Without a test, you don’t, and to think you do just because you “already know how to write good code” is more naive than thinking unit-tested SharePoint code is bulletproof. Case in point: null
arguments. But more importantly, when did abstraction and dependency injection become TDD things? These are basic programming principles, completely independent from TDD or SharePoint! Just because we’re developing against a specific (and complicated) API doesn’t mean the general best practices don’t apply. We should be .NET developers first, SharePoint developers second. Even without using TDD, I submit that your particular code could benefit quite a bit from dependency injection:
private SPListItemCollection GetListItems(SPWeb web, string listName, SPQuery query) { if (web == null || string.IsNullOrEmpty(listName)) return null; SPListItemCollection coll = null; try { SPList list = web.Lists[listName]; SPListItemCollection items = query == null ? list.Items : list.GetItems(query); if (items.Count > 0) { coll = items; } } catch (Exception ex) { LogError(ex.Message); } return coll; }
Instead of creating an SPWeb
that needs to be disposed by the caller, we just accept one that the caller should already be handling. Instead of always using list.Items
(not recommended), we accept an optional SPQuery
. The method has a clear purpose, doesn’t have the new SPSite
to handle, works just as well with an elevated SPWeb
, etc. It’s simply a better design, with improved testability being more of a side benefit than the main goal. I can’t say for sure, but I would guess a TDDed version (given the right requirements) would be similar.
On Mocking
Again, I haven’t found time to try out Isolator so I can’t really speak to the actual practice of testing mocked objects; however, it seems to me that it would be useful to verify that, given certain assumptions about a SharePoint environment, tests pass. If I can copy/paste a few lines of code to fake an SPWeb, with or without a named list, with or without list items, this seems like it would be much easier than actually creating and deleting lists and items to verify that my code behaves accordingly. Then as long as I’m in an environment that matches an assumption I tested, I’m assured the code will work as expected. Isolator seems to enable this sort of test with relative ease, at which point the general arguments for (and against) testing and TDD can be applied to SharePoint without much translation.
All that said, thanks to Eric for posting his thoughts to spark a more public discussion. Also, check out Andrew Woodward‘s first rebuttal and other posts on SharePoint and TDD (particularly Unit Testing SharePoint Solutions – Getting into the SharePoint Object Model).